Merge branch 'qtopia-fixes' of git://git.busybox.net/~tpetazzoni/git/buildroot
[avatt.git] / target / Config.in
blob87abbe666017d7ddeaa1aa473ea21ea79bbc64dd
1 menu "Target filesystem options"
3 config BR2_ROOTFS_PREFIX
4         string "Custom root fs prefix"
5         default "rootfs"
6         help
7           Add a custom string to the beginning of the root file system name.
9 config BR2_ROOTFS_SUFFIX
10         string "Custom root fs suffix"
11         default ""
12         help
13           Add a custom string to the end of the root file system name.
15 comment "filesystem for target device"
17 source "target/cramfs/Config.in"
18 source "target/cloop/Config.in"
19 source "target/ext2/Config.in"
20 source "target/jffs2/Config.in"
21 source "target/ubifs/Config.in"
22 source "target/squashfs/Config.in"
23 source "target/tar/Config.in"
24 source "target/cpio/Config.in"
25 source "target/iso9660/Config.in"
26 source "target/initramfs/Config.in"
27 source "target/romfs/Config.in"
29 comment "bootloader for target device"
31 source "target/x86/grub/Config.in"
32 #source "target/x86/grub2/Config.in"
33 source "target/x86/syslinux/Config.in"
34 source "target/powerpc/yaboot/Config.in"
35 source "target/u-boot/Config.in"
36 endmenu
38 menu "Kernel"
39 choice
40         prompt "Kernel type"
41         default BR2_KERNEL_none
43 config BR2_KERNEL_none
44         bool "none"
45         help
46           Do not build a kernel
48 config BR2_KERNEL_LINUX_ADVANCED
49         bool "linux (Advanced configuration)"
50         select BR2_PACKAGE_LINUX
51         help
52           The Linux kernel - Advanced Configuration.
53           http://www.kernel.org/
55           Note: Requires kernel-headers >= 2.6.19 since the other
56                 kernel headers are just that (headers) and not full
57                 kernels. This is a feature.
59 # The kernel with the same version as linux headers cannot be compiled
60 # when using an external toolchain, because the linux headers are not
61 # handled by Buildroot in this case.
62 if BR2_TOOLCHAIN_SOURCE
64 config BR2_KERNEL_LINUX
65         bool "linux (Same version as linux headers)"
66         select BR2_PACKAGE_LINUX
67         help
68           The Linux kernel.
69           http://www.kernel.org/
71           Note: Requires kernel-headers >= 2.6.19 since the other
72                 kernel headers are just that (headers) and not full
73                 kernels. This is a feature.
75 endif
77 config BR2_KERNEL_HURD
78         bool "hurd"
79         help
80           GNU/Hurd kernel
81 endchoice
83 config BR2_PACKAGE_LINUX
84         bool
86 if BR2_PACKAGE_LINUX
87 source "target/linux/Config.in"
88 #source "target/linux/Config.in.experimental"
89 source "target/linux/Config.in.advanced"
90 endif
92 if BR2_KERNEL_HURD
93 source "target/hurd/Config.in"
94 endif
95 endmenu