X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=scripts%2Fmetadata.pl;h=41147d0ab8e5bdc9cb7eeed9eb4e0d8c5df45d0c;hb=2346d031cbadae78448eedc4e53f57dbdcf21b7a;hp=1971607ebb6f0576a3e323079b63e76090d563ba;hpb=61c9b8665f411aed59f4a10f413d46603d2ebf25;p=openwrt.git diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 1971607ebb..41147d0ab8 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -155,6 +155,7 @@ sub target_config_features(@) { /display/ and $ret .= "\tselect DISPLAY_SUPPORT\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"; /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n"; /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n"; @@ -164,6 +165,8 @@ sub target_config_features(@) { /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n"; /fpu/ and $ret .= "\tselect HAS_FPU\n"; /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n"; + /powerpc64/ and $ret .= "\tselect powerpc64\n"; + /nommu/ and $ret .= "\tselect NOMMU\n"; } return $ret; }