diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-07 10:48:01 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-07 10:48:01 +0000 |
commit | 0eca4b95edc61ca15c50742e75fdc11ef6a54061 (patch) | |
tree | a2f673c2cff37c0cb596bbb69a815394c3f74c64 /target/device | |
parent | 89c4864b06f089b761cd83adc86d0f26e1fd94b6 (diff) | |
download | buildroot-novena-0eca4b95edc61ca15c50742e75fdc11ef6a54061.tar.gz buildroot-novena-0eca4b95edc61ca15c50742e75fdc11ef6a54061.zip |
- hide atmel target if arch is not arm nor avr32
Diffstat (limited to 'target/device')
-rw-r--r-- | target/device/Atmel/Config.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/target/device/Atmel/Config.in b/target/device/Atmel/Config.in index e1f1dfb4e..28ab8f08d 100644 --- a/target/device/Atmel/Config.in +++ b/target/device/Atmel/Config.in @@ -1,5 +1,9 @@ -menu "Atmel Target" +menuconfig BR2_TARGET_ATMEL + bool "Atmel Target" + depends on BR2_arm || BR2_avr32 + default n +if BR2_TARGET_ATMEL comment "Add Atmel Target here" -endmenu +endif |