reorder sdk menuconfig entry, so that it does not force the toolchain selection into...
[openwrt.git] / Config.in
1 #
2
3 mainmenu "OpenWrt Configuration"
4
5 config HAVE_DOT_CONFIG
6 bool
7 default y
8
9 source "target/Config.in"
10
11 config ALL
12 bool "Select all packages by default"
13 default n
14
15 menuconfig DEVEL
16 bool "Advanced configuration options (for developers)"
17 default n
18 select BUILDOPTS
19 select TOOLCHAINOPTS
20
21 menuconfig BUILDOPTS
22 bool "Build Options" if DEVEL
23
24 config AUTOREBUILD
25 bool
26 prompt "Automatic rebuild of packages" if BUILDOPTS
27 default y
28 help
29 Automatically rebuild packages when their files change
30
31 config TAR_VERBOSITY
32 bool
33 prompt "Tar verbose" if BUILDOPTS
34 default n
35
36 config JLEVEL
37 int
38 prompt "Number of jobs to run simultaneously" if BUILDOPTS
39 default "1"
40 help
41 Number of jobs to run simultanesouly
42
43 source "toolchain/Config.in"
44 source "target/sdk/Config.in"
45
46 menu "Target Images"
47 config TARGET_ROOTFS_INITRAMFS
48 bool "ramdisk"
49 default n
50 depends LINUX_2_6
51 help
52 Embed the rootfs into the kernel (initramfs)
53
54 config TARGET_ROOTFS_JFFS2
55 bool "jffs2"
56 default y
57 depends !TARGET_ROOTFS_INITRAMFS
58 help
59 Build a jffs2 root filesystem
60
61 config TARGET_ROOTFS_SQUASHFS
62 bool "squashfs"
63 default y
64 depends !LINUX_2_6_ARUBA
65 depends !LINUX_2_6_XSCALE
66 depends !TARGET_ROOTFS_INITRAMFS
67 help
68 Build a squashfs-lzma root filesystem
69
70 config TARGET_ROOTFS_TGZ
71 bool "tgz"
72 default y if !LINUX_2_4_BRCM && !LINUX_2_6_BRCM && !LINUX_2_6_ARUBA && !LINUX_2_4_AR531X
73 depends !TARGET_ROOTFS_INITRAMFS
74 help
75 Build a compressed tar archive of the the root filesystem
76
77 endmenu
78
79 source "target/linux/Config.in"
80 source ".config.in"
81
This page took 0.0444 seconds and 5 git commands to generate.