bcm53xx: include wpad-mini only on devices with (supported) wireless
[openwrt/openwrt.git] / scripts / target-metadata.pl
index 7dd782a6c2b2fa1e12ca972faf8d0f3bcc26818d..cbc3403a057086bb5eba57a565601ae4e8b62c28 100755 (executable)
@@ -9,36 +9,37 @@ sub target_config_features(@) {
        my $ret;
 
        while ($_ = shift @_) {
-               /arm_v(\w+)/ and $ret .= "\tselect arm_v$1\n";
-               /broken/ and $ret .= "\tdepends on BROKEN\n";
-               /audio/ and $ret .= "\tselect AUDIO_SUPPORT\n";
-               /display/ and $ret .= "\tselect DISPLAY_SUPPORT\n";
-               /dt/ and $ret .= "\tselect USES_DEVICETREE\n";
-               /gpio/ and $ret .= "\tselect GPIO_SUPPORT\n";
-               /pci/ and $ret .= "\tselect PCI_SUPPORT\n";
-               /pcie/ and $ret .= "\tselect PCIE_SUPPORT\n";
-               /usb/ and $ret .= "\tselect USB_SUPPORT\n";
-               /usbgadget/ and $ret .= "\tselect USB_GADGET_SUPPORT\n";
-               /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
-               /rtc/ and $ret .= "\tselect RTC_SUPPORT\n";
-               /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n";
-               /jffs2$/ and $ret .= "\tselect USES_JFFS2\n";
-               /jffs2_nand/ and $ret .= "\tselect USES_JFFS2_NAND\n";
-               /ext4/ and $ret .= "\tselect USES_EXT4\n";
-               /targz/ and $ret .= "\tselect USES_TARGZ\n";
-               /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n";
-               /minor/ and $ret .= "\tselect USES_MINOR\n";
-               /ubifs/ and $ret .= "\tselect USES_UBIFS\n";
-               /fpu/ and $ret .= "\tselect HAS_FPU\n";
-               /spe_fpu/ and $ret .= "\tselect HAS_SPE_FPU\n";
-               /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n";
-               /powerpc64/ and $ret .= "\tselect powerpc64\n";
-               /nommu/ and $ret .= "\tselect NOMMU\n";
-               /mips16/ and $ret .= "\tselect HAS_MIPS16\n";
-               /rfkill/ and $ret .= "\tselect RFKILL_SUPPORT\n";
-               /low_mem/ and $ret .= "\tselect LOW_MEMORY_FOOTPRINT\n";
-               /small_flash/ and $ret .= "\tselect SMALL_FLASH\n";
-               /nand/ and $ret .= "\tselect NAND_SUPPORT\n";
+               /^arm_v(\w+)$/ and $ret .= "\tselect arm_v$1\n";
+               /^broken$/ and $ret .= "\tdepends on BROKEN\n";
+               /^audio$/ and $ret .= "\tselect AUDIO_SUPPORT\n";
+               /^display$/ and $ret .= "\tselect DISPLAY_SUPPORT\n";
+               /^dt$/ and $ret .= "\tselect USES_DEVICETREE\n";
+               /^gpio$/ and $ret .= "\tselect GPIO_SUPPORT\n";
+               /^pci$/ and $ret .= "\tselect PCI_SUPPORT\n";
+               /^pcie$/ and $ret .= "\tselect PCIE_SUPPORT\n";
+               /^usb$/ and $ret .= "\tselect USB_SUPPORT\n";
+               /^usbgadget$/ and $ret .= "\tselect USB_GADGET_SUPPORT\n";
+               /^pcmcia$/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
+               /^rtc$/ and $ret .= "\tselect RTC_SUPPORT\n";
+               /^squashfs$/ and $ret .= "\tselect USES_SQUASHFS\n";
+               /^jffs2$/ and $ret .= "\tselect USES_JFFS2\n";
+               /^jffs2_nand$/ and $ret .= "\tselect USES_JFFS2_NAND\n";
+               /^ext4$/ and $ret .= "\tselect USES_EXT4\n";
+               /^targz$/ and $ret .= "\tselect USES_TARGZ\n";
+               /^cpiogz$/ and $ret .= "\tselect USES_CPIOGZ\n";
+               /^minor$/ and $ret .= "\tselect USES_MINOR\n";
+               /^ubifs$/ and $ret .= "\tselect USES_UBIFS\n";
+               /^fpu$/ and $ret .= "\tselect HAS_FPU\n";
+               /^spe_fpu$/ and $ret .= "\tselect HAS_SPE_FPU\n";
+               /^ramdisk$/ and $ret .= "\tselect USES_INITRAMFS\n";
+               /^powerpc64$/ and $ret .= "\tselect powerpc64\n";
+               /^nommu$/ and $ret .= "\tselect NOMMU\n";
+               /^mips16$/ and $ret .= "\tselect HAS_MIPS16\n";
+               /^rfkill$/ and $ret .= "\tselect RFKILL_SUPPORT\n";
+               /^low_mem$/ and $ret .= "\tselect LOW_MEMORY_FOOTPRINT\n";
+               /^small_flash$/ and $ret .= "\tselect SMALL_FLASH\n";
+               /^nand$/ and $ret .= "\tselect NAND_SUPPORT\n";
+               /^virtio$/ and $ret .= "\tselect VIRTIO_SUPPORT\n";
        }
        return $ret;
 }
