From: Bernhard Reutner-Fischer Date: Thu, 7 Jun 2007 10:48:01 +0000 (-0000) Subject: - hide atmel target if arch is not arm nor avr32 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0eca4b95edc61ca15c50742e75fdc11ef6a54061;p=buildroot.git - hide atmel target if arch is not arm nor avr32 --- diff --git a/target/device/Atmel/Config.in b/target/device/Atmel/Config.in index e1f1dfb4e4..28ab8f08da 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