don't fail if BR2_USE_UPDATES tries to update non-checkout
[buildroot.git] / target / Config.in
blobe49313f2a4cbf5457e46bb2375797f094cd7f068
1 menu "Target filesystem options"
3 comment "filesystem for target device"
5 source "target/cramfs/Config.in"
6 source "target/cloop/Config.in"
7 source "target/ext2/Config.in"
8 source "target/jffs2/Config.in"
9 source "target/squashfs/Config.in"
10 source "target/tar/Config.in"
11 source "target/cpio/Config.in"
12 source "target/iso9660/Config.in"
13 source "target/initramfs/Config.in"
15 comment "bootloader for target device"
17 source "target/x86/grub/Config.in"
18 source "target/x86/grub2/Config.in"
19 source "target/x86/syslinux/Config.in"
20 source "target/powerpc/yaboot/Config.in"
21 endmenu
23 menu "Kernel"
24 choice
25         prompt "Kernel type"
26         default BR2_KERNEL_LINUX
28 config BR2_KERNEL_none
29         bool "none"
30         help
31           Do not build a kernel
33 config BR2_KERNEL_LINUX
34         bool "linux"
35         help
36           Linux kernel
38 config BR2_KERNEL_HURD
39         bool "hurd"
40         help
41           GNU/Hurd kernel
42 endchoice
43 if BR2_KERNEL_LINUX
44 source "target/linux/Config.in"
45 endif
46 if BR2_KERNEL_HURD
47 source "target/hurd/Config.in"
48 endif
49 endmenu