forked from linux4sam/at91bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.in.app-image
27 lines (23 loc) · 884 Bytes
/
Config.in.app-image
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
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