forked from linux4sam/at91bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.in.u-boot
29 lines (25 loc) · 968 Bytes
/
Config.in.u-boot
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
menu "U-Boot Image Storage Setup"
depends on CONFIG_LOAD_UBOOT
config CONFIG_IMG_ADDRESS
string "Flash Offset for U-Boot"
depends on CONFIG_DATAFLASH || CONFIG_FLASH || CONFIG_NANDFLASH
default "0x00008000" if CONFIG_FLASH
default "0x00008000" if CONFIG_DATAFLASH
default "0x00040000" if CONFIG_NANDFLASH
default "0x00000000" if CONFIG_SDCARD
help
config CONFIG_IMG_SIZE
string "U-Boot Image Size"
depends on CONFIG_DATAFLASH || CONFIG_FLASH || CONFIG_NANDFLASH
default "0x00080000"
help
at91bootstrap will copy this size of U-Boot image
config CONFIG_JUMP_ADDR
string "The External Ram Address to Load U-Boot Image"
default "0x73F00000" if AT91SAM9G45
default "0x26F00000" if AT91SAM9X5 || AT91SAM9N12 || SAMA5D3X || SAMA5D4 || SAMA5D2
default "0x21F00000" if AT91SAM9260 || AT91SAM9261 || AT91SAM9263 || AT91SAM9G10 || AT91SAM9G20 || AT91SAM9RL
default "0x23F00000"
help
The entry point to which the bootstrap will pass control.
endmenu