diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-05-06 21:47:04 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-05-15 15:15:52 -0400 |
commit | 2255176228effc67e868ca343f7354da2b7f4081 (patch) | |
tree | f9f91e9c08c20d731f88d1ca509f2bbeed157e11 /src/Kconfig | |
parent | ccaa25eaa5d10291bff332f88194befe643b729f (diff) | |
download | kutter-2255176228effc67e868ca343f7354da2b7f4081.tar.gz kutter-2255176228effc67e868ca343f7354da2b7f4081.tar.xz kutter-2255176228effc67e868ca343f7354da2b7f4081.zip |
pru: Initial support for the Beaglebone PRU
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 070d4495..2d013c23 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -8,12 +8,15 @@ choice bool "Atmega AVR" config MACH_SAM3X8E bool "SAM3x8e (Arduino Due)" + config MACH_PRU + bool "Beaglebone PRU" config MACH_SIMU bool "Host simulator" endchoice source "src/avr/Kconfig" source "src/sam3x8e/Kconfig" +source "src/pru/Kconfig" source "src/simulator/Kconfig" # The HAVE_GPIO_x options allow boards to disable support for some |