Add FEATURE ramdisk to be able to select the use of INITRAMFS for a sub-target
authorhcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 18 Mar 2009 15:57:18 +0000 (15:57 +0000)
committerhcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 18 Mar 2009 15:57:18 +0000 (15:57 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14939 3c298f89-4303-0410-b956-a3cf2f4a3e73

Config.in
scripts/metadata.pl
target/Config.in
target/linux/ps3/petitboot/target.mk

index e412338..4d75896 100644 (file)
--- a/Config.in
+++ b/Config.in
@@ -15,7 +15,7 @@ source "target/Config.in"
 menu "Target Images"
        config TARGET_ROOTFS_INITRAMFS
                bool "ramdisk"
-               default n
+               default y if USES_INITRAMFS
                depends LINUX_2_6
                help
                  Embed the rootfs into the kernel (initramfs)
index 3d9d68a..c341e65 100755 (executable)
@@ -163,6 +163,7 @@ sub target_config_features(@) {
                /tgz/ and $ret .= "\tselect USES_TGZ\n";
                /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n";
                /fpu/ and $ret .= "\tselect HAS_FPU\n";
+               /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n";
        }
        return $ret;
 }
index 31f7a50..6506312 100644 (file)
@@ -29,6 +29,9 @@ config USB_SUPPORT
 config BIG_ENDIAN
        bool
 
+config USES_INITRAMFS
+       bool
+
 config USES_SQUASHFS
        bool
 
index a3d84dd..4b53f57 100644 (file)
@@ -1,7 +1,7 @@
 BOARDNAME:=Petitboot
-FEATURES:=fpu
+FEATURES:=fpu ramdisk
 
-DEFAULT_PACKAGES+= dnsmasq
+DEFAULT_PACKAGES+= dnsmasq petitboot
 
 define Target/Description
        Build Petitboot bootloader
This page took 0.033769 seconds and 4 git commands to generate.