It splits load strategy: * kernel (linux and android) into Config.in.kernel * u-boot into Config.in.u-boot * app-image softpack (all sizes) into Config.in.app-image. Signed-off-by: Gaël PORTAY <gael.portay@gmail.com>
28 lines
884 B
Plaintext
28 lines
884 B
Plaintext
menu "Demo Application Image Storage Setup"
|
|
depends on CONFIG_LOAD_64KB || CONFIG_LOAD_1MB || CONFIG_LOAD_4MB
|
|
|
|
config CONFIG_IMG_ADDRESS
|
|
string "Flash Offset for Demo-App"
|
|
depends on CONFIG_DATAFLASH || CONFIG_FLASH || CONFIG_NANDFLASH
|
|
default "0x00008400" if CONFIG_DATAFLASH
|
|
default "0x00040000" if CONFIG_NANDFLASH
|
|
default "0x00000000" if CONFIG_SDCARD
|
|
|
|
config CONFIG_IMG_SIZE
|
|
string "Demo-App Image Size"
|
|
depends on CONFIG_DATAFLASH || CONFIG_FLASH || CONFIG_NANDFLASH
|
|
default "0x00010000" if CONFIG_LOAD_64KB
|
|
default "0x00100000" if CONFIG_LOAD_1MB
|
|
default "0x00400000" if CONFIG_LOAD_4MB
|
|
help
|
|
at91bootstrap will copy this size of Demo-App image
|
|
|
|
config CONFIG_JUMP_ADDR
|
|
string "The External Ram Address to Load Demo-App Image"
|
|
default "0x70000000" if AT91SAM9G45
|
|
default "0x20000000"
|
|
help
|
|
The entry point to which the bootstrap will pass control.
|
|
|
|
endmenu
|