blob: 788822f0c250a7e70dd00bcf53ede6be5bf68a5b (
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
|
menu "Board Support Options"
config BR2_TARGET_GENERIC
bool "linux kernel"
default n
select BR2_PACKAGE_LINUX
help
Architecture or board dependant linux kernel.
config BR2_PACKAGE_LINUX
bool "linux"
default n
depends BR2_TARGET_GENERIC
help
The Linux kernel.
http://www.kernel.org/
source "target/device/AMD/Config.in"
source "target/device/Atmel/Config.in"
source "target/device/Hitachi/Config.in"
source "target/device/jp/Config.in"
source "target/device/Sharp/Config.in"
source "target/device/Soekris/Config.in"
source "target/device/Via/Config.in"
source "target/device/x86/Config.in"
# This must be last
source "target/generic/Config.in"
endmenu
|