summaryrefslogtreecommitdiffstats
path: root/target/device/Atmel/Config.in
blob: 1433af4863252a99d82c3bd2c71f847304457933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
menuconfig BR2_TARGET_ATMEL
	bool "Atmel Device Support"
	depends on BR2_arm || BR2_avr32

if BR2_TARGET_ATMEL

source "target/device/Atmel/AT91_Config.in"
source "target/device/Atmel/AVR32_Config.in"

config BR2_BOARD_NAME
	string
	default	"at91rm9200df"		if	BR2_TARGET_AT91RM9200DF
	default	"at91rm9200se"		if	BR2_TARGET_AT91RM9200SE
	default	"at91rm9200ek"		if	BR2_TARGET_AT91RM9200EK
	default	"at91rm9200dk"		if	BR2_TARGET_AT91RM9200DK
	default	"at91sam9260ek"		if	BR2_TARGET_AT91SAM9260EK
	default	"at91sam9260dfc"	if	BR2_TARGET_AT91SAM9260DFC
	default	"at91sam9261ek"		if	BR2_TARGET_AT91SAM9261EK
	default	"at91sam9262ek"		if	BR2_TARGET_AT91SAM9262EK
	default	"at91sam9263ek"		if	BR2_TARGET_AT91SAM9263EK
	default	"at91sam9xeek"		if	BR2_TARGET_AT91SAM9XEEK
	default	"at91sam9g20ek"		if	BR2_TARGET_AT91SAM9G20EK
	default	"at91sam9g20dfc"	if	BR2_TARGET_AT91SAM9G20DFC
	default "at91sam9g45ekes"	if	BR2_TARGET_AT91SAM9G45EKES
	default	"at91sam9m10ek"		if	BR2_TARGET_AT91SAM9M10EK
	default	"at91sam9m10dfc"	if	BR2_TARGET_AT91SAM9M10DFC
	default	"atstk100x"		if	BR2_TARGET_AVR32_ATSTK1002
	default	"atstk1005"		if	BR2_TARGET_AVR32_ATSTK1005
	default	"atngw100"		if	BR2_TARGET_AVR32_ATNGW100
	default "atngw100-base"		if	BR2_TARGET_AVR32_ATNGW100_BASE
	default "atngw100-expanded"	if	BR2_TARGET_AVR32_ATNGW100_EXPANDED

config BR2_TARGET_AT91_ADVANCED_INFO
	bool "Remove work in progress"
	depends on BR2_TARGET_AT91
	default y
	help
	  Atmel AT91 ARM based systems

comment "Package support"
	depends on BR2_TARGET_AT91 || BR2_TARGET_AVR32


menu "Secondary locations"

config BR2_AT91_LINUXPATCH_SITE
	string "AT91 Linux Patch mirror site"
	depends on BR2_TARGET_AT91
	default "http://maxim.org.za/AT91RM9200/2.6"
	help
	    Main download location for AT91 Linux stuff

config BR2_BOARD_PATH
	string "Atmel board repository"
	depends on BR2_TARGET_AT91 || BR2_TARGET_AVR32
	default "target/device/Atmel/$(BR2_BOARD_NAME)"
	help
	  Top directory of Atmel board configurations

endmenu

endif