@@ -202,13 +203,14 @@ endchoice
 
 choice
        prompt "Target Profile"
+       default TARGET_MULTI_PROFILE if BUILDBOT
 
 EOF
        foreach my $target (@target) {
                my $profile = $target->{profiles}->[0];
                $profile or next;
                print <<EOF;
-       default TARGET_$target->{conf}_$profile->{id} if TARGET_$target->{conf}
+       default TARGET_$target->{conf}_$profile->{id} if TARGET_$target->{conf} && !BUILDBOT
 EOF
        }
 
@@ -217,6 +219,9 @@ EOF
 config TARGET_MULTI_PROFILE
        bool "Multiple devices"
        depends on HAS_DEVICES
+       help
+       Instead of only building a single image, or all images, this allows you
+       to select images to be built for multiple devices in one build.
 
 EOF
 
@@ -250,18 +255,42 @@ endchoice
 menu "Target Devices"
        depends on TARGET_MULTI_PROFILE
 
+       config TARGET_ALL_PROFILES
+               bool "Enable all profiles by default"
+               default BUILDBOT
+
        config TARGET_PER_DEVICE_ROOTFS
                bool "Use a per-device root filesystem that adds profile packages"
+               default BUILDBOT
+               help
+               When disabled, all device packages from all selected devices
+               will be included in all images by default. (Marked as <*>) You will
+               still be able to manually deselect any/all packages.
+               When enabled, each device builds it's own image, including only the
+               profile packages for that device.  (Marked as {M}) You will be able
+               to change a package to included in all images by marking as {*}, but
+               will not be able to disable a profile package completely.
+               
+               To get the most use of this setting, you must set in a .config stub
+               before calling "make defconfig".  Selecting TARGET_MULTI_PROFILE and
+               then manually selecting (via menuconfig for instance) this option
+               will have pre-defaulted all profile packages to included, making this
+               option appear to have had no effect.
 
 EOF
        foreach my $target (@target) {
-               my $profiles = $target->{profiles};
-               foreach my $profile (@{$target->{profiles}}) {
+               my @profiles = sort {
+                       my $x = $a->{name};
+                       my $y = $b->{name};
+                       "\L$x" cmp "\L$y";
+               } @{$target->{profiles}};
+               foreach my $profile (@profiles) {
                        next unless $profile->{id} =~ /^DEVICE_/;
                        print <<EOF;
-config TARGET_DEVICE_$target->{conf}_$profile->{id}
+menuconfig TARGET_DEVICE_$target->{conf}_$profile->{id}
        bool "$profile->{name}"
        depends on TARGET_$target->{conf}
+       default y if TARGET_ALL_PROFILES
 EOF
                        my @pkglist = merge_package_lists($target->{packages}, $profile->{packages});
                        foreach my $pkg (@pkglist) {
@@ -269,6 +298,17 @@ EOF
                                print "\tselect MODULE_DEFAULT_$pkg if TARGET_PER_DEVICE_ROOTFS\n";
                                $defaults{$pkg} = 1;
                        }
+
+                       print <<EOF;
+
+
+       config TARGET_DEVICE_PACKAGES_$target->{conf}_$profile->{id}
+               string "$profile->{name} additional packages"
+               default ""
+               depends on TARGET_PER_DEVICE_ROOTFS
+               depends on TARGET_DEVICE_$target->{conf}_$profile->{id}
+
+EOF
                }
        }