diff options
| author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2008-12-20 22:17:52 +0000 | 
|---|---|---|
| committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2008-12-20 22:17:52 +0000 | 
| commit | 80b526fd3cc1eea9bd5bcd418f26b04536e027a9 (patch) | |
| tree | aed27c1864c9e93f9a3a1e3ce675b054959dd205 | |
| parent | 1942056ae794caae7c55636c2fa8a92604fe1a73 (diff) | |
| download | buildroot-novena-80b526fd3cc1eea9bd5bcd418f26b04536e027a9.tar.gz buildroot-novena-80b526fd3cc1eea9bd5bcd418f26b04536e027a9.zip | |
Hide AT91 features if not an AT91 ARM
| -rw-r--r-- | target/device/Atmel/AT91_Config.in | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/target/device/Atmel/AT91_Config.in b/target/device/Atmel/AT91_Config.in index 1de76ba9a..9d9b8d50e 100644 --- a/target/device/Atmel/AT91_Config.in +++ b/target/device/Atmel/AT91_Config.in @@ -8,30 +8,36 @@ config BR2_TARGET_AT91  	  Atmel AT91 ARM based systems  comment	"Selection criteria" +	depends on BR2_TARGET_AT91  config	BR2_TARGET_ATMEL_ALL  	bool "Allow all ARM targets" -	depends on BR2_arm +	depends on BR2_TARGET_AT91  	default y  config	BR2_TARGET_ATMEL_NET  	bool "With network controller" +	depends on BR2_TARGET_AT91  	depends on !BR2_TARGET_ATMEL_ALL  	default y  config	BR2_TARGET_ATMEL_LCD  	bool "With LCD controller" +	depends on BR2_TARGET_AT91  	depends on !BR2_TARGET_ATMEL_ALL  config	BR2_TARGET_ATMEL_FPDSP  	bool "With Floating Point DSP" +	depends on BR2_TARGET_AT91  	depends on !BR2_TARGET_ATMEL_ALL  config	BR2_TARGET_ATMEL_MPB  	bool "With customizable MP-Block" +	depends on BR2_TARGET_AT91  	depends on !BR2_TARGET_ATMEL_ALL  comment "Device Selection" +	depends on BR2_TARGET_AT91  choice  	prompt "AT91 device" @@ -170,6 +176,7 @@ config BR2_TARGET_AT91SAM9262  endchoice  comment "Development Board Selection" +	depends on BR2_TARGET_AT91  choice  	prompt "Development Board support" | 
