Disable squashfs for au1000 target since it does not allow the user to use the whole...
[openwrt/staging/dedeckeh.git] / openwrt / 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 depends !LINUX_2_6_AU1000
68 help
69 Build a squashfs-lzma root filesystem
70
71 config TARGET_ROOTFS_TGZ
72 bool "tgz"
73 default y if !LINUX_2_4_BRCM && !LINUX_2_6_BRCM && !LINUX_2_6_ARUBA && !LINUX_2_4_AR531X
74 depends !TARGET_ROOTFS_INITRAMFS
75 help
76 Build a compressed tar archive of the the root filesystem
77
78 endmenu
79
80 source "target/linux/Config.in"
81 source ".config.in"
82