diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-07 23:47:30 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-07 23:47:30 +0000 |
commit | d953b29fb3944a7381c7398f8eb51347d63714ed (patch) | |
tree | 12863b83d7a8aa7fce9ba1ede741b6afafe18d06 | |
parent | 41fdecb111a35a94f65df559eaa363947e5f4e10 (diff) |
disable all other filesystems in menuconfig when initramfs is selected
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3910 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/Config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/Config.in b/target/linux/Config.in index 9bcb61cd2..946ace320 100644 --- a/target/linux/Config.in +++ b/target/linux/Config.in @@ -9,6 +9,7 @@ menu "Target Root Filesystem" config TARGET_ROOTFS_JFFS2 bool "jffs2" default y + depends !TARGET_ROOTFS_INITRAMFS help Build a jffs2 root filesystem @@ -17,12 +18,14 @@ menu "Target Root Filesystem" default y depends !LINUX_2_6_ARUBA depends !LINUX_2_6_XSCALE + depends !TARGET_ROOTFS_INITRAMFS help Build a squashfs-lzma root filesystem config TARGET_ROOTFS_TGZ bool "tgz" default y if !LINUX_2_4_BRCM && !LINUX_2_6_BRCM && !LINUX_2_6_ARUBA && !LINUX_2_4_AR531X + depends !TARGET_ROOTFS_INITRAMFS help Build a compressed tar archive of the the root filesystem |