2011-09-18 22:09:42 +02:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP
|
2012-02-01 23:36:47 +01:00
|
|
|
depends on BR2_arm926t
|
2010-03-14 18:20:45 +01:00
|
|
|
bool "AT91 Bootstrap"
|
2010-06-14 22:33:08 +02:00
|
|
|
help
|
|
|
|
AT91Bootstrap is a first level bootloader for the Atmel AT91
|
|
|
|
devices. It integrates algorithms for:
|
|
|
|
- Device initialization such as clock configuration, PIO settings...
|
|
|
|
- Peripheral drivers such as PIO, PMC or SDRAMC...
|
|
|
|
- Physical media algorithm such as DataFlash, NandFlash, NOR Flash...
|
2007-07-17 14:19:56 +02:00
|
|
|
|
2009-01-29 22:28:57 +01:00
|
|
|
if BR2_TARGET_AT91BOOTSTRAP
|
|
|
|
|
2012-02-02 23:29:26 +01:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_CUSTOM_PATCH_DIR
|
|
|
|
string "custom patch dir"
|
|
|
|
help
|
|
|
|
If your board requires custom patches, add the path to the
|
|
|
|
directory containing the patches here. The patches must be
|
|
|
|
named at91bootstrap-<version>-<something>.patch.
|
|
|
|
|
|
|
|
Most users may leave this empty
|
|
|
|
|
2009-01-03 01:07:25 +01:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_BOARD
|
|
|
|
string "Bootstrap board"
|
2010-03-17 08:43:15 +01:00
|
|
|
default ""
|
2009-01-03 01:07:25 +01:00
|
|
|
help
|
|
|
|
This is used to do a make <board>_config
|
|
|
|
|
2007-07-17 14:19:56 +02:00
|
|
|
choice
|
|
|
|
prompt "Boot Memory"
|
2010-12-05 21:52:47 +01:00
|
|
|
default BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
|
2007-07-17 14:19:56 +02:00
|
|
|
help
|
|
|
|
Select Chip for which AT91 bootstrap should be built
|
|
|
|
|
2010-12-05 21:52:47 +01:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
|
2010-12-05 21:52:46 +01:00
|
|
|
bool "Data Flash"
|
2007-07-17 14:19:56 +02:00
|
|
|
|
2010-12-05 21:52:47 +01:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
|
2007-07-17 14:19:56 +02:00
|
|
|
bool "NAND Flash"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_MEMORY
|
|
|
|
string
|
2010-12-05 21:52:47 +01:00
|
|
|
default "dataflash" if BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
|
|
|
|
default "nandflash" if BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
|
2008-04-10 23:05:30 +02:00
|
|
|
|
2009-01-29 22:28:57 +01:00
|
|
|
endif
|