forked from linux4sam/at91bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.in.kernel
88 lines (75 loc) · 2.79 KB
/
Config.in.kernel
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
menu "Kernel Image Storage Setup"
depends on CONFIG_LINUX_IMAGE
config CONFIG_OVERRIDE_CMDLINE
bool "Override the config kernel command-line"
default n
help
The board will override the kernel command-line which specified through the config.
config CONFIG_LINUX_KERNEL_ARG_STRING
depends on CONFIG_LOAD_LINUX
string "Linux kernel command-line"
source "board/at91sam9261ek/Config.in.linux_arg"
source "board/at91sam9263ek/Config.in.linux_arg"
source "board/at91sam9g10ek/Config.in.linux_arg"
source "board/at91sam9g20ek/Config.in.linux_arg"
source "board/at91sam9rlek/Config.in.linux_arg"
source "board/at91sam9xeek/Config.in.linux_arg"
source "board/at91sam9m10g45ek/Config.in.linux_arg"
source "board/at91sam9x5ek/Config.in.linux_arg"
source "board/at91sam9n12ek/Config.in.linux_arg"
source "board/sama5d3xek/Config.in.linux_arg"
source "board/sama5d3_xplained/Config.in.linux_arg"
source "board/sama5d3x_cmp/Config.in.linux_arg"
source "board/sama5d4ek/Config.in.linux_arg"
source "board/sama5d4_xplained/Config.in.linux_arg"
source "board/sama5d2_ptc/Config.in.linux_arg"
source "board/sama5d2_xplained/Config.in.linux_arg"
source "contrib/board/Config.in.linux_arg"
config CONFIG_LINUX_KERNEL_ARG_STRING
depends on CONFIG_LOAD_ANDROID
string "Android kernel command-line"
source "board/sama5d3xek/Config.in.android_arg"
config CONFIG_MEM_BANK
string "Extern Memory Bank Base Address"
default "0x70000000" if AT91SAM9G45
default "0x20000000"
config CONFIG_MEM_SIZE
string "Extern Memory Bank Size"
default "0x2000000" if CONFIG_RAM_32MB
default "0x4000000" if CONFIG_RAM_64MB
default "0x8000000" if CONFIG_RAM_128MB
default "0x10000000" if CONFIG_RAM_256MB
default "0x20000000" if CONFIG_RAM_512MB
config CONFIG_IMG_ADDRESS
depends on CONFIG_DATAFLASH || CONFIG_FLASH || CONFIG_NANDFLASH
string "Flash Offset for Linux Kernel Image"
default "0x00200000" if CONFIG_FLASH
default "0x00040000" if CONFIG_DATAFLASH
default "0x00200000" if CONFIG_NANDFLASH
default "0x00000000" if CONFIG_SDCARD
help
config CONFIG_JUMP_ADDR
string "The External Ram Address to Load Kernel Image"
default "0x72000000" if AT91SAM9G45
default "0x22000000"
help
The entry point to which the bootstrap will pass control.
menu "Flattened Device Tree"
config CONFIG_OF_LIBFDT
bool "Flattened Device Tree Support"
default y
config CONFIG_OF_OFFSET
string "The Offset of Flash Device Tree Blob "
depends on CONFIG_OF_LIBFDT && (CONFIG_DATAFLASH || CONFIG_FLASH || CONFIG_NANDFLASH)
default "0x00008400" if CONFIG_DATAFLASH
default "0x00180000" if CONFIG_NANDFLASH
default "0x00100000" if CONFIG_FLASH
default "0x00000000" if CONFIG_SDCARD
config CONFIG_OF_ADDRESS
string "The External Ram Address to Load Device Tree Blob"
depends on CONFIG_OF_LIBFDT
default "0x71000000" if AT91SAM9G45
default "0x21000000"
help
endmenu
endmenu