blob: fb6ee17ce8977a5a4bd60bbc453733fdeb3c5770 (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
if TARGET_LS1028AQDS
config SYS_BOARD
default "ls1028a"
config SYS_VENDOR
default "freescale"
config SYS_SOC
default "fsl-layerscape"
config SYS_CONFIG_NAME
default "ls1028aqds"
config EMMC_BOOT
bool "Support for booting from EMMC"
config TEXT_BASE
default 0x96000000 if SD_BOOT || EMMC_BOOT
default 0x82000000 if TFABOOT
default 0x20100000
endif
if TARGET_LS1028ARDB
config SYS_BOARD
default "ls1028a"
config SYS_VENDOR
default "freescale"
config SYS_SOC
default "fsl-layerscape"
config SYS_CONFIG_NAME
default "ls1028ardb"
config EMMC_BOOT
bool "Support for booting from EMMC"
config TEXT_BASE
default 0x96000000 if SD_BOOT || EMMC_BOOT
default 0x82000000 if TFABOOT
default 0x20100000
endif
|