Files
H1502_at91bootstrap/Config.in.app-image
Gaël PORTAY 70a93151b3 Config.in: split all load strategies into dedicated Config.in files
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>
2015-07-03 15:08:13 +08:00

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