2011-09-19 04:09:42 +08:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP
|
2012-02-02 06:36:47 +08:00
|
|
|
depends on BR2_arm926t
|
2010-03-15 01:20:45 +08:00
|
|
|
bool "AT91 Bootstrap"
|
2010-06-15 04:33:08 +08: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 20:19:56 +08:00
|
|
|
|
2009-01-30 05:28:57 +08:00
|
|
|
if BR2_TARGET_AT91BOOTSTRAP
|
|
|
|
|
2012-02-03 06:29:26 +08: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 08:07:25 +08:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_BOARD
|
|
|
|
string "Bootstrap board"
|
2010-03-17 15:43:15 +08:00
|
|
|
default ""
|
2009-01-03 08:07:25 +08:00
|
|
|
help
|
|
|
|
This is used to do a make <board>_config
|
|
|
|
|
2007-07-17 20:19:56 +08:00
|
|
|
choice
|
|
|
|
prompt "Boot Memory"
|
2010-12-06 04:52:47 +08:00
|
|
|
default BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
|
2007-07-17 20:19:56 +08:00
|
|
|
help
|
|
|
|
Select Chip for which AT91 bootstrap should be built
|
|
|
|
|
2010-12-06 04:52:47 +08:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
|
2010-12-06 04:52:46 +08:00
|
|
|
bool "Data Flash"
|
2007-07-17 20:19:56 +08:00
|
|
|
|
2010-12-06 04:52:47 +08:00
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
|
2007-07-17 20:19:56 +08:00
|
|
|
bool "NAND Flash"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BR2_TARGET_AT91BOOTSTRAP_MEMORY
|
|
|
|
string
|
2010-12-06 04:52:47 +08:00
|
|
|
default "dataflash" if BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
|
|
|
|
default "nandflash" if BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
|
2008-04-11 05:05:30 +08:00
|
|
|
|
2009-01-30 05:28:57 +08:00
|
|
|
endif
|