-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathConfig.in.app-image
More file actions
31 lines (26 loc) · 868 Bytes
/
Config.in.app-image
File metadata and controls
31 lines (26 loc) · 868 Bytes
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
30
31
# Copyright (C) 2006 Microchip Technology Inc. and its subsidiaries
#
# SPDX-License-Identifier: MIT
menu "Demo Application Image Storage Setup"
depends on LOAD_64KB || LOAD_1MB || LOAD_4MB
config IMG_ADDRESS
string "Flash Offset for Demo-App"
depends on DATAFLASH || FLASH || NANDFLASH
default "0x00008400" if DATAFLASH
default "0x00040000" if NANDFLASH
default "0x00000000" if SDCARD
config IMG_SIZE
string "Demo-App Image Size"
depends on DATAFLASH || FLASH || NANDFLASH
default "0x00010000" if LOAD_64KB
default "0x00100000" if LOAD_1MB
default "0x00400000" if LOAD_4MB
help
at91bootstrap will copy this size of Demo-App image
config JUMP_ADDR
string "The External Ram Address to Load Demo-App Image"
default "0x60000000" if SAMA7G5 || SAMA7D65
default "0x20000000"
help
The entry point to which the bootstrap will pass control.
endmenu