summaryrefslogtreecommitdiffstats
path: root/target/Config.in
blob: 2ca190c9c47316d60f59e3254512df5ac75a42ba (plain) (blame)
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
menu "Target filesystem options"

comment "filesystem for target device"

source "target/cramfs/Config.in"
source "target/cloop/Config.in"
source "target/ext2/Config.in"
source "target/jffs2/Config.in"
source "target/squashfs/Config.in"
source "target/tar/Config.in"
source "target/cpio/Config.in"
source "target/iso9660/Config.in"
source "target/initramfs/Config.in"

comment "bootloader for target device"

source "target/x86/grub/Config.in"
#source "target/x86/grub2/Config.in"
source "target/x86/syslinux/Config.in"
source "target/powerpc/yaboot/Config.in"
endmenu

menu "Kernel"
choice
	prompt "Kernel type"
	default BR2_KERNEL_LINUX

config BR2_KERNEL_none
	bool "none"
	help
	  Do not build a kernel

config BR2_KERNEL_LINUX
	bool "linux"
	help
	  Linux kernel

config BR2_KERNEL_HURD
	bool "hurd"
	help
	  GNU/Hurd kernel
endchoice
if BR2_KERNEL_LINUX
source "target/linux/Config.in"
endif
if BR2_KERNEL_HURD
source "target/hurd/Config.in"
endif
endmenu