]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - boot/at91bootstrap/Config.in
boot/*/Config.in: fix attributes order
[coffee/buildroot.git] / boot / at91bootstrap / Config.in
1 config BR2_TARGET_AT91BOOTSTRAP
2         bool "AT91 Bootstrap"
3         depends on BR2_arm926t
4         help
5           AT91Bootstrap is a first level bootloader for the Atmel AT91
6           devices. It integrates algorithms for:
7           - Device initialization such as clock configuration, PIO settings...
8           - Peripheral drivers such as PIO, PMC or SDRAMC...
9           - Physical media algorithm such as DataFlash, NandFlash, NOR Flash...
10
11 if      BR2_TARGET_AT91BOOTSTRAP
12
13 config BR2_TARGET_AT91BOOTSTRAP_CUSTOM_PATCH_DIR
14         string "custom patch dir"
15         help
16           If your board requires custom patches, add the path to the
17           directory containing the patches here. The patches must be
18           named at91bootstrap-<version>-<something>.patch.
19
20           Most users may leave this empty
21
22 config BR2_TARGET_AT91BOOTSTRAP_BOARD
23         string "Bootstrap board"
24         default ""
25         help
26           This is used to do a make <board>_config
27
28 choice
29         prompt "Boot Memory"
30         default BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
31         help
32           Select Chip for which AT91 bootstrap should be built
33
34 config BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
35         bool "Data Flash"
36
37 config BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
38         bool "NAND Flash"
39
40 endchoice
41
42 config BR2_TARGET_AT91BOOTSTRAP_MEMORY
43         string
44         default "dataflash"     if      BR2_TARGET_AT91BOOTSTRAP_DATAFLASH
45         default "nandflash"     if      BR2_TARGET_AT91BOOTSTRAP_NANDFLASH
46
47 endif