├── .defconfig ├── .flake8 ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab-ci.yml.in ├── CHANGES ├── COPYING ├── Config.in ├── Config.in.legacy ├── DEVELOPERS ├── Makefile ├── Makefile.legacy ├── README ├── README.md ├── arch ├── Config.in ├── Config.in.arc ├── Config.in.arm ├── Config.in.csky ├── Config.in.m68k ├── Config.in.microblaze ├── Config.in.mips ├── Config.in.nds32 ├── Config.in.nios2 ├── Config.in.or1k ├── Config.in.powerpc ├── Config.in.riscv ├── Config.in.sh ├── Config.in.sparc ├── Config.in.x86 ├── Config.in.xtensa ├── arch.mk ├── arch.mk.arc ├── arch.mk.csky ├── arch.mk.riscv └── arch.mk.xtensa ├── board ├── aarch64-efi │ ├── genimage-efi.cfg │ ├── grub.cfg │ ├── post-image.sh │ └── readme.txt ├── acmesystems │ ├── aria-g25 │ │ ├── genimage.cfg │ │ └── readme.txt │ └── arietta-g25 │ │ ├── genimage.cfg │ │ └── readme.txt ├── altera │ └── socrates_cyclone5 │ │ ├── boot-env.txt │ │ ├── genimage.cfg │ │ └── readme.txt ├── amarula │ ├── a64-relic │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac4330-sdio.txt │ └── vyasa │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── linux_gmac.fragment │ │ ├── patches │ │ └── uboot │ │ │ └── 0001-include-configs-Increase-CONFIG_SYS_BOOTM_LEN-to-16M.patch │ │ ├── post-build.sh │ │ └── readme.txt ├── andes │ ├── ae3xx │ │ └── ae3xx.fragment │ ├── patches │ │ └── linux │ │ │ └── 0001-nds32-Fix-boot-messages-garbled.patch │ └── readme.txt ├── arcturus │ ├── aarch64-ucls1012a │ │ ├── post-image.sh │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── etc │ │ │ └── init.d │ │ │ └── S09modload │ └── ppc-ucp1020 │ │ └── readme.txt ├── arm │ ├── foundation-v8 │ │ └── readme.txt │ └── juno │ │ ├── linux-juno-defconfig │ │ └── readme.txt ├── armadeus │ ├── apf27 │ │ └── linux-4.12.config │ ├── apf51 │ │ └── linux-4.4.config │ └── readme.txt ├── asus │ └── tinker │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── patches │ │ └── uboot │ │ │ └── 0001-include-configs-Increase-CONFIG_SYS_BOOTM_LEN-to-16M.patch │ │ ├── post-build.sh │ │ └── readme.txt ├── atmel │ ├── at91sam9x5ek_mmc │ │ ├── genimage.cfg │ │ └── uboot-env.txt │ ├── flasher.sh │ ├── nandflash.tcl │ ├── readme.txt │ ├── sama5d27_som1_ek_mmc │ │ └── genimage.cfg │ ├── sama5d2_xplained_mmc │ │ └── genimage.cfg │ ├── sama5d3_xplained_mmc │ │ └── genimage.cfg │ └── sama5d4_xplained_mmc │ │ └── genimage.cfg ├── avnet │ └── s6lx9_microboard │ │ ├── lx9_mmu.dts │ │ ├── lx9_mmu_defconfig │ │ └── readme.txt ├── bananapi │ ├── bananapi-m1 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── bananapi-m2-ultra │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ └── bananapi-m64 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt ├── beagleboardx15 │ ├── genimage.cfg │ └── readme.txt ├── beaglebone │ ├── genimage.cfg │ ├── genimage_linux41.cfg │ ├── linux-sgx.fragment │ ├── patches │ │ └── linux │ │ │ └── 0001-keep-jtag-clock-alive-for-debugger.patch │ ├── post-build.sh │ ├── readme.txt │ └── uEnv.txt ├── beagleboneai │ ├── genimage.cfg │ ├── patches │ │ └── uboot │ │ │ └── 0001-BeagleBone-AI-support.patch │ ├── post-build.sh │ ├── readme.txt │ └── uEnv.txt ├── beelink │ └── gs1 │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── patches │ │ ├── arm-trusted-firmware │ │ │ └── 0001-plat-allwinner-common-use-r_wdog-instead-of-wdog.patch │ │ └── uboot │ │ │ └── 0001-arm-dts-sync-dts-for-Allwinner-H6.patch │ │ └── post-build.sh ├── boundarydevices │ └── common │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ ├── post-image.sh │ │ ├── readme.txt │ │ └── upgrade.cmd ├── chromebook │ └── snow │ │ ├── kernel.args │ │ ├── kernel.its │ │ ├── linux-4.15-dts-tpm.patch │ │ ├── linux-4.15.fragment │ │ ├── mksd.sh │ │ ├── readme.txt │ │ └── sign.sh ├── ci20 │ ├── genimage.cfg │ ├── patches │ │ └── uboot │ │ │ └── 0001-mips-Remove-default-endiannes.patch │ ├── readme.txt │ └── uboot-env.txt ├── csky │ ├── gx6605s │ │ ├── gdbinit │ │ └── gx6605s.dts │ └── readme.txt ├── cubietech │ └── cubieboard2 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── post-image.sh ├── embest │ └── riotboard │ │ ├── genimage.cfg │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ └── boot │ │ └── extlinux │ │ └── extlinux.conf ├── engicam │ ├── geam6ul │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── icorem6 │ │ ├── genimage.cfg │ │ ├── linux_qt5.fragment │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── root │ │ │ ├── imx6qdl-icore-ofcap10.json │ │ │ ├── imx6qdl-icore-ofcap12.json │ │ │ └── imx6qdl-icore.json │ ├── icorem6_rqs │ │ ├── genimage.cfg │ │ └── readme.txt │ └── isiot │ │ ├── genimage.cfg │ │ └── readme.txt ├── freescale │ ├── common │ │ ├── imx │ │ │ ├── genimage.cfg.template │ │ │ ├── genimage.cfg.template_imx8 │ │ │ ├── genimage.cfg.template_no_boot_part_spl │ │ │ ├── genimage.cfg.template_spl │ │ │ ├── imx8-bootloader-prepare.sh │ │ │ └── post-image.sh │ │ └── mxs │ │ │ ├── genimage.cfg.template │ │ │ └── post-image.sh │ ├── imx23evk │ │ └── readme.txt │ ├── imx25pdk │ │ └── readme.txt │ ├── imx28evk │ │ └── readme.txt │ ├── imx51evk │ │ └── readme.txt │ ├── imx6-sabresd │ │ ├── linux_qt5.fragment │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── root │ │ │ └── sabresd.json │ ├── imx6sabre │ │ ├── patches │ │ │ └── uboot │ │ │ │ ├── 0002-imx-Create-distinct-pre-processed-mkimage-config-fil.patch │ │ │ │ └── uboot-0001-mx6qsabre_common-boot-Linux-to-init-in-mfgtools-mode.patch │ │ └── readme.txt │ ├── imx6slevk │ │ └── readme.txt │ ├── imx6sxsdb │ │ └── readme.txt │ ├── imx6ulevk │ │ └── readme.txt │ ├── imx7dsdb │ │ ├── patches │ │ │ └── uboot │ │ │ │ └── 0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch │ │ └── readme.txt │ ├── imx8mmevk │ │ └── readme.txt │ ├── imx8mqevk │ │ └── readme.txt │ ├── imx8qxpmek │ │ └── readme.txt │ ├── p1025twr │ │ └── readme.txt │ ├── t1040_t2080 │ │ └── readme.txt │ └── warpboard │ │ ├── README │ │ ├── linux.fragment │ │ └── rootfs_overlay │ │ └── lib │ │ └── firmware │ │ └── brcm │ │ └── brcmfmac4330-sdio.txt ├── friendlyarm │ ├── nanopi-a64 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── nanopi-m1-plus │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── nanopi-m1 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── nanopi-neo-plus2 │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ ├── post-build.sh │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac43430-sdio.friendlyarm,nanopi-neo-plus2.txt │ ├── nanopi-neo │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ └── nanopi-neo2 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt ├── grinn │ ├── chiliboard │ │ ├── genimage.cfg │ │ ├── post-image.sh │ │ └── readme.txt │ └── liteboard │ │ ├── genimage.cfg │ │ ├── post-image.sh │ │ └── readme.txt ├── hardkernel │ ├── odroidc2 │ │ ├── boot.ini │ │ ├── genimage.cfg │ │ ├── post-image.sh │ │ └── readme.txt │ └── odroidxu4 │ │ ├── boot.ini │ │ ├── genimage.cfg │ │ ├── post-image.sh │ │ └── readme.txt ├── intel │ └── galileo │ │ ├── genimage.cfg │ │ ├── grub.cfg │ │ ├── linux-3.14.config │ │ ├── post-build.sh │ │ ├── post-image.sh │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ └── etc │ │ ├── init.d │ │ └── S09modload │ │ └── modules-load.galileo │ │ ├── galileo.conf │ │ └── galileo_gen2.conf ├── lego │ └── ev3 │ │ ├── busybox.fragment │ │ ├── genimage.cfg │ │ ├── linux.fragment │ │ ├── post-image.sh │ │ └── readme.txt ├── lemaker │ └── bananapro │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── linux-wifi.fragment │ │ ├── patches │ │ └── linux │ │ │ └── 0001-arch-arm-boot-dts-sun7i-a20-bananapro.dts-disable-00.patch │ │ ├── post-build.sh │ │ ├── post-image.sh │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ └── lib │ │ └── firmware │ │ └── brcm │ │ ├── brcmfmac43362-sdio.lemaker,bananapro.txt │ │ └── brcmfmac43362-sdio.txt ├── librecomputer │ └── lafrite │ │ ├── genimage.cfg │ │ ├── overlay │ │ └── extlinux │ │ │ └── extlinux.conf │ │ └── readme.txt ├── licheepi │ ├── boot.cmd │ ├── genimage.cfg │ └── readme.txt ├── linksprite │ └── pcduino │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ ├── post-build.sh │ │ ├── post-image.sh │ │ └── readme.txt ├── minnowboard │ ├── fs-overlay-graphical │ │ └── etc │ │ │ ├── X11 │ │ │ └── Xsession │ │ │ └── asound.conf │ ├── genimage.cfg │ ├── grub.cfg │ ├── linux.config │ ├── post-build.sh │ └── readme.txt ├── nexbox │ └── a95x │ │ ├── boot.txt │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ ├── post-image.sh │ │ └── readme.txt ├── olimex │ ├── a10_olinuxino │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ └── readme.txt │ ├── a13_olinuxino │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ └── readme.txt │ ├── a20_olinuxino │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ └── readme.txt │ ├── a33_olinuxino │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ └── readme.txt │ ├── a64-olinuxino │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ └── imx233_olinuxino │ │ ├── linux-wifi.fragment │ │ └── readme.txt ├── openblocks │ └── a6 │ │ └── readme.txt ├── orangepi │ ├── orangepi-lite │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ └── readme.txt │ ├── orangepi-lite2 │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac43455-sdio.txt │ ├── orangepi-one-plus │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ └── readme.txt │ ├── orangepi-one │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── orangepi-pc-plus │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ └── readme.txt │ ├── orangepi-pc │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── linux.fragment │ │ └── readme.txt │ ├── orangepi-pc2 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── orangepi-plus │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── orangepi-prime │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── orangepi-r1 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ └── readme.txt │ ├── orangepi-win │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── orangepi-zero-plus2 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac43430-sdio.txt │ └── orangepi-zero │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ ├── patches │ │ └── linux │ │ │ ├── 0001-ARM-dts-orange-pi-zero-interrupt-triggering-xr819.patch │ │ │ ├── 0002-ARM-dts-orange-pi-zero-enable-spi-nor.patch │ │ │ └── 0003-ARM-dts-orange-pi-zero-enable-spidev.patch │ │ └── readme.txt ├── pandaboard │ ├── genimage.cfg │ └── readme.txt ├── pc │ ├── genimage-bios.cfg │ ├── genimage-efi.cfg │ ├── grub-bios.cfg │ ├── grub-efi.cfg │ ├── linux.config │ ├── post-build.sh │ ├── post-image-efi.sh │ └── readme.txt ├── pine64 │ ├── pine64 │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── rock64 │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── patches │ │ │ └── uboot │ │ │ │ └── 0001-Makefile-rk3328-needs-itb-image-to-boot-properly.patch │ │ ├── post-build.sh │ │ └── readme.txt │ └── sopine │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt ├── ps3 │ └── linux │ │ └── ps3_petitboot_defconfig ├── qemu │ ├── aarch64-virt │ │ ├── linux.config │ │ └── readme.txt │ ├── arm-versatile │ │ ├── linux-nommu.config │ │ ├── linux.config │ │ ├── patches │ │ │ └── linux │ │ │ │ └── versatile-nommu.patch │ │ └── readme.txt │ ├── arm-vexpress-tz │ │ ├── linux.fragment │ │ ├── post-build.sh │ │ ├── readme.txt │ │ └── u-boot.config │ ├── arm-vexpress │ │ └── readme.txt │ ├── csky │ │ ├── linux-ck610.config.fragment │ │ ├── linux-ck807.config.fragment │ │ ├── linux-ck810.config.fragment │ │ ├── linux-ck860.config.fragment │ │ └── readme.txt │ ├── m68k-mcf5208 │ │ ├── linux.config │ │ └── readme.txt │ ├── m68k-q800 │ │ ├── linux.config │ │ └── readme.txt │ ├── microblazebe-mmu │ │ ├── linux.config │ │ ├── readme.txt │ │ └── xilinx-xemaclite.patch │ ├── microblazeel-mmu │ │ ├── linux.config │ │ ├── readme.txt │ │ └── xilinx-xemaclite.patch │ ├── mips32r2-malta │ │ ├── linux.config │ │ └── readme.txt │ ├── mips32r2el-malta │ │ ├── linux.config │ │ └── readme.txt │ ├── mips32r6-malta │ │ ├── linux.config │ │ └── readme.txt │ ├── mips32r6el-malta │ │ ├── linux.config │ │ └── readme.txt │ ├── mips64-malta │ │ ├── linux.config │ │ └── readme.txt │ ├── mips64el-malta │ │ ├── linux.config │ │ └── readme.txt │ ├── mips64r6-malta │ │ ├── linux.config │ │ └── readme.txt │ ├── mips64r6el-malta │ │ ├── linux.config │ │ └── readme.txt │ ├── nios2-10m50 │ │ ├── linux.fragment │ │ └── readme.txt │ ├── or1k │ │ ├── linux.config │ │ └── readme.txt │ ├── ppc-g3beige │ │ ├── linux.config │ │ └── readme.txt │ ├── ppc-mac99 │ │ ├── linux.fragment │ │ └── readme.txt │ ├── ppc-mpc8544ds │ │ ├── linux.config │ │ └── readme.txt │ ├── ppc-virtex-ml507 │ │ ├── linux.config │ │ └── readme.txt │ ├── ppc64-e5500 │ │ ├── linux.fragment │ │ └── readme.txt │ ├── ppc64-pseries │ │ └── readme.txt │ ├── ppc64le-pseries │ │ └── readme.txt │ ├── riscv32-virt │ │ ├── patches │ │ │ └── linux │ │ │ │ └── 0001-Revert-riscv-Use-latest-system-call-ABI.patch │ │ └── readme.txt │ ├── riscv64-virt │ │ └── readme.txt │ ├── sh4-r2d │ │ ├── linux.config │ │ ├── patches │ │ │ └── linux │ │ │ │ └── 0001-Revert-serial-sh-sci-increase-RX-FIFO-trigger-defaul.patch │ │ └── readme.txt │ ├── sh4eb-r2d │ │ ├── linux.config │ │ ├── patches │ │ │ └── linux │ │ │ │ └── 0001-Revert-serial-sh-sci-increase-RX-FIFO-trigger-defaul.patch │ │ └── readme.txt │ ├── sparc-ss10 │ │ ├── linux.config │ │ └── readme.txt │ ├── sparc64-sun4u │ │ ├── linux.config │ │ └── readme.txt │ ├── x86 │ │ ├── linux.config │ │ ├── post-build.sh │ │ └── readme.txt │ ├── x86_64 │ │ ├── linux.config │ │ ├── post-build.sh │ │ └── readme.txt │ └── xtensa-lx60 │ │ ├── linux-nommu.config │ │ ├── linux.config │ │ └── readme.txt ├── raspberrypi │ ├── genimage-raspberrypi.cfg │ ├── genimage-raspberrypi0.cfg │ ├── genimage-raspberrypi0w.cfg │ ├── genimage-raspberrypi2.cfg │ ├── genimage-raspberrypi3-64.cfg │ ├── genimage-raspberrypi3.cfg │ ├── genimage-raspberrypi4-64.cfg │ ├── genimage-raspberrypi4.cfg │ ├── post-build.sh │ ├── post-image.sh │ └── readme.txt ├── raspberrypi0 ├── raspberrypi0w ├── raspberrypi2 ├── raspberrypi3 ├── raspberrypi3-64 ├── raspberrypi4 ├── raspberrypi4-64 ├── roseapplepi │ ├── genimage.cfg │ ├── patches │ │ ├── linux │ │ │ ├── 0001-unbreak-xhci-trace.patch │ │ │ ├── 0002-kernel-add-support-for-gcc-5.patch │ │ │ ├── 0003-ARM-8158-1-LLVMLinux-use-static-inline-in-ARM-ftrace.patch │ │ │ ├── 0004-Fix-compile-errors-with-gcc5.patch │ │ │ └── 0005-compiler-gcc-integrate-the-various-compiler-gcc-345-.patch │ │ └── uboot │ │ │ └── 0001-compiler-.h-sync-include-linux-compiler-.h-with-Linu.patch │ ├── post-build.sh │ └── uEnv.txt ├── sheevaplug │ └── readme.txt ├── sifive │ └── hifive-unleashed │ │ ├── genimage.cfg │ │ ├── linux.config.fragment │ │ └── readme.txt ├── sinovoip │ └── m2-plus │ │ ├── boot.cmd │ │ └── genimage.cfg ├── solidrun │ ├── clearfog │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── linux.fragment │ │ ├── post-build.sh │ │ └── readme.txt │ ├── clearfog_gt_8k │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ ├── post-build-mainline.sh │ │ ├── readme.txt │ │ └── uboot-fragment.config │ ├── macchiatobin │ │ ├── extlinux.conf │ │ ├── genimage.cfg │ │ ├── linux-extras.config │ │ ├── post-build-mainline.sh │ │ ├── post-build.sh │ │ ├── readme.txt │ │ ├── uEnv-example.txt │ │ └── uboot-fragment.config │ └── mx6cubox │ │ ├── boot.scr.txt │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ ├── post-image.sh │ │ └── readme.txt ├── stmicroelectronics │ ├── stm32-post-build.sh │ ├── stm32f429-disco │ │ ├── flash.sh │ │ ├── patches │ │ │ └── linux │ │ │ │ └── 0001-ARM-stm32f249-disco-don-t-force-init-in-chosen-boota.patch │ │ └── readme.txt │ ├── stm32f469-disco │ │ ├── flash.sh │ │ ├── patches │ │ │ └── linux │ │ │ │ └── 0001-ARM-stm32f249-disco-don-t-force-init-in-chosen-boota.patch │ │ └── readme.txt │ └── stm32mp157c-dk2 │ │ ├── genimage.cfg │ │ ├── linux.config │ │ ├── overlay │ │ └── boot │ │ │ └── extlinux │ │ │ └── extlinux.conf │ │ ├── readme.txt │ │ └── uboot-fragment.config ├── synopsys │ ├── axs10x │ │ └── post-build.sh │ ├── hsdk │ │ ├── genimage.cfg │ │ ├── linux.fragment │ │ ├── readme.txt │ │ └── uboot.env.txt │ └── vdk │ │ ├── linux-vdk-aarch64-defconfig │ │ └── readme.txt ├── technexion │ ├── imx6ulpico │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac4339-sdio.txt │ ├── imx7dpico │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ ├── boot │ │ │ └── extlinux │ │ │ │ └── extlinux.conf │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac4339-sdio.txt │ ├── imx8mmpico │ │ └── readme.txt │ └── imx8mpico │ │ └── readme.txt ├── technologic │ ├── ts4900 │ │ ├── genimage.cfg │ │ ├── post-image.sh │ │ └── readme.txt │ ├── ts5500 │ │ ├── fs-overlay │ │ │ └── boot │ │ │ │ └── syslinux │ │ │ │ └── syslinux.cfg │ │ ├── linux-4.14.config │ │ └── readme.txt │ └── ts7680 │ │ ├── genimage.cfg │ │ └── readme.txt ├── toradex │ └── apalis-imx6 │ │ ├── genimage.cfg │ │ ├── post-image.sh │ │ ├── readme.txt │ │ └── uEnv.txt ├── udoo │ ├── mx6qdl │ │ ├── linux.fragment │ │ └── readme.txt │ └── neo │ │ ├── boot.scr.txt │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ ├── post-image.sh │ │ └── readme.txt ├── wandboard │ ├── boot.scr.txt │ ├── genimage.cfg │ ├── post-build.sh │ └── readme.txt ├── warp7 │ ├── readme.txt │ └── rootfs_overlay │ │ └── lib │ │ └── firmware │ │ └── brcm │ │ └── brcmfmac43430-sdio.txt ├── zynq │ ├── genimage.cfg │ ├── post-image.sh │ └── readme.txt └── zynqmp │ ├── genimage.cfg │ ├── patches │ └── uboot │ │ ├── 0001-arm64-zynqmp-zcu106-fix-SPL-MMC-booting.patch │ │ ├── 0002-arm64-zynqmp-Enable-booting-to-ATF.patch │ │ ├── 0003-arm64-zynqmp-accept-an-absolute-path-for-PMUFW_INIT_.patch │ │ └── 0004-arm-arm64-zynq-zynqmp-pass-the-PS-init-file-as-a-kco.patch │ ├── post-image.sh │ └── readme.txt ├── boot ├── Config.in ├── afboot-stm32 │ ├── Config.in │ ├── afboot-stm32.hash │ └── afboot-stm32.mk ├── arm-trusted-firmware │ ├── Config.in │ ├── arm-trusted-firmware.hash │ └── arm-trusted-firmware.mk ├── at91bootstrap │ ├── Config.in │ ├── at91bootstrap-1.16-eabi-fix.patch │ ├── at91bootstrap-1.16-gcc-4.6.x-ldscript-fix.patch │ ├── at91bootstrap-1.16-u-boot-relocation-fix.patch │ ├── at91bootstrap.hash │ └── at91bootstrap.mk ├── at91bootstrap3 │ ├── Config.in │ ├── at91bootstrap3.hash │ └── at91bootstrap3.mk ├── at91dataflashboot │ ├── Config.in │ ├── at91dataflashboot-1.05-do-not-install.patch │ ├── at91dataflashboot-1.05-eabi-fixes.patch │ ├── at91dataflashboot.hash │ └── at91dataflashboot.mk ├── barebox │ ├── Config.in │ ├── barebox-aux │ │ ├── Config.in │ │ ├── barebox-aux.hash │ │ └── barebox-aux.mk │ ├── barebox.hash │ ├── barebox.mk │ └── barebox │ │ ├── Config.in │ │ ├── barebox.hash │ │ └── barebox.mk ├── binaries-marvell │ ├── Config.in │ ├── binaries-marvell.hash │ └── binaries-marvell.mk ├── boot-wrapper-aarch64 │ ├── Config.in │ └── boot-wrapper-aarch64.mk ├── common.mk ├── grub2 │ ├── Config.in │ ├── grub.cfg │ ├── grub2.hash │ ├── grub2.mk │ └── readme.txt ├── gummiboot │ ├── 0001-Allow-building-with-newer-glibc-versions.patch │ ├── 0002-Fix-linking-for-non-host-compatible-targets.patch │ ├── Config.in │ ├── buildroot.conf │ ├── gummiboot.mk │ └── loader.conf ├── lpc32xxcdl │ ├── Config.in │ ├── lpc32xxcdl-2.11-compiler_name.patch │ ├── lpc32xxcdl-2.11-delete_redundant_files.patch │ ├── lpc32xxcdl-2.11-libnosys_gnu.patch │ ├── lpc32xxcdl-2.11-slashes.patch │ └── lpc32xxcdl.mk ├── mv-ddr-marvell │ ├── 0001-mv_ddr-mv_ddr4_training_leveling.c-uninitialized-var.patch │ ├── Config.in │ ├── mv-ddr-marvell.hash │ └── mv-ddr-marvell.mk ├── mxs-bootlets │ ├── Config.in │ ├── barebox_ivt.bd │ ├── mxs-bootlets.hash │ └── mxs-bootlets.mk ├── opensbi │ ├── 0001-Makefile-Don-t-specify-mabi-or-march.patch │ ├── Config.in │ ├── opensbi.hash │ └── opensbi.mk ├── optee-os │ ├── Config.in │ ├── optee-os.hash │ └── optee-os.mk ├── s500-bootloader │ ├── Config.in │ ├── s500-bootloader.hash │ └── s500-bootloader.mk ├── shim │ ├── Config.in │ ├── shim.hash │ └── shim.mk ├── syslinux │ ├── 0001-bios-Fix-alignment-change-with-gcc-5.patch │ ├── 0002-Disable-PIE-to-avoid-FTBFS-on-amd64.patch │ ├── 0003-memdisk-Force-ld-output-format-to-32-bits.patch │ ├── 0004-utils-Use-the-host-toolchain-to-build.patch │ ├── 0005-lzo-Use-the-host-toolchain-for-prepcore.patch │ ├── 0006-The-VPrint-definition-is-now-part-of-the-exports-of-.patch │ ├── 0007-Update-the-longjump-calls-to-fit-the-new-declaration.patch │ ├── 0008-efi-wrapper-build-it-with-the-host-toolchain.patch │ ├── 0009-bios-Don-t-try-to-guess-the-sections-alignment.patch │ ├── 0010-core-Clean-up-the-i386-bios-build.patch │ ├── 0011-extlinux-Use-the-host-toolchain-to-build.patch │ ├── 0012-pull-in-sys-sysmacros-h-for-major-minor-makedev.patch │ ├── 0013-Fix-build-with-gnu-efi-version-3.0.9.patch │ ├── 0014-Fix-build-with-binutils-note-gnu-property-section.patch │ ├── 0015-efi-main.c-include-efisetjmp.h.patch │ ├── Config.in │ ├── syslinux.hash │ └── syslinux.mk ├── uboot │ ├── 2015.07 │ │ └── 0001-Revert-arch-Make-board-selection-choices-optional.patch │ ├── 2016.07 │ │ └── 0001-arc-Use-mcpu-XXX-instead-of-obsolete-marcXXX.patch │ ├── 2016.09.01 │ │ └── 0001-arc-Use-mcpu-XXX-instead-of-obsolete-marcXXX.patch │ ├── Config.in │ ├── uboot.hash │ └── uboot.mk └── vexpress-firmware │ ├── Config.in │ ├── vexpress-firmware.hash │ └── vexpress-firmware.mk ├── configs ├── aarch64_efi_defconfig ├── acmesystems_aria_g25_128mb_defconfig ├── acmesystems_aria_g25_256mb_defconfig ├── acmesystems_arietta_g25_128mb_defconfig ├── acmesystems_arietta_g25_256mb_defconfig ├── amarula_a64_relic_defconfig ├── amarula_vyasa_rk3288_defconfig ├── andes_ae3xx_defconfig ├── arcturus_ucls1012a_defconfig ├── arcturus_ucp1020_defconfig ├── arm64_petitboot_debug_busybox_config ├── arm64_petitboot_debug_defconfig ├── arm64_petitboot_defconfig ├── arm_foundationv8_defconfig ├── arm_juno_defconfig ├── armadeus_apf27_defconfig ├── armadeus_apf28_defconfig ├── armadeus_apf51_defconfig ├── asus_tinker_rk3288_defconfig ├── at91sam9260eknf_defconfig ├── at91sam9g20dfc_defconfig ├── at91sam9g45m10ek_defconfig ├── at91sam9rlek_defconfig ├── at91sam9x5ek_defconfig ├── at91sam9x5ek_dev_defconfig ├── at91sam9x5ek_mmc_defconfig ├── at91sam9x5ek_mmc_dev_defconfig ├── atmel_sama5d27_som1_ek_mmc_dev_defconfig ├── atmel_sama5d2_xplained_mmc_defconfig ├── atmel_sama5d2_xplained_mmc_dev_defconfig ├── atmel_sama5d3_xplained_defconfig ├── atmel_sama5d3_xplained_dev_defconfig ├── atmel_sama5d3_xplained_mmc_defconfig ├── atmel_sama5d3_xplained_mmc_dev_defconfig ├── atmel_sama5d3xek_defconfig ├── atmel_sama5d4_xplained_defconfig ├── atmel_sama5d4_xplained_dev_defconfig ├── atmel_sama5d4_xplained_mmc_defconfig ├── atmel_sama5d4_xplained_mmc_dev_defconfig ├── bananapi_m1_defconfig ├── bananapi_m2_plus_defconfig ├── bananapi_m2_ultra_defconfig ├── bananapi_m64_defconfig ├── bananapro_defconfig ├── beagleboardx15_defconfig ├── beaglebone_defconfig ├── beaglebone_qt5_defconfig ├── beagleboneai_defconfig ├── beelink_gs1_defconfig ├── chromebook_snow_defconfig ├── ci20_defconfig ├── csky_gx6605s_defconfig ├── cubieboard2_defconfig ├── engicam_imx6qdl_icore_defconfig ├── engicam_imx6qdl_icore_qt5_defconfig ├── engicam_imx6qdl_icore_rqs_defconfig ├── engicam_imx6ul_geam_defconfig ├── engicam_imx6ul_isiot_defconfig ├── freescale_imx28evk_defconfig ├── freescale_imx6dlsabreauto_defconfig ├── freescale_imx6dlsabresd_defconfig ├── freescale_imx6qsabreauto_defconfig ├── freescale_imx6qsabresd_defconfig ├── freescale_imx6sxsabresd_defconfig ├── freescale_imx7dsabresd_defconfig ├── freescale_imx8mmevk_defconfig ├── freescale_imx8mqevk_defconfig ├── freescale_imx8qxpmek_defconfig ├── freescale_p1025twr_defconfig ├── freescale_t1040d4rdb_defconfig ├── freescale_t2080_qds_rdb_defconfig ├── friendlyarm_nanopi_a64_defconfig ├── friendlyarm_nanopi_neo2_defconfig ├── friendlyarm_nanopi_neo_plus2_defconfig ├── galileo_defconfig ├── grinn_chiliboard_defconfig ├── grinn_liteboard_defconfig ├── hifive_unleashed_defconfig ├── imx23evk_defconfig ├── imx6-sabreauto_defconfig ├── imx6-sabresd_defconfig ├── imx6-sabresd_qt5_defconfig ├── imx6slevk_defconfig ├── imx6sx-sdb_defconfig ├── imx6ulevk_defconfig ├── imx6ulpico_defconfig ├── imx7d-sdb_defconfig ├── imx7dpico_defconfig ├── imx8mmpico_defconfig ├── imx8mpico_defconfig ├── lafrite_defconfig ├── lego_ev3_defconfig ├── licheepi_zero_defconfig ├── linksprite_pcduino_defconfig ├── minnowboard_max-graphical_defconfig ├── minnowboard_max_defconfig ├── mx25pdk_defconfig ├── mx51evk_defconfig ├── mx53loco_defconfig ├── mx6cubox_defconfig ├── mx6sx_udoo_neo_defconfig ├── mx6udoo_defconfig ├── nanopi_m1_defconfig ├── nanopi_m1_plus_defconfig ├── nanopi_neo_defconfig ├── nexbox_a95x_defconfig ├── nitrogen6sx_defconfig ├── nitrogen6x_defconfig ├── nitrogen7_defconfig ├── nitrogen8m_defconfig ├── odroidxu4_defconfig ├── olimex_a10_olinuxino_lime_defconfig ├── olimex_a13_olinuxino_defconfig ├── olimex_a20_olinuxino_lime2_defconfig ├── olimex_a20_olinuxino_lime_defconfig ├── olimex_a20_olinuxino_micro_defconfig ├── olimex_a33_olinuxino_defconfig ├── olimex_a64_olinuxino_defconfig ├── olimex_imx233_olinuxino_defconfig ├── openblocks_a6_defconfig ├── orangepi_lite2_defconfig ├── orangepi_lite_defconfig ├── orangepi_one_defconfig ├── orangepi_one_plus_defconfig ├── orangepi_pc2_defconfig ├── orangepi_pc_defconfig ├── orangepi_pc_plus_defconfig ├── orangepi_plus_defconfig ├── orangepi_prime_defconfig ├── orangepi_r1_defconfig ├── orangepi_win_defconfig ├── orangepi_zero_defconfig ├── orangepi_zero_plus2_defconfig ├── pandaboard_defconfig ├── pc_x86_64_bios_defconfig ├── pc_x86_64_efi_defconfig ├── pine64_defconfig ├── pine64_sopine_defconfig ├── ps3_petitboot_defconfig ├── qemu_aarch64_virt_defconfig ├── qemu_arm_versatile_defconfig ├── qemu_arm_versatile_nommu_defconfig ├── qemu_arm_vexpress_defconfig ├── qemu_arm_vexpress_tz_defconfig ├── qemu_csky610_virt_defconfig ├── qemu_csky807_virt_defconfig ├── qemu_csky810_virt_defconfig ├── qemu_csky860_virt_defconfig ├── qemu_m68k_mcf5208_defconfig ├── qemu_m68k_q800_defconfig ├── qemu_microblazebe_mmu_defconfig ├── qemu_microblazeel_mmu_defconfig ├── qemu_mips32r2_malta_defconfig ├── qemu_mips32r2el_malta_defconfig ├── qemu_mips32r6_malta_defconfig ├── qemu_mips32r6el_malta_defconfig ├── qemu_mips64_malta_defconfig ├── qemu_mips64el_malta_defconfig ├── qemu_mips64r6_malta_defconfig ├── qemu_mips64r6el_malta_defconfig ├── qemu_nios2_10m50_defconfig ├── qemu_or1k_defconfig ├── qemu_ppc64_e5500_defconfig ├── qemu_ppc64_pseries_defconfig ├── qemu_ppc64le_pseries_defconfig ├── qemu_ppc_g3beige_defconfig ├── qemu_ppc_mac99_defconfig ├── qemu_ppc_mpc8544ds_defconfig ├── qemu_ppc_virtex_ml507_defconfig ├── qemu_riscv32_virt_defconfig ├── qemu_riscv64_virt_defconfig ├── qemu_sh4_r2d_defconfig ├── qemu_sh4eb_r2d_defconfig ├── qemu_sparc64_sun4u_defconfig ├── qemu_sparc_ss10_defconfig ├── qemu_x86_64_defconfig ├── qemu_x86_defconfig ├── qemu_xtensa_lx60_defconfig ├── qemu_xtensa_lx60_nommu_defconfig ├── raspberrypi0_defconfig ├── raspberrypi0w_defconfig ├── raspberrypi2_defconfig ├── raspberrypi3_64_defconfig ├── raspberrypi3_defconfig ├── raspberrypi3_qt5we_defconfig ├── raspberrypi4_64_defconfig ├── raspberrypi4_defconfig ├── raspberrypi_defconfig ├── riotboard_defconfig ├── rock64_defconfig ├── roseapplepi_defconfig ├── s6lx9_microboard_defconfig ├── sheevaplug_defconfig ├── snps_aarch64_vdk_defconfig ├── snps_arc700_axs101_defconfig ├── snps_archs38_axs103_defconfig ├── snps_archs38_haps_defconfig ├── snps_archs38_hsdk_defconfig ├── snps_archs38_vdk_defconfig ├── socrates_cyclone5_defconfig ├── solidrun_clearfog_defconfig ├── solidrun_clearfog_gt_8k_defconfig ├── solidrun_macchiatobin_mainline_defconfig ├── solidrun_macchiatobin_marvell_defconfig ├── stm32f429_disco_defconfig ├── stm32f469_disco_defconfig ├── stm32mp157c_dk2_defconfig ├── toradex_apalis_imx6_defconfig ├── ts4900_defconfig ├── ts5500_defconfig ├── ts7680_defconfig ├── wandboard_defconfig ├── warp7_defconfig ├── warpboard_defconfig ├── zynq_microzed_defconfig ├── zynq_zc706_defconfig ├── zynq_zed_defconfig └── zynqmp_zcu106_defconfig ├── docs ├── conf │ └── asciidoc-text.conf ├── images ├── manual │ ├── adding-board-support.txt │ ├── adding-packages-asciidoc.txt │ ├── adding-packages-autotools.txt │ ├── adding-packages-cargo.txt │ ├── adding-packages-cmake.txt │ ├── adding-packages-conclusion.txt │ ├── adding-packages-directory.txt │ ├── adding-packages-generic.txt │ ├── adding-packages-gettext.txt │ ├── adding-packages-golang.txt │ ├── adding-packages-hooks.txt │ ├── adding-packages-kconfig.txt │ ├── adding-packages-kernel-module.txt │ ├── adding-packages-linux-kernel-spec-infra.txt │ ├── adding-packages-luarocks.txt │ ├── adding-packages-meson.txt │ ├── adding-packages-perl.txt │ ├── adding-packages-python.txt │ ├── adding-packages-rebar.txt │ ├── adding-packages-tips.txt │ ├── adding-packages-virtual.txt │ ├── adding-packages-waf.txt │ ├── adding-packages.txt │ ├── advanced.txt │ ├── appendix.txt │ ├── beyond-buildroot.txt │ ├── ccache-support.txt │ ├── common-usage.txt │ ├── configure-other-components.txt │ ├── configure.txt │ ├── contribute.txt │ ├── customize-configuration.txt │ ├── customize-device-permission-tables.txt │ ├── customize-directory-structure.txt │ ├── customize-outside-br.txt │ ├── customize-packages.txt │ ├── customize-patches.txt │ ├── customize-post-image.txt │ ├── customize-quick-guide.txt │ ├── customize-rootfs.txt │ ├── customize-users-tables.txt │ ├── customize.txt │ ├── debugging-buildroot.txt │ ├── developers.txt │ ├── download-infra.txt │ ├── download-location.txt │ ├── eclipse-integration.txt │ ├── faq-troubleshooting.txt │ ├── getting.txt │ ├── how-buildroot-works.txt │ ├── introduction.txt │ ├── known-issues.txt │ ├── legal-notice.txt │ ├── make-tips.txt │ ├── makedev-syntax.txt │ ├── makeusers-syntax.txt │ ├── manual.mk │ ├── manual.txt │ ├── migrating.txt │ ├── package-make-target.txt │ ├── patch-policy.txt │ ├── prerequisite.txt │ ├── quickstart.txt │ ├── rebuilding-packages.txt │ ├── resources.txt │ ├── using-buildroot-debugger.txt │ ├── using-buildroot-development.txt │ ├── using-buildroot-toolchain.txt │ └── writing-rules.txt └── website │ ├── .htaccess │ ├── association.html │ ├── contribute.html │ ├── copyright.txt │ ├── css │ ├── main.css │ └── timeline.css │ ├── docs.html │ ├── download.html │ ├── favicon.ico │ ├── favicon.png │ ├── fonts │ └── glyphicons-halflings-regular.woff │ ├── footer.html │ ├── header.html │ ├── images │ ├── amarula-solutions-logo.png │ ├── bootlin-logo.png │ ├── boundary-devices-logo.png │ ├── browser.png │ ├── bug-buddy.png │ ├── buildroot-slides.png │ ├── calao-logo.png │ ├── circuitco-logo.png │ ├── clippy.svg │ ├── email.png │ ├── fluendo-logo.png │ ├── free-electrons-logo.png │ ├── gift.png │ ├── github_hash_mongrel2.png │ ├── google-logo.png │ ├── hammer.png │ ├── imgtec-logo.png │ ├── irc.png │ ├── logilin-logo.png │ ├── logo.png │ ├── logo.xcf │ ├── logo_small.png │ ├── menuconfig.png │ ├── mind-logo.png │ ├── nconfig.png │ ├── package.png │ ├── pdf-icon.png │ ├── rockwell-collins-logo.png │ ├── scaleway-logo.png │ ├── smile-logo.png │ ├── synopsys-logo.png │ ├── text.png │ ├── tkos-logo.png │ ├── tux-flat.png │ ├── xconfig.png │ ├── zillabit-logo.png │ └── zip.png │ ├── index.html │ ├── js │ └── buildroot.js │ ├── news.html │ ├── robots.txt │ ├── sponsors.html │ └── support.html ├── fs ├── Config.in ├── axfs │ ├── Config.in │ └── axfs.mk ├── btrfs │ ├── Config.in │ └── btrfs.mk ├── cloop │ ├── Config.in │ └── cloop.mk ├── common.mk ├── cpio │ ├── Config.in │ ├── cpio.mk │ └── init ├── cramfs │ ├── Config.in │ └── cramfs.mk ├── ext2 │ ├── Config.in │ └── ext2.mk ├── f2fs │ ├── Config.in │ └── f2fs.mk ├── initramfs │ ├── Config.in │ └── initramfs.mk ├── iso9660 │ ├── Config.in │ ├── grub.cfg │ ├── iso9660.mk │ └── isolinux.cfg ├── jffs2 │ ├── Config.in │ └── jffs2.mk ├── romfs │ ├── Config.in │ └── romfs.mk ├── squashfs │ ├── Config.in │ └── squashfs.mk ├── tar │ ├── Config.in │ └── tar.mk ├── ubi │ ├── Config.in │ ├── ubi.mk │ └── ubinize.cfg ├── ubifs │ ├── Config.in │ └── ubifs.mk └── yaffs2 │ ├── Config.in │ └── yaffs2.mk ├── linux ├── 0001-timeconst.pl-Eliminate-Perl-warning.patch.conditional ├── Config.ext.in ├── Config.in ├── linux-ext-aufs.mk ├── linux-ext-ev3dev-linux-drivers.mk ├── linux-ext-fbtft.mk ├── linux-ext-rtai.mk ├── linux-ext-xenomai.mk ├── linux.hash └── linux.mk ├── package ├── 18xx-ti-utils │ ├── 18xx-ti-utils.hash │ ├── 18xx-ti-utils.mk │ └── Config.in ├── 4th │ ├── 0001-avoid-regen-during-install.patch │ ├── 4th.hash │ ├── 4th.mk │ └── Config.in ├── Config.in ├── Config.in.host ├── Makefile.in ├── a10disp │ ├── Config.in │ ├── a10disp.hash │ └── a10disp.mk ├── abootimg │ ├── Config.in │ ├── abootimg.hash │ └── abootimg.mk ├── acl │ ├── 0001-Build-with-old-GCC-versions.patch │ ├── Config.in │ ├── acl.hash │ └── acl.mk ├── acpica │ ├── 0001-build-do-not-use-Werror.patch │ ├── Config.in │ ├── acpica.hash │ └── acpica.mk ├── acpid │ ├── 0001-dont-use-isfdtype.patch │ ├── 0002-add-missing-defines.patch │ ├── Config.in │ ├── S02acpid │ ├── acpid.hash │ ├── acpid.mk │ └── acpid.service ├── acpitool │ ├── Config.in │ ├── acpitool.hash │ └── acpitool.mk ├── acsccid │ ├── Config.in │ ├── acsccid.hash │ └── acsccid.mk ├── adwaita-icon-theme │ ├── Config.in │ ├── adwaita-icon-theme.hash │ └── adwaita-icon-theme.mk ├── aer-inject │ ├── Config.in │ ├── aer-inject.hash │ └── aer-inject.mk ├── aespipe │ ├── Config.in │ ├── Config.in.host │ ├── aespipe.hash │ └── aespipe.mk ├── agentpp │ ├── Config.in │ ├── agentpp.hash │ └── agentpp.mk ├── aircrack-ng │ ├── Config.in │ ├── aircrack-ng.hash │ └── aircrack-ng.mk ├── alsa-lib │ ├── 0001-Don-t-use-fork-on-noMMU-platforms.patch │ ├── 0002-src-ucm-main.c-fix-build-without-mixer.patch │ ├── Config.in │ ├── alsa-lib.hash │ └── alsa-lib.mk ├── alsa-utils │ ├── Config.in │ ├── alsa-utils.hash │ └── alsa-utils.mk ├── alsamixergui │ ├── 0001-misc-fixes.patch │ ├── 0002-configure-fix-detection-of-fltk-libs.patch │ ├── Config.in │ ├── alsamixergui.hash │ └── alsamixergui.mk ├── alure │ ├── Config.in │ ├── alure.hash │ └── alure.mk ├── am335x-pru-package │ ├── 0001-install-does-not-build.patch │ ├── Config.in │ ├── am335x-pru-package.hash │ └── am335x-pru-package.mk ├── am33x-cm3 │ ├── 0001-fix-makefile.patch │ ├── 0002-Makefile-unconditionally-disable-SSP.patch │ ├── 0003-Makefile-unconditionally-disable-PIE.patch │ ├── Config.in │ ├── S93-am335x-pm-firmware-load │ ├── am33x-cm3.hash │ └── am33x-cm3.mk ├── amd-catalyst │ ├── 0001-Add-support-for-Linux-4.0.patch │ ├── 0002-Add-support-for-Linux-4.1.patch │ ├── 0003-Add-support-for-Linux-4.2.patch │ ├── 0004-Use-fpregs_active-instead-of-has_fpu.patch │ ├── 0005-Use-a-local-copy-of-copy_xregs_to_kernel.patch │ ├── 0006-Add-support-for-Linux-4.4.patch │ ├── 0007-remove-gpl-symbols.patch │ ├── 20-fglrx.conf │ ├── Config.in │ ├── amd-catalyst.hash │ ├── amd-catalyst.mk │ └── gl.pc ├── android-tools │ ├── 0001-Fix-makefiles-for-out-of-tree-build.patch │ ├── 0002-Fix-adbd-for-non-Ubuntu-systems.patch │ ├── 0003-Fix-build-issue-with-uclibc.patch │ ├── 0004-Fix-build-issue-with-musl.patch │ ├── 0005-Use-pkgconf-to-get-libs-deps.patch │ ├── 0006-fix-big-endian-build.patch │ ├── 0007-include-cdefs-h-when-needed.patch │ ├── 0008-Include-sysmacros.h-to-compile-with-glibc-2.28.patch │ ├── 0009-Fix-makefiles-for-out-of-tree-ext4_utils-build.patch │ ├── 0010-adb-added-patch-for-openssl-1.1.0-compatibility.patch │ ├── Config.in │ ├── Config.in.host │ ├── android-tools.hash │ └── android-tools.mk ├── angular-websocket │ ├── Config.in │ ├── angular-websocket.hash │ └── angular-websocket.mk ├── angularjs │ ├── Config.in │ ├── angularjs.hash │ └── angularjs.mk ├── aoetools │ ├── 0001-Change-shell-script-interpreter-from-bin-bash-to-bin.patch │ ├── Config.in │ ├── aoetools.hash │ └── aoetools.mk ├── apache │ ├── 0001-cross-compile.patch │ ├── 0002-nios2_is_not_os2.patch │ ├── 0003-server-Makefile.in-handle-separate-APR_INCLUDE_DIR-A.patch │ ├── Config.in │ ├── S50apache │ ├── apache.hash │ ├── apache.mk │ └── apache.service ├── apitrace │ ├── 0001-dlsym-Fix-build-under-uClibc.patch │ ├── 0002-Support-libc-that-don-t-have-RTLD_DEEPBIND.patch │ ├── Config.in │ ├── apitrace.hash │ └── apitrace.mk ├── apr-util │ ├── 0001-remove-checkapr.patch │ ├── Config.in │ ├── apr-util.hash │ └── apr-util.mk ├── apr │ ├── 0001-cross-compile.patch │ ├── 0002-sys-param-h.patch │ ├── Config.in │ ├── apr.hash │ └── apr.mk ├── argp-standalone │ ├── 0001-throw-in-funcdef.patch │ ├── 0002-isprint.patch │ ├── 0003-fix_build_with_c99_compilers.patch │ ├── Config.in │ ├── argp-standalone.hash │ └── argp-standalone.mk ├── argparse │ ├── Config.in │ ├── argparse.hash │ └── argparse.mk ├── argus │ ├── Config.in │ ├── argus.hash │ └── argus.mk ├── armadillo │ ├── Config.in │ ├── armadillo.hash │ └── armadillo.mk ├── armbian-firmware │ ├── Config.in │ ├── armbian-firmware.hash │ └── armbian-firmware.mk ├── arp-scan │ ├── Config.in │ ├── arp-scan.hash │ └── arp-scan.mk ├── arptables │ ├── 0001-Fix-musl-build-issue.patch │ ├── Config.in │ ├── arptables.hash │ └── arptables.mk ├── ascii-invaders │ ├── Config.in │ ├── ascii-invaders.hash │ └── ascii-invaders.mk ├── assimp │ ├── 0001-Fix-FBXConverter-use-proper-64-bit-constant.patch │ ├── Config.in │ ├── assimp.hash │ └── assimp.mk ├── asterisk │ ├── 0001-sounds-do-not-download-and-check-sha1s.patch │ ├── 0002-configure-fix-detection-of-libcrypt.patch │ ├── 0003-build-ensure-target-directory-for-modules-exists.patch │ ├── 0004-install-samples-need-the-data-files.patch │ ├── 0005-configure-fix-detection-of-re-entrant-resolver-funct.patch │ ├── Config.in │ ├── asterisk.hash │ └── asterisk.mk ├── at-spi2-atk │ ├── Config.in │ ├── at-spi2-atk.hash │ └── at-spi2-atk.mk ├── at-spi2-core │ ├── 0001-Fix-meson.build-for-meson-0.50.0.patch │ ├── Config.in │ ├── at-spi2-core.hash │ └── at-spi2-core.mk ├── at │ ├── 0001-Makefile.in-replace-IROOT-by-DESTDIR.patch │ ├── 0002-Makefile.in-make-install-fix.patch │ ├── 0003-getloadavg.c-fix.patch │ ├── 0004-Makefile-fix-parallel-build-failure.patch │ ├── Config.in │ ├── S99at │ ├── at.hash │ └── at.mk ├── atest │ ├── Config.in │ ├── atest.hash │ └── atest.mk ├── atf │ ├── Config.in │ ├── atf.hash │ └── atf.mk ├── atftp │ ├── 0001-Makefile.am-link-against-libpthread-for-atftp.patch │ ├── 0002-argz.h-fix-musl-compile-add-missing-defines.patch │ ├── 0003-tftp.h-tftpd.h-fix-musl-compile-missing-include.patch │ ├── Config.in │ ├── atftp.hash │ └── atftp.mk ├── atk │ ├── Config.in │ ├── atk.hash │ └── atk.mk ├── atkmm │ ├── Config.in │ ├── atkmm.hash │ └── atkmm.mk ├── atop │ ├── Config.in │ ├── atop.hash │ └── atop.mk ├── attr │ ├── 0001-build-with-older-GCCs.patch │ ├── 0002-Switch-back-to-syscall.patch │ ├── Config.in │ ├── attr.hash │ └── attr.mk ├── aubio │ ├── Config.in │ ├── aubio.hash │ └── aubio.mk ├── audiofile │ ├── 0001-Fix-pkg-config-for-static-linking.patch │ ├── 0002-cast-to-unsigned-gcc6.patch │ ├── 0003-Always-check-the-number-of-coefficients.patch │ ├── 0004-clamp-index-values-to-fix-index-overflow-in-IMA.cpp.patch │ ├── 0005-Check-for-multiplication-overflow-in-sfconvert.patch │ ├── 0006-Actually-fail-when-error-occurs-in-parseFormat.patch │ ├── 0007-Check-for-multiplication-overflow-in-MSADPCM-decodeS.patch │ ├── 0008-CVE-2015-7747.patch │ ├── 0009-Fix-static-linking-with-libsndfile.patch │ ├── Config.in │ ├── audiofile.hash │ └── audiofile.mk ├── audit │ ├── 0001-Fix-audispd-path-in-auditd.conf.patch │ ├── 0002-Add-substitue-functions-for-strndupa-rawmemchr.patch │ ├── Config.in │ ├── S02auditd │ ├── audit.hash │ ├── audit.mk │ └── audit_tmpfiles.conf ├── aufs-util │ ├── 0001-remove-user-settings.patch │ ├── 0002-no-check-ver.patch │ ├── 0003-no-strip-lib.patch │ ├── Config.in │ └── aufs-util.mk ├── aufs │ ├── Config.in │ └── aufs.mk ├── augeas │ ├── Config.in │ ├── augeas.hash │ └── augeas.mk ├── aumix │ ├── 0001-fix-incorrect-makefile-am.patch │ ├── Config.in │ ├── aumix.hash │ └── aumix.mk ├── autoconf-archive │ ├── autoconf-archive.hash │ └── autoconf-archive.mk ├── autoconf │ ├── 0001-dont-add-dirty-to-version.patch │ ├── autoconf.hash │ └── autoconf.mk ├── autofs │ ├── 0001-include-linux-nfs.h-directly-in-rpc_sub.patch │ ├── Config.in │ ├── autofs.hash │ └── autofs.mk ├── automake │ ├── 0001-noman.patch │ ├── automake.hash │ ├── automake.mk │ └── gtk-doc.m4 ├── autossh │ ├── Config.in │ ├── autossh.hash │ └── autossh.mk ├── avahi │ ├── 0001-Drop-legacy-unicast-queries-from-address-not-on-loca.patch │ ├── Config.in │ ├── S05avahi-setup.sh │ ├── S50avahi-daemon │ ├── avahi.hash │ ├── avahi.mk │ ├── avahi_sysusers.conf │ └── avahi_tmpfiles.conf ├── avrdude │ ├── Config.in │ ├── avrdude.hash │ └── avrdude.mk ├── avro-c │ ├── 0001-Allow-avro-C-to-be-built-on-musl-based-systems.patch │ ├── 0002-CMakeLists.txt-fix-build-without-C.patch │ ├── Config.in │ ├── avro-c.hash │ └── avro-c.mk ├── axel │ ├── Config.in │ ├── axel.hash │ └── axel.mk ├── axfsutils │ ├── axfsutils.hash │ └── axfsutils.mk ├── azmq │ ├── 0001-Conditionally-disable-test-and-doc-builds.patch │ ├── Config.in │ ├── azmq.hash │ └── azmq.mk ├── azure-iot-sdk-c │ ├── Config.in │ └── azure-iot-sdk-c.mk ├── b43-firmware │ ├── Config.in │ ├── b43-firmware.hash │ └── b43-firmware.mk ├── b43-fwcutter │ ├── b43-fwcutter.hash │ └── b43-fwcutter.mk ├── babeld │ ├── Config.in │ ├── S50babeld │ ├── babeld.hash │ ├── babeld.mk │ └── babeld.service ├── bandwidthd │ ├── Config.in │ ├── bandwidthd.hash │ ├── bandwidthd.mk │ └── bandwidthd.service ├── bash-completion │ ├── Config.in │ ├── bash-completion.hash │ └── bash-completion.mk ├── bash │ ├── 0001-bash50-001.patch │ ├── 0002-bash50-002.patch │ ├── 0003-bash50-003.patch │ ├── 0004-bash50-004.patch │ ├── 0005-bash50-005.patch │ ├── 0006-bash50-006.patch │ ├── 0007-bash50-007.patch │ ├── 0008-bash50-008.patch │ ├── 0009-bash50-009.patch │ ├── 0010-bash50-010.patch │ ├── 0011-bash50-011.patch │ ├── 0012-bash50-012.patch │ ├── 0013-bash50-013.patch │ ├── 0014-bash50-014.patch │ ├── 0015-bash50-015.patch │ ├── 0016-bash50-016.patch │ ├── 0017-input.h-add-missing-include-on-stdio.h.patch │ ├── 0018-locale.c-fix-build-without-wchar.patch │ ├── Config.in │ ├── bash.hash │ └── bash.mk ├── batctl │ ├── Config.in │ ├── batctl.hash │ └── batctl.mk ├── batman-adv │ ├── Config.in │ ├── batman-adv.hash │ └── batman-adv.mk ├── bats-core │ ├── Config.in │ ├── bats-core.hash │ └── bats-core.mk ├── bayer2rgb-neon │ ├── Config.in │ ├── bayer2rgb-neon.hash │ └── bayer2rgb-neon.mk ├── bc │ ├── 0001-bc-use-MAKEINFO-variable-for-docs.patch │ ├── 0002-notice-read-and-write-errors-on-input-and-output.patch │ ├── 0003-dc-fix-exit-code-of-q-command.patch │ ├── 0004-no-gen-libmath.patch │ ├── Config.in │ ├── bc.hash │ └── bc.mk ├── bcache-tools │ ├── 0001-Don-t-inline-crc64-for-gcc-5-compatability.patch │ ├── Config.in │ ├── bcache-tools.hash │ └── bcache-tools.mk ├── bcg729 │ ├── Config.in │ ├── bcg729.hash │ └── bcg729.mk ├── bcm2835 │ ├── Config.in │ ├── bcm2835.hash │ └── bcm2835.mk ├── bctoolbox │ ├── 0001-Fix-Libs.private-flags-for-mbedtls.patch │ ├── Config.in │ ├── bctoolbox.hash │ └── bctoolbox.mk ├── bcusdk │ ├── 0001-fd_set-requires-inclusion-of-sys-select.h.patch │ ├── 0002-eibd-fix-endless-recursion-when-using-USB-backends.patch │ ├── Config.in │ ├── bcusdk.hash │ └── bcusdk.mk ├── bdwgc │ ├── Config.in │ ├── bdwgc.hash │ └── bdwgc.mk ├── beecrypt │ ├── 0001-cppglue.cxx-cplusplus-only.patch │ ├── 0002-build-system.patch │ ├── 0003-don-t-check-for-cplusplus-compiler.patch │ ├── Config.in │ ├── beecrypt.hash │ └── beecrypt.mk ├── bellagio │ ├── 0001-drop-werror.patch │ ├── 0002-dynamicloader-linking.patch │ ├── 0003-parallel-build.patch │ ├── 0004-segfault-on-removeFromWaitResource.patch │ ├── 0005-fix-doc-installation-path.patch │ ├── Config.in │ ├── bellagio.hash │ └── bellagio.mk ├── benejson │ ├── 0001-c-std.patch │ ├── 0002-Use-print-as-a-function-for-Py3-compatibility.patch │ ├── Config.in │ ├── benejson.hash │ └── benejson.mk ├── berkeleydb │ ├── 0001-cwd-db_config.patch │ ├── 0002-atomic_compare_exchange.patch │ ├── Config.in │ ├── berkeleydb.hash │ └── berkeleydb.mk ├── bind │ ├── 0001-cross.patch │ ├── Config.in │ ├── S81named │ ├── bind.hash │ ├── bind.mk │ └── named.service ├── binutils │ ├── 2.31.1 │ │ ├── 0001-sh-conf.patch │ │ ├── 0005-poison-system-directories.patch │ │ ├── 0006-Refactored-location-where-GOT-information-is-collect.patch │ │ ├── 0007-Improved-robustness.-Return-FALSE-in-case-of-NULL-po.patch │ │ ├── 0008-Make-sure-global-symbol-is-not-an-indirect-or-warnin.patch │ │ ├── 0009-PLT-information-was-still-being-generated-when-symbo.patch │ │ ├── 0010-xtensa-fix-relaxation-of-undefined-weak-references-i.patch │ │ ├── 0011-xtensa-move-dynamic-relocations-sections-consistency.patch │ │ ├── 0012-x86-Add-a-GNU_PROPERTY_X86_ISA_1_USED-note-if-needed.patch │ │ ├── 0013-x86-Properly-merge-GNU_PROPERTY_X86_ISA_1_USED.patch │ │ ├── 0014-x86-Properly-add-X86_ISA_1_NEEDED-property.patch │ │ ├── 0015-bfd-xtensa-fix-shrink_dynamic_reloc_sections-for-exp.patch │ │ ├── 0016-gas-use-literals-const16-for-xtensa-loop-relaxation.patch │ │ ├── 0017-xtensa-gas-put-.literal_position-at-section-start.patch │ │ └── 0018-bfd-xtensa-fix-PR-ld-25630.patch │ ├── 2.32 │ │ ├── 0001-sh-conf.patch │ │ ├── 0002-poison-system-directories.patch │ │ ├── 0003-bfd-xtensa-fix-shrink_dynamic_reloc_sections-for-exp.patch │ │ ├── 0004-gas-use-literals-const16-for-xtensa-loop-relaxation.patch │ │ ├── 0005-xtensa-gas-put-.literal_position-at-section-start.patch │ │ ├── 0006-or1k-Fix-incorrect-value-in-PLT-GOT-entries-causing-.patch │ │ └── 0007-bfd-xtensa-fix-PR-ld-25630.patch │ ├── 2.33.1 │ │ ├── 0001-sh-conf.patch │ │ ├── 0002-poison-system-directories.patch │ │ ├── 0003-Revert-PR24311-FAIL-S-records-with-constructors.patch │ │ └── 0004-bfd-xtensa-fix-PR-ld-25630.patch │ ├── Config.in │ ├── Config.in.host │ ├── arc-2019.09-release │ │ └── 0001-poison-system-directories.patch │ ├── binutils.hash │ └── binutils.mk ├── biosdevname │ ├── Config.in │ ├── biosdevname.hash │ └── biosdevname.mk ├── bird │ ├── 0001-Nest-Fix-build-without-protocols.patch │ ├── Config.in │ ├── bird.hash │ └── bird.mk ├── bison │ ├── bison.hash │ └── bison.mk ├── bitcoin │ ├── Config.in │ ├── bitcoin.hash │ └── bitcoin.mk ├── bitstream-vera │ ├── Config.in │ ├── bitstream-vera.hash │ └── bitstream-vera.mk ├── bitstream │ ├── Config.in │ ├── bitstream.hash │ └── bitstream.mk ├── blktrace │ ├── 0001-btt-make-device-devno-use-PATH_MAX-to-avoid-overflow.patch │ ├── Config.in │ ├── blktrace.hash │ └── blktrace.mk ├── bluez-alsa │ ├── Config.in │ ├── bluez-alsa.hash │ └── bluez-alsa.mk ├── bluez-tools │ ├── Config.in │ ├── bluez-tools.hash │ └── bluez-tools.mk ├── bluez5_utils-headers │ ├── Config.in │ ├── bluez5_utils-headers.hash │ └── bluez5_utils-headers.mk ├── bluez5_utils │ ├── Config.in │ ├── bluez5_utils.hash │ └── bluez5_utils.mk ├── bmon │ ├── Config.in │ ├── bmon.hash │ └── bmon.mk ├── boa │ ├── 0001-use-name-max.patch │ ├── Config.in │ ├── boa.conf │ ├── boa.hash │ ├── boa.mk │ └── mime.types ├── boinc │ ├── Config.in │ ├── S99boinc-client │ ├── boinc.hash │ └── boinc.mk ├── bonnie │ ├── Config.in │ ├── bonnie.hash │ └── bonnie.mk ├── boost │ ├── 0001-fix-ambiguous-format-call-on-64bit-builds.patch │ ├── 0002-fix-uclibc-eventfd.patch │ ├── 0003-fenv.patch │ ├── 0004-add-riscv-endian-detection.patch │ ├── Config.in │ ├── boost.hash │ └── boost.mk ├── bootstrap │ ├── Config.in │ ├── bootstrap.hash │ └── bootstrap.mk ├── botan │ ├── Config.in │ ├── botan.hash │ └── botan.mk ├── brcm-patchram-plus │ ├── Config.in │ ├── brcm-patchram-plus.hash │ └── brcm-patchram-plus.mk ├── brickd │ ├── Config.in │ ├── S70brickd │ ├── brickd.hash │ └── brickd.mk ├── bridge-utils │ ├── 0001-build-system.patch │ ├── Config.in │ ├── bridge-utils.hash │ └── bridge-utils.mk ├── brltty │ ├── 0001-Fix-linking-error-on-mips64el.patch │ ├── 0002-mk4build-change-how-the-_FOR_BUILD-variables-are-pas.patch │ ├── 0003-mk4build-also-pass-PKG_CONFIG_FOR_BUILD-to-the-nativ.patch │ ├── Config.in │ ├── S10brltty │ ├── brltty.hash │ ├── brltty.mk │ └── brltty.service ├── brotli │ ├── 0001-CMake-Allow-using-BUILD_SHARED_LIBS-to-choose-static.patch │ ├── Config.in │ ├── brotli.hash │ └── brotli.mk ├── bsdiff │ ├── 0001-Add-missing-header-for-u_char.patch │ ├── Config.in │ ├── bsdiff.hash │ └── bsdiff.mk ├── btrfs-progs │ ├── 0001-Makefile-install-static-library-and-headers-in-insta.patch │ ├── 0002-kerncompat.h-define-BTRFS_DISABLE_BACKTRACE-when-bui.patch │ ├── Config.in │ ├── Config.in.host │ ├── btrfs-progs.hash │ └── btrfs-progs.mk ├── bubblewrap │ ├── Config.in │ ├── bubblewrap.hash │ └── bubblewrap.mk ├── bullet │ ├── Config.in │ ├── bullet.hash │ └── bullet.mk ├── bustle │ ├── Config.in │ ├── bustle.hash │ └── bustle.mk ├── busybox │ ├── 0001-networking-libiproute-use-linux-if_packet.h-instead-.patch │ ├── 0002-Makefile.flags-strip-non-l-arguments-returned-by-pkg.patch │ ├── Config.in │ ├── S01syslogd │ ├── S02klogd │ ├── S02sysctl │ ├── S10mdev │ ├── S15watchdog │ ├── S50telnet │ ├── busybox-minimal.config │ ├── busybox.config │ ├── busybox.hash │ ├── busybox.mk │ ├── inittab │ ├── mdev.conf │ └── udhcpc.script ├── bwm-ng │ ├── Config.in │ ├── bwm-ng.hash │ └── bwm-ng.mk ├── bzip2 │ ├── 0001-build-objects-twice.patch │ ├── 0002-improve-build-system.patch │ ├── Config.in │ ├── bzip2.hash │ └── bzip2.mk ├── c-ares │ ├── 0001-use_check_build_instead_of_check_user.patch │ ├── Config.in │ ├── c-ares.hash │ └── c-ares.mk ├── c-capnproto │ ├── Config.in │ ├── c-capnproto.hash │ └── c-capnproto.mk ├── c-icap-modules │ ├── Config.in │ ├── c-icap-modules.hash │ └── c-icap-modules.mk ├── c-icap │ ├── 0001-Required-fixes-to-compile-and-run-under-cygwin.patch │ ├── Config.in │ ├── S96cicap │ ├── c-icap.hash │ └── c-icap.mk ├── c-periphery │ ├── Config.in │ ├── c-periphery.hash │ └── c-periphery.mk ├── ca-certificates │ ├── Config.in │ ├── ca-certificates.hash │ └── ca-certificates.mk ├── cache-calibrator │ ├── 0001-Fix-conflicting-round-function.patch │ ├── Config.in │ ├── cache-calibrator.hash │ └── cache-calibrator.mk ├── cairo │ ├── 0001-fix-nofork-build.patch │ ├── 0002-ft-Use-FT_Done_MM_Var-instead-of-free-when-available-in-cairo_ft_apply_variation.patch │ ├── Config.in │ ├── cairo.hash │ └── cairo.mk ├── cairomm │ ├── Config.in │ ├── cairomm.hash │ └── cairomm.mk ├── can-utils │ ├── Config.in │ ├── can-utils.hash │ └── can-utils.mk ├── canfestival │ ├── 0001-install-pkgconfig-module-for-canfestival.patch │ ├── 0002-allow-to-set-python-interpreter.patch │ ├── Config.in │ ├── canfestival.hash │ └── canfestival.mk ├── cannelloni │ ├── 0001-Add-missing-cstdio-include.patch │ ├── Config.in │ ├── cannelloni.hash │ └── cannelloni.mk ├── cantarell │ ├── Config.in │ ├── cantarell.hash │ └── cantarell.mk ├── capnproto │ ├── Config.in │ ├── capnproto.hash │ └── capnproto.mk ├── caps │ ├── 0001-Fix-stdint-types-with-musl.patch │ ├── Config.in │ ├── caps.hash │ └── caps.mk ├── cargo-bin │ ├── cargo-bin.hash │ └── cargo-bin.mk ├── cargo │ ├── Config.in.host │ ├── cargo.hash │ ├── cargo.mk │ └── config.in ├── cbootimage │ ├── Config.in │ ├── Config.in.host │ ├── cbootimage.hash │ └── cbootimage.mk ├── cc-tool │ ├── 0001-add-missing-stdarg-include.patch │ ├── 0002-boost-m4.patch │ ├── 0003-Makefile.am-do-not-overwrite-LIBS.patch │ ├── 0004-m4-boost.m4-fix-rpath-option-check-for-static-linkin.patch │ ├── Config.in │ ├── cc-tool.hash │ └── cc-tool.mk ├── ccache │ ├── ccache.hash │ └── ccache.mk ├── ccid │ ├── Config.in │ ├── ccid.hash │ └── ccid.mk ├── ccrypt │ ├── Config.in │ ├── ccrypt.hash │ └── ccrypt.mk ├── cctz │ ├── Config.in │ ├── cctz.hash │ └── cctz.mk ├── cdrkit │ ├── 0001-no-rcmd.patch │ ├── 0002-define-__THROW-to-avoid-build-issue-with-musl.patch │ ├── Config.in │ ├── cdrkit.hash │ └── cdrkit.mk ├── cegui06 │ ├── 0001-stddef.h.patch │ ├── Config.in │ ├── cegui06.hash │ └── cegui06.mk ├── cereal │ ├── Config.in │ ├── cereal.hash │ └── cereal.mk ├── cgic │ ├── 0001-prepare_makefile.patch │ ├── 0002-file_enhancements.patch │ ├── 0003-restore-cgiFormFileGetTempfileName.patch │ ├── Config.in │ ├── cgic.hash │ └── cgic.mk ├── cgilua │ ├── Config.in │ ├── cgilua.hash │ └── cgilua.mk ├── cgroupfs-mount │ ├── Config.in │ ├── S30cgroupfs │ ├── cgroupfs-mount.hash │ └── cgroupfs-mount.mk ├── check │ ├── Config.in │ ├── check.hash │ └── check.mk ├── checkpolicy │ ├── Config.in │ ├── Config.in.host │ ├── checkpolicy.hash │ └── checkpolicy.mk ├── checksec │ ├── Config.in.host │ ├── checksec.hash │ └── checksec.mk ├── chipmunk │ ├── 0001-Fix-build-failure-on-musl.patch │ ├── Config.in │ ├── chipmunk.hash │ └── chipmunk.mk ├── chocolate-doom │ ├── Config.in │ ├── chocolate-doom.hash │ └── chocolate-doom.mk ├── chrony │ ├── Config.in │ ├── S49chrony │ ├── chrony.hash │ ├── chrony.mk │ └── chrony.service ├── cifs-utils │ ├── Config.in │ ├── cifs-utils.hash │ └── cifs-utils.mk ├── circus │ ├── 0001-circus-tests-rename-async-argument-of-_create_circus.patch │ ├── Config.in │ ├── circus.hash │ └── circus.mk ├── civetweb │ ├── 0001-modlua.ini-include-dlfcn.h.patch │ ├── Config.in │ ├── civetweb.hash │ └── civetweb.mk ├── cjson │ ├── Config.in │ ├── cjson.hash │ └── cjson.mk ├── clamav │ ├── 0001-clamdscan-proto.c-fix-build-error-due-to-missing-soc.patch │ ├── 0002-mbox-do-not-use-backtrace-if-using-uClibc-without-ba.patch │ ├── Config.in │ ├── clamav.hash │ └── clamav.mk ├── clang │ ├── Config.in │ ├── clang.hash │ └── clang.mk ├── clapack │ ├── 0001-cmake-force-libf2c-to-be-built-as-a-static-library.patch │ ├── 0002-cmake-make-test-build-sensitive-to-BUILD_TESTING.patch │ ├── 0003-cmake-do-not-try-to-run-arithchk-when-cross-compilin.patch │ ├── 0004-cmake-blas-add-library-and-header-install-rules.patch │ ├── 0005-cmake-lapack-add-library-and-header-install-rules.patch │ ├── 0006-remove-uninit-f2c.patch │ ├── 0007-off64-t.patch │ ├── Config.in │ ├── clapack.hash │ └── clapack.mk ├── clinfo │ ├── Config.in │ ├── clinfo.hash │ └── clinfo.mk ├── cloop │ ├── cloop.hash │ └── cloop.mk ├── cmake │ ├── 0001-rename-cmake-rootfile.patch │ ├── Config.in │ ├── Config.in.host │ ├── cmake.hash │ └── cmake.mk ├── cmocka │ ├── 0001-Don-t-redefine-uintptr_t.patch │ ├── Config.in │ ├── cmocka.hash │ └── cmocka.mk ├── cog │ ├── 0001-fdo-ensure-xkb_data.state-is-not-null-before-calling.patch │ ├── 0002-fdo-ensure-xkb_data.state-is-not-null-before-calling.patch │ ├── 0003-fdo-ensure-xkb_data.keymap-is-not-null-before-callin.patch │ ├── Config.in │ ├── cog.hash │ └── cog.mk ├── collectd │ ├── 0001-configure.ac-fix-protobuf-util-time_util.h-detection.patch │ ├── Config.in │ ├── collectd.hash │ ├── collectd.mk │ └── collectd.service ├── collectl │ ├── Config.in │ ├── collectl.hash │ └── collectl.mk ├── comix-cursors │ ├── Config.in │ ├── comix-cursors.hash │ └── comix-cursors.mk ├── connman-gtk │ ├── Config.in │ ├── connman-gtk.hash │ └── connman-gtk.mk ├── connman │ ├── 0001-nat-build-failure.patch │ ├── Config.in │ ├── S45connman │ ├── connman.hash │ └── connman.mk ├── conntrack-tools │ ├── Config.in │ ├── conntrack-tools.hash │ └── conntrack-tools.mk ├── copas │ ├── 0001-Do-not-load-coxpcall-for-LuaJIT.patch │ ├── Config.in │ ├── copas.hash │ └── copas.mk ├── coreutils │ ├── 0001-strtod_fix_clash_with_strtold.patch │ ├── Config.in │ ├── coreutils.hash │ └── coreutils.mk ├── corkscrew │ ├── Config.in │ ├── corkscrew.hash │ └── corkscrew.mk ├── coxpcall │ ├── Config.in │ ├── coxpcall.hash │ └── coxpcall.mk ├── cpio │ ├── Config.in │ ├── cpio.hash │ └── cpio.mk ├── cppcms │ ├── Config.in │ ├── cppcms.hash │ └── cppcms.mk ├── cppdb │ ├── 0001-mysql-library-suffix.patch │ ├── Config.in │ ├── cppdb.hash │ └── cppdb.mk ├── cppunit │ ├── Config.in │ ├── cppunit.hash │ └── cppunit.mk ├── cppzmq │ ├── Config.in │ ├── cppzmq.hash │ └── cppzmq.mk ├── cpuburn-arm │ ├── Config.in │ ├── cpuburn-arm.hash │ └── cpuburn-arm.mk ├── cpuload │ ├── Config.in │ ├── cpuload.hash │ └── cpuload.mk ├── cracklib │ ├── 0001-Force-grep-to-treat-the-input-as-text-when-formattin.patch │ ├── Config.in │ ├── cracklib.hash │ └── cracklib.mk ├── cramfs │ ├── Config.in │ ├── Config.in.host │ ├── cramfs.hash │ └── cramfs.mk ├── crda │ ├── 0001-crda-support-python-3-in-utils-key2pub.py.patch │ ├── 0002-drop-ldconfig-call.patch │ ├── 0003-drop-werror.patch │ ├── Config.in │ ├── crda.hash │ └── crda.mk ├── crudini │ ├── Config.in │ ├── crudini.hash │ └── crudini.mk ├── cryptodev-linux │ ├── cryptodev-linux.hash │ └── cryptodev-linux.mk ├── cryptodev │ ├── Config.in │ └── cryptodev.mk ├── cryptopp │ ├── cryptopp.hash │ └── cryptopp.mk ├── cryptsetup │ ├── 0001-Remove-json_object-typedef.patch │ ├── Config.in │ ├── Config.in.host │ ├── cryptsetup.hash │ └── cryptsetup.mk ├── ctorrent │ ├── 0001-fix-musl-build.patch │ ├── Config.in │ ├── ctorrent.hash │ └── ctorrent.mk ├── cunit │ ├── Config.in │ ├── cunit.hash │ └── cunit.mk ├── cups-filters │ ├── Config.in │ ├── cups-filters.hash │ └── cups-filters.mk ├── cups │ ├── 0001-Remove-man-from-BUILDDIRS-in-configure.patch │ ├── 0002-Do-not-use-genstrings.patch │ ├── 0003-Sanitize-the-installation-process.patch │ ├── 0004-Remove-PIE-flags-from-the-build.patch │ ├── Config.in │ ├── cups.hash │ └── cups.mk ├── curlftpfs │ ├── 0001-fix-CURLOPT_INFILESIZE.patch │ ├── 0002-free_ftpfs_file-memleak-fix.patch │ ├── 0003-nocache-memleak-fix.patch │ ├── 0004-fix-musl-build-off-t.patch │ ├── Config.in │ ├── curlftpfs.hash │ └── curlftpfs.mk ├── curlpp │ ├── Config.in │ ├── curlpp.hash │ └── curlpp.mk ├── cutelyst │ ├── Config.in │ ├── cutelyst.hash │ └── cutelyst.mk ├── cvs │ ├── Config.in │ ├── cvs.hash │ └── cvs.mk ├── cwiid │ ├── 0001-wmdemo-fix-linking-by-adding-the-missing-lbluetooth-.patch │ ├── 0002-configure-make-wmgui-build-optional.patch │ ├── Config.in │ ├── cwiid.hash │ └── cwiid.mk ├── cxxtest │ ├── Config.in │ ├── cxxtest.hash │ └── cxxtest.mk ├── czmq │ ├── Config.in │ ├── czmq.hash │ └── czmq.mk ├── dacapo │ ├── Config.in │ ├── dacapo.hash │ └── dacapo.mk ├── dado │ ├── Config.in │ ├── dado.hash │ └── dado.mk ├── daemon │ ├── 0001-fix-musl.patch │ ├── Config.in │ ├── daemon.hash │ └── daemon.mk ├── dahdi-linux │ ├── Config.in │ ├── dahdi-linux.hash │ └── dahdi-linux.mk ├── dahdi-tools │ ├── 0001-no-build-docs.patch │ ├── 0002-no-perl-manpages.patch │ ├── Config.in │ ├── dahdi-tools.hash │ └── dahdi-tools.mk ├── dante │ ├── 0001-fix-sparc-compile.patch │ ├── 0002-osdep-m4-Remove-getaddrinfo-too-low-checks.patch │ ├── Config.in │ ├── S50dante │ ├── dante.hash │ ├── dante.mk │ └── dante.service ├── daq │ ├── 0001-Fix-build-against-the-musl-C-library.patch │ ├── Config.in │ ├── daq.hash │ └── daq.mk ├── darkhttpd │ ├── Config.in │ ├── S50darkhttpd │ ├── darkhttpd.hash │ ├── darkhttpd.mk │ └── darkhttpd.service ├── dash │ ├── 0001-no-config.h-for-helpers.patch │ ├── Config.in │ ├── dash.hash │ └── dash.mk ├── dav1d │ ├── Config.in │ ├── dav1d.hash │ └── dav1d.mk ├── davfs2 │ ├── 0001-src-Makefile.am-do-not-hardcode-fstack-protector-str.patch │ ├── 0002-fix-iconv.patch │ ├── Config.in │ ├── davfs2.hash │ └── davfs2.mk ├── davici │ ├── Config.in │ ├── davici.hash │ └── davici.mk ├── dawgdic │ ├── Config.in │ ├── dawgdic.hash │ └── dawgdic.mk ├── dbus-cpp │ ├── 0001-gcc4.7.patch │ ├── 0002-cross-compile-tools.patch │ ├── 0003-src-pipe.c-fix-build-error-with-gcc-7.x.patch │ ├── Config.in │ ├── dbus-cpp.hash │ └── dbus-cpp.mk ├── dbus-glib │ ├── Config.in │ ├── dbus-glib.hash │ └── dbus-glib.mk ├── dbus-python │ ├── Config.in │ ├── Config.in.host │ ├── dbus-python.hash │ └── dbus-python.mk ├── dbus-triggerd │ ├── Config.in │ ├── dbus-triggerd.hash │ └── dbus-triggerd.mk ├── dbus │ ├── Config.in │ ├── S30dbus │ ├── dbus.hash │ └── dbus.mk ├── dc3dd │ ├── 0001-no_man.patch │ ├── 0002-fix-autoreconf.patch │ ├── 0003-fix-for-glibc-2.28.patch │ ├── Config.in │ ├── dc3dd.hash │ └── dc3dd.mk ├── dcron │ ├── 0001-main.c-add-newline-to-logfile-openning-error-message.patch │ ├── Config.in │ ├── S90dcron │ ├── dcron.hash │ ├── dcron.mk │ └── dcron.service ├── ddrescue │ ├── Config.in │ ├── ddrescue.hash │ └── ddrescue.mk ├── debianutils │ ├── Config.in │ ├── debianutils.hash │ └── debianutils.mk ├── dehydrated │ ├── Config.in │ ├── dehydrated.hash │ └── dehydrated.mk ├── dejavu │ ├── Config.in │ ├── dejavu.hash │ └── dejavu.mk ├── dfu-util │ ├── Config.in │ ├── Config.in.host │ ├── dfu-util.hash │ └── dfu-util.mk ├── dhcp │ ├── 0001-master-Added-includes-of-new-BIND9-compatibility-headers-updated-util-bind-sh.patch │ ├── Config.in │ ├── S80dhcp-relay │ ├── S80dhcp-server │ ├── dhclient-script │ ├── dhclient.conf │ ├── dhcp.hash │ ├── dhcp.mk │ ├── dhcpd.conf │ └── dhcpd.service ├── dhcpcd │ ├── Config.in │ ├── S41dhcpcd │ ├── dhcpcd.hash │ ├── dhcpcd.mk │ └── dhcpcd.service ├── dhcpdump │ ├── 0001-use-non-bsd-structures.patch │ ├── Config.in │ ├── dhcpdump.hash │ └── dhcpdump.mk ├── dhrystone │ ├── 0001-cmdline-nruns.patch │ ├── 0002-HZ.patch │ ├── 0003-exit.patch │ ├── 0004-headers.patch │ ├── 0005-prototypes.patch │ ├── Config.in │ ├── Makefile │ ├── dhrystone.hash │ └── dhrystone.mk ├── dialog │ ├── Config.in │ ├── dialog.hash │ └── dialog.mk ├── dieharder │ ├── 0001-Do-not-use-includedir-as-include-search-path-for-bui.patch │ ├── 0002-Fix-missing-type-intptr_t.patch │ ├── 0003-Add-_GNU_SOURCE-for-uint-and-M_PI-with-musl-libc.patch │ ├── 0004-Add-static-to-inline-functions.patch │ ├── Config.in │ ├── dieharder.hash │ └── dieharder.mk ├── diffutils │ ├── Config.in │ ├── diffutils.hash │ └── diffutils.mk ├── dillo │ ├── 0002-usr-local-include.patch │ ├── 0003-Fix-openssl-detection.patch │ ├── 0004-Support-OpenSSL-1.1.0.patch │ ├── Config.in │ ├── dillo.hash │ └── dillo.mk ├── ding-libs │ ├── Config.in │ ├── ding-libs.hash │ └── ding-libs.mk ├── directfb-examples │ ├── 0001-remove-bzero.patch │ ├── Config.in │ ├── directfb-examples.hash │ └── directfb-examples.mk ├── directfb │ ├── 0001-fix-missing-davinci-voodoo-header.patch │ ├── 0002-imlib2-config.patch │ ├── 0003-setregion-lock.patch │ ├── 0004-use-gcc-link.patch │ ├── 0005-add-missing-idivine-header.patch │ ├── 0006-fix-client-gfx_state-initialisation.patch │ ├── Config.in │ ├── directfb.hash │ └── directfb.mk ├── dmalloc │ ├── 0001-add-fpic.patch │ ├── 0002-mips.patch │ ├── 0003-fix-parallel-build.patch │ ├── 0004-fix-shlibs.patch │ ├── 0005-fix-strdup.patch │ ├── 0006-fix-strndup.patch │ ├── Config.in │ ├── dmalloc.hash │ └── dmalloc.mk ├── dmidecode │ ├── 0001-build-system-fixes.patch │ ├── Config.in │ ├── dmidecode.hash │ └── dmidecode.mk ├── dmraid │ ├── 0001-fix-compilation-under-musl.patch │ ├── Config.in │ ├── S20dmraid │ ├── dmraid.hash │ └── dmraid.mk ├── dnsmasq │ ├── 0001-Makefile-fix-i18n-build-with-ubus.patch │ ├── 0002-Fix-build-with-libnettle-3.5.patch │ ├── 0003-Fix-build-after-y2038-changes-in-glib.patch │ ├── 0004-Fix-memory-leak-in-helper-c.patch │ ├── Config.in │ ├── S80dnsmasq │ ├── dnsmasq.hash │ └── dnsmasq.mk ├── doc-asciidoc.mk ├── docker-cli │ ├── Config.in │ ├── docker-cli.hash │ └── docker-cli.mk ├── docker-compose │ ├── 0001-Strip-up-generic-versions-and-bump-requests.patch │ ├── 0002-Bump-texttable-from-0.9.1-to-1.6.2.patch │ ├── 0003-support-PyYAML-up-to-5.1-version.patch │ ├── Config.in │ ├── docker-compose.hash │ └── docker-compose.mk ├── docker-containerd │ ├── Config.in │ ├── docker-containerd.hash │ └── docker-containerd.mk ├── docker-engine │ ├── Config.in │ ├── S60dockerd │ ├── docker-engine.hash │ └── docker-engine.mk ├── docker-proxy │ ├── Config.in │ ├── docker-proxy.hash │ └── docker-proxy.mk ├── docker │ ├── Config.in │ ├── docker.hash │ └── docker.mk ├── domoticz │ ├── 0001-History.txt-use-10717-instead-of-xxxxx.patch │ ├── 0002-Revert-Updating-CMake-configuration-file-to-use-vers.patch │ ├── 0003-CMakeLists.txt-add-c-argument-to-build-precompiled-h.patch │ ├── 0004-DelayedLink.h-fix-build-with-python-3-8.patch │ ├── 0005-Fix-include-paths-to-not-confuse-local-files-with-system-files.patch │ ├── Config.in │ ├── S99domoticz │ ├── domoticz.hash │ ├── domoticz.mk │ └── domoticz.service ├── doom-wad │ ├── Config.in │ ├── doom-wad.hash │ └── doom-wad.mk ├── dos2unix │ ├── Config.in │ ├── Config.in.host │ ├── dos2unix.hash │ └── dos2unix.mk ├── dosfstools │ ├── Config.in │ ├── Config.in.host │ ├── dosfstools.hash │ └── dosfstools.mk ├── dovecot-pigeonhole │ ├── Config.in │ ├── dovecot-pigeonhole.hash │ └── dovecot-pigeonhole.mk ├── dovecot │ ├── 0001-byteorder.h-fix-uclibc-build.patch │ ├── 0002-lib-ssl-iostream-Do-not-build-static-test-iostream-s.patch │ ├── Config.in │ ├── dovecot.hash │ └── dovecot.mk ├── doxygen │ ├── Config.in.host │ ├── doxygen.hash │ └── doxygen.mk ├── drbd-utils │ ├── Config.in │ ├── drbd-utils.hash │ └── drbd-utils.mk ├── dropbear │ ├── Config.in │ ├── S50dropbear │ ├── dropbear.hash │ ├── dropbear.mk │ ├── dropbear.service │ └── etc-pam.d-sshd ├── dropwatch │ ├── 0001-binutils-2.23.1.patch │ ├── 0002-Make-binutils-optional.patch │ ├── Config.in │ ├── dropwatch.hash │ └── dropwatch.mk ├── dstat │ ├── Config.in │ ├── dstat.hash │ └── dstat.mk ├── dt-utils │ ├── Config.in │ ├── dt-utils.hash │ └── dt-utils.mk ├── dt │ ├── 0001-adjust-os-symlink.patch │ ├── 0002-dt-default-source-define.patch │ ├── Config.in │ ├── dt.hash │ └── dt.mk ├── dtach │ ├── Config.in │ ├── dtach.hash │ └── dtach.mk ├── dtc │ ├── 0001-Fix-include-guards-for-older-kernel-u-boot-sources.patch │ ├── Config.in │ ├── Config.in.host │ ├── dtc-0001-sort-unit-addresses-by-number.patch │ ├── dtc.hash │ └── dtc.mk ├── dtv-scan-tables │ ├── Config.in │ ├── dtv-scan-tables.hash │ └── dtv-scan-tables.mk ├── duktape │ ├── Config.in │ ├── duktape.hash │ └── duktape.mk ├── duma │ ├── 0001-fix-cross-compilation.patch │ ├── 0002-no-tests.patch │ ├── 0003-fix-C++14.patch │ ├── 0004-Fix-build-with-latest-glibc.patch │ ├── Config.in │ ├── duma.hash │ └── duma.mk ├── dump1090 │ ├── Config.in │ ├── dump1090.hash │ └── dump1090.mk ├── dvb-apps │ ├── 0001-Fix-generate-keynames.patch │ ├── 0002-Fix-compiler-warning-flags.patch │ ├── 0003-handle-static-shared-only-build.patch │ ├── 0004-Makefile-remove-test.patch │ ├── 0005-utils-fix-build-with-kernel-headers-4.14.patch │ ├── Config.in │ └── dvb-apps.mk ├── dvblast │ ├── 0001-missing-lm.patch │ ├── 0002-fix-int-types.patch │ ├── Config.in │ ├── dvblast.hash │ └── dvblast.mk ├── dvbsnoop │ ├── 0001-musl-types-h.patch │ ├── Config.in │ ├── dvbsnoop.hash │ └── dvbsnoop.mk ├── dvdauthor │ ├── Config.in │ ├── dvdauthor.hash │ └── dvdauthor.mk ├── dvdrw-tools │ ├── 0001-limits.h.patch │ ├── 0002-Include-sysmacros.h-to-compile-with-newer-gcc.patch │ ├── Config.in │ ├── dvdrw-tools.hash │ └── dvdrw-tools.mk ├── e2fsprogs │ ├── Config.in │ ├── Config.in.host │ ├── e2fsprogs.hash │ └── e2fsprogs.mk ├── e2tools │ ├── Config.in │ ├── Config.in.host │ ├── e2tools.hash │ └── e2tools.mk ├── easy-rsa │ ├── Config.in │ ├── easy-rsa.hash │ └── easy-rsa.mk ├── easydbus │ ├── Config.in │ ├── easydbus.hash │ └── easydbus.mk ├── ebtables │ ├── 0001-ethernetdb.h-Remove-C-specific-compiler-hint-macro-_.patch │ ├── 0002-Fix-musl-compatibility.patch │ ├── 0003-replace-ebtables-save-perl-script-with-bash.patch │ ├── Config.in │ ├── ebtables.hash │ └── ebtables.mk ├── ecryptfs-utils │ ├── 0001-musl.patch │ ├── 0002-openssl110.patch │ ├── 0003-fix-parallel-build-issue.patch │ ├── Config.in │ ├── ecryptfs-utils.hash │ └── ecryptfs-utils.mk ├── ed │ ├── Config.in │ ├── ed.hash │ └── ed.mk ├── edid-decode │ ├── Config.in │ ├── edid-decode.hash │ └── edid-decode.mk ├── efibootmgr │ ├── 0001-Allow-build-with-uClibc.patch │ ├── Config.in │ ├── efibootmgr.hash │ └── efibootmgr.mk ├── efivar │ ├── 0001-Allow-build-with-uClibc.patch │ ├── 0002-dp.h-make-format_guid-handle-misaligned-guid-pointer.patch │ ├── 0003-Fix-all-the-places-Werror-address-of-packed-member-c.patch │ ├── 0004-Fix-another-error-of-Werror-address-of-packed-member.patch │ ├── Config.in │ ├── efivar.hash │ └── efivar.mk ├── efl │ ├── 0001-eina-set-EINA_VALUE_EMPTY-during-library-init.patch │ ├── Config.in │ ├── efl.hash │ └── efl.mk ├── eigen │ ├── Config.in │ ├── eigen.hash │ └── eigen.mk ├── ejabberd │ ├── 0001-Makefile.in-do-not-download-or-compile-dependencies.patch │ ├── 0002-fix-ejabberdctl.patch │ ├── Config.in │ ├── S50ejabberd │ ├── check-erlang-lib │ ├── ejabberd.hash │ └── ejabberd.mk ├── elf2flt │ ├── 0001-ld-elf2flt-behave-properly-when-called-with-a-name-d.patch │ ├── Config.in.host │ ├── elf2flt.hash │ └── elf2flt.mk ├── elftosb │ ├── 0001-fixes-includes.patch │ ├── 0002-force-cxx-compiler.patch │ ├── elftosb.hash │ └── elftosb.mk ├── elfutils │ ├── 0001-Add-a-enable-disable-progs-configure-option.patch │ ├── 0002-Really-make-Werror-conditional-to-BUILD_WERROR.patch │ ├── Config.in │ ├── elfutils.hash │ └── elfutils.mk ├── elixir │ ├── elixir.hash │ └── elixir.mk ├── ell │ ├── 0001-ell-ecc.h-fix-build-with-uclibc.patch │ ├── Config.in │ ├── ell.hash │ └── ell.mk ├── emlog │ ├── Config.in │ ├── emlog.hash │ └── emlog.mk ├── empty │ ├── 0001-respect-LDFLAGS.patch │ ├── Config.in │ ├── empty.hash │ └── empty.mk ├── enchant │ ├── Config.in │ ├── enchant.hash │ └── enchant.mk ├── enet │ ├── Config.in │ ├── enet.hash │ └── enet.mk ├── enlightenment │ ├── Config.in │ ├── enlightenment.hash │ └── enlightenment.mk ├── enscript │ ├── Config.in │ ├── enscript.hash │ └── enscript.mk ├── erlang-base64url │ ├── Config.in │ ├── erlang-base64url.hash │ └── erlang-base64url.mk ├── erlang-eimp │ ├── Config.in │ ├── erlang-eimp.hash │ └── erlang-eimp.mk ├── erlang-goldrush │ ├── Config.in │ ├── erlang-goldrush.hash │ └── erlang-goldrush.mk ├── erlang-idna │ ├── Config.in │ ├── erlang-idna.hash │ └── erlang-idna.mk ├── erlang-jiffy │ ├── Config.in │ ├── erlang-jiffy.hash │ └── erlang-jiffy.mk ├── erlang-jose │ ├── Config.in │ ├── erlang-jose.hash │ └── erlang-jose.mk ├── erlang-lager │ ├── Config.in │ ├── erlang-lager.hash │ └── erlang-lager.mk ├── erlang-p1-acme │ ├── Config.in │ ├── erlang-p1-acme.hash │ └── erlang-p1-acme.mk ├── erlang-p1-cache-tab │ ├── Config.in │ ├── erlang-p1-cache-tab.hash │ └── erlang-p1-cache-tab.mk ├── erlang-p1-mqtree │ ├── Config.in │ ├── erlang-p1-mqtree.hash │ └── erlang-p1-mqtree.mk ├── erlang-p1-oauth2 │ ├── Config.in │ ├── erlang-p1-oauth2.hash │ └── erlang-p1-oauth2.mk ├── erlang-p1-pkix │ ├── Config.in │ ├── erlang-p1-pkix.hash │ └── erlang-p1-pkix.mk ├── erlang-p1-sip │ ├── 0001-fix-includes.patch │ ├── Config.in │ ├── erlang-p1-sip.hash │ └── erlang-p1-sip.mk ├── erlang-p1-stringprep │ ├── Config.in │ ├── erlang-p1-stringprep.hash │ └── erlang-p1-stringprep.mk ├── erlang-p1-stun │ ├── Config.in │ ├── erlang-p1-stun.hash │ └── erlang-p1-stun.mk ├── erlang-p1-tls │ ├── Config.in │ ├── erlang-p1-tls.hash │ └── erlang-p1-tls.mk ├── erlang-p1-utils │ ├── Config.in │ ├── erlang-p1-utils.hash │ └── erlang-p1-utils.mk ├── erlang-p1-xml │ ├── Config.in │ ├── erlang-p1-xml.hash │ └── erlang-p1-xml.mk ├── erlang-p1-xmpp │ ├── 0001-fix-includes.patch │ ├── Config.in │ ├── erlang-p1-xmpp.hash │ └── erlang-p1-xmpp.mk ├── erlang-p1-yaml │ ├── Config.in │ ├── erlang-p1-yaml.hash │ └── erlang-p1-yaml.mk ├── erlang-p1-yconf │ ├── Config.in │ ├── erlang-p1-yconf.hash │ └── erlang-p1-yconf.mk ├── erlang-p1-zlib │ ├── Config.in │ ├── erlang-p1-zlib.hash │ └── erlang-p1-zlib.mk ├── erlang-rebar │ ├── erlang-rebar.hash │ └── erlang-rebar.mk ├── erlang │ ├── 0001-erts-ethread-instruct-libatomic_ops-we-do-require-CA.patch │ ├── 0002-erts-emulator-reorder-inclued-headers-paths.patch │ ├── Config.in │ ├── erlang.hash │ └── erlang.mk ├── espeak │ ├── 0001-Fix-build-of-shared-library-on-architectures-needing.patch │ ├── 0002-tr_languages-cast-string_ordinal-init-values.patch │ ├── Config.in │ ├── espeak.hash │ └── espeak.mk ├── ethtool │ ├── Config.in │ ├── ethtool.hash │ └── ethtool.mk ├── eudev │ ├── 0001-Only-use-pragma-for-ignoring-diagnostics-if-.patch │ ├── 0001-src-libudev-libudev-monitor.c-do-not-check-if-dev-is.patch │ ├── Config.in │ ├── Config.in.host │ ├── S10udev │ ├── eudev.hash │ └── eudev.mk ├── ev3dev-linux-drivers │ ├── Config.in │ ├── ev3dev-linux-drivers.mk │ └── lego-linux-drivers.hash ├── evemu │ ├── 0001-Include-limits.h-for-PATH_MAX.patch │ ├── Config.in │ ├── evemu.hash │ └── evemu.mk ├── evtest │ ├── 0001-Add-missing-limits.h-include.patch │ ├── Config.in │ ├── evtest.hash │ └── evtest.mk ├── execline │ ├── Config.in │ ├── execline.hash │ └── execline.mk ├── exempi │ ├── Config.in │ ├── exempi.hash │ └── exempi.mk ├── exfat-utils │ ├── Config.in │ ├── exfat-utils.hash │ └── exfat-utils.mk ├── exfat │ ├── Config.in │ ├── exfat.hash │ └── exfat.mk ├── exim │ ├── 0001-Build-buildconfig-for-the-host.patch │ ├── 0002-Don-t-make-backup-copies-of-installed-files.patch │ ├── 0003-Skip-version-check-and-symlink-installation.patch │ ├── 0004-Fix-uClibc-build.patch │ ├── 0005-exim_lock-fix-lstat-related-build-errors.patch │ ├── 0006-sieve-fix-build-errors.patch │ ├── Config.in │ ├── S86exim │ ├── exim.hash │ ├── exim.mk │ └── exim.service ├── exiv2 │ ├── 0001-crwimage-Check-offset-and-size-against-total-size.patch │ ├── 0002-fix_1011_jp2_readmetadata_loop.patch │ ├── Config.in │ ├── exiv2.hash │ └── exiv2.mk ├── expat │ ├── Config.in │ ├── expat.hash │ └── expat.mk ├── expect │ ├── 0001-enable-cross-compilation.patch │ ├── 0002-allow-tcl-build-directory.patch │ ├── Config.in │ ├── expect.hash │ └── expect.mk ├── explorercanvas │ ├── Config.in │ ├── explorercanvas.hash │ └── explorercanvas.mk ├── ezxml │ ├── 0001-allow-compiler-override.patch │ ├── Config.in │ ├── ezxml.hash │ └── ezxml.mk ├── f2fs-tools │ ├── 0001-mkfs-Makefile.am-fix-build-without-blkid.patch │ ├── Config.in │ ├── Config.in.host │ ├── f2fs-tools.hash │ └── f2fs-tools.mk ├── faad2 │ ├── Config.in │ ├── faad2.hash │ └── faad2.mk ├── faifa │ ├── 0001-sha2.c-explicitly-include-endian.h-for-BYTE_ORDER-ma.patch │ ├── 0002-hpav_cfg.c-do-not-include-linux-if_ether.h-for-musl-.patch │ ├── 0003-Makefile.in-fix-asbolute-symlink-of-libfaifa.so.patch │ ├── Config.in │ ├── faifa.hash │ └── faifa.mk ├── fail2ban │ ├── Config.in │ ├── S60fail2ban │ ├── fail2ban.hash │ └── fail2ban.mk ├── fakedate │ ├── fakedate │ └── fakedate.mk ├── fakeroot │ ├── 0001-hide-dlsym-error.patch │ ├── 0002-communicate-check-return-status-of-msgrcv.patch │ ├── 0003-Select-TCP-when-lack-of-SYSV-IPC.patch │ ├── fakeroot.hash │ └── fakeroot.mk ├── faketime │ ├── Config.in.host │ ├── faketime.hash │ └── faketime.mk ├── fan-ctrl │ ├── Config.in │ ├── fan-ctrl.hash │ └── fan-ctrl.mk ├── fastd │ ├── 0001-cmake-use-INTERPROCEDURAL_OPTIMIZATION-target-proper.patch │ ├── 0002-CMakeList-do-not-overwrite-module-path.patch │ ├── 0003-cipher-remove-aes128-ctr-NaCl-implementation.patch │ ├── Config.in │ ├── fastd.hash │ └── fastd.mk ├── fatcat │ ├── Config.in.host │ ├── fatcat.hash │ └── fatcat.mk ├── fb-test-app │ ├── Config.in │ ├── fb-test-app.hash │ └── fb-test-app.mk ├── fbdump │ ├── Config.in │ ├── fbdump.hash │ └── fbdump.mk ├── fbgrab │ ├── 0001-fix-static-build.patch │ ├── 0100-fix-pixfmt-report.patch │ ├── Config.in │ ├── fbgrab.hash │ └── fbgrab.mk ├── fbset │ ├── 0001-Fix-musl-compile.patch │ ├── Config.in │ ├── fbset.hash │ └── fbset.mk ├── fbterm │ ├── 0001-fbio.cpp-improxy.cpp-fbterm.cpp-fix-musl-compile.patch │ ├── 0002-mouse.cpp-fix-musl-compile.patch │ ├── 0003-C++11-compliance.patch │ ├── 0004-iconv.patch │ ├── Config.in │ ├── fbterm.hash │ └── fbterm.mk ├── fbtft │ ├── Config.in │ ├── fbtft.hash │ └── fbtft.mk ├── fbv │ ├── 0002-cross.patch │ ├── 0003-fix-24bpp-support-on-big-endian.patch │ ├── 0004-fix-bgr555.patch │ ├── 0005-giflib.patch │ ├── 0006-include.patch │ ├── 0007-libpng15.patch │ ├── Config.in │ ├── fbv.hash │ └── fbv.mk ├── fcgiwrap │ ├── 0001-use-LIBS-from-configure.patch │ ├── 0002-link-with-libsystemd-instead-of-libsystemd-daemon.patch │ ├── Config.in │ ├── fcgiwrap.hash │ └── fcgiwrap.mk ├── fconfig │ ├── Config.in │ ├── fconfig.hash │ └── fconfig.mk ├── fdk-aac │ ├── Config.in │ ├── fdk-aac.hash │ └── fdk-aac.mk ├── feh │ ├── Config.in │ ├── feh.hash │ └── feh.mk ├── fetchmail │ ├── Config.in │ ├── fetchmail.hash │ └── fetchmail.mk ├── ffmpeg │ ├── Config.in │ ├── ffmpeg.hash │ └── ffmpeg.mk ├── fftw │ ├── Config.in │ ├── fftw-double │ │ ├── Config.in │ │ ├── fftw-double.hash │ │ └── fftw-double.mk │ ├── fftw-long-double │ │ ├── Config.in │ │ ├── fftw-long-double.hash │ │ └── fftw-long-double.mk │ ├── fftw-quad │ │ ├── Config.in │ │ ├── fftw-quad.hash │ │ └── fftw-quad.mk │ ├── fftw-single │ │ ├── Config.in │ │ ├── fftw-single.hash │ │ └── fftw-single.mk │ ├── fftw.hash │ └── fftw.mk ├── ficl │ ├── 0001-fix-Makefile.patch │ ├── Config.in │ ├── ficl.hash │ └── ficl.mk ├── file │ ├── 0001-Add-libmagic.pc.patch │ ├── Config.in │ ├── file.hash │ └── file.mk ├── filemq │ ├── Config.in │ ├── filemq.hash │ └── filemq.mk ├── findutils │ ├── Config.in │ ├── findutils.hash │ └── findutils.mk ├── fio │ ├── Config.in │ ├── fio.hash │ └── fio.mk ├── flac │ ├── 0001-configure.ac-check-for-sys-auxv.h-before-defining-FL.patch │ ├── Config.in │ ├── flac.hash │ └── flac.mk ├── flann │ ├── 0001-src-cpp-fix-cmake-3.11-build.patch │ ├── Config.in │ ├── flann.hash │ └── flann.mk ├── flannel │ ├── Config.in │ ├── flannel.hash │ └── flannel.mk ├── flare-engine │ ├── Config.in │ ├── flare-engine.hash │ └── flare-engine.mk ├── flare-game │ ├── Config.in │ ├── flare-game.hash │ └── flare-game.mk ├── flashbench │ ├── Config.in │ ├── flashbench.hash │ └── flashbench.mk ├── flashrom │ ├── 0001-spi.patch │ ├── Config.in │ ├── flashrom.hash │ └── flashrom.mk ├── flatbuffers │ ├── 0001-Add-detection-of-strtoull_l-function.patch │ ├── Config.in │ ├── flatbuffers.hash │ └── flatbuffers.mk ├── flatcc │ ├── Config.in │ ├── flatcc.hash │ └── flatcc.mk ├── flex │ ├── 0001-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch │ ├── 0002-build-make-it-possible-to-disable-the-build-of-the-f.patch │ ├── 0003-build-make-it-possible-to-disable-the-build-of-the-d.patch │ ├── Config.in │ ├── flex.hash │ └── flex.mk ├── flickcurl │ ├── Config.in │ ├── flickcurl.hash │ └── flickcurl.mk ├── flite │ ├── 0001-now-honor-DESTDIR-env.-var.patch │ ├── 0002-fix-alsa-static.patch │ ├── 0003-fix-alsa-version-check.patch │ ├── Config.in │ ├── flite.hash │ └── flite.mk ├── flot │ ├── Config.in │ ├── flot.hash │ └── flot.mk ├── fltk │ ├── 0001-disable-tests.patch │ ├── Config.in │ ├── fltk.hash │ └── fltk.mk ├── fluid-soundfont │ ├── Config.in │ ├── fluid-soundfont.hash │ └── fluid-soundfont.mk ├── fluidsynth │ ├── Config.in │ ├── fluidsynth.hash │ └── fluidsynth.mk ├── fluxbox │ ├── Config.in │ ├── fluxbox.hash │ ├── fluxbox.mk │ └── xsession ├── fmc │ ├── Config.in │ ├── fmc.hash │ └── fmc.mk ├── fmlib │ ├── Config.in │ ├── fmlib.hash │ └── fmlib.mk ├── fmt │ ├── Config.in │ ├── fmt.hash │ └── fmt.mk ├── fmtools │ ├── Config.in │ ├── fmtools.hash │ └── fmtools.mk ├── font-awesome │ ├── Config.in │ ├── font-awesome.hash │ └── font-awesome.mk ├── fontconfig │ ├── 0001-Fix-the-build-issue-with-enable-static.patch │ ├── Config.in │ ├── fontconfig.hash │ └── fontconfig.mk ├── fping │ ├── Config.in │ ├── fping.hash │ └── fping.mk ├── freeradius-client │ ├── 0001-fix-for-nettle.patch │ ├── Config.in │ ├── freeradius-client.hash │ └── freeradius-client.mk ├── freerdp │ ├── 0001-xf_floatbar.c-fix-build-without-Xfixes.patch │ ├── Config.in │ ├── freerdp.hash │ └── freerdp.mk ├── freescale-imx │ ├── Config.in │ ├── firmware-imx │ │ ├── Config.in │ │ ├── firmware-imx.hash │ │ └── firmware-imx.mk │ ├── freescale-imx.mk │ ├── gpu-amd-bin-mx51 │ │ ├── Config.in │ │ ├── egl.pc │ │ ├── glesv2.pc │ │ ├── gpu-amd-bin-mx51.hash │ │ ├── gpu-amd-bin-mx51.mk │ │ └── vg.pc │ ├── imx-alsa-plugins │ │ ├── Config.in │ │ ├── imx-alsa-plugins.hash │ │ └── imx-alsa-plugins.mk │ ├── imx-codec │ │ ├── Config.in │ │ ├── imx-codec.hash │ │ └── imx-codec.mk │ ├── imx-gpu-g2d │ │ ├── Config.in │ │ ├── imx-gpu-g2d.hash │ │ └── imx-gpu-g2d.mk │ ├── imx-gpu-viv │ │ ├── Config.in │ │ ├── imx-gpu-viv.hash │ │ └── imx-gpu-viv.mk │ ├── imx-kobs │ │ ├── 0001-Fix-musl-build.patch │ │ ├── 0002-Fix-build-for-recent-toolchains.patch │ │ ├── Config.in │ │ ├── imx-kobs.hash │ │ └── imx-kobs.mk │ ├── imx-lib │ │ ├── Config.in │ │ ├── imx-lib.hash │ │ └── imx-lib.mk │ ├── imx-m4fwloader │ │ ├── Config.in │ │ ├── imx-m4fwloader.hash │ │ └── imx-m4fwloader.mk │ ├── imx-parser │ │ ├── Config.in │ │ ├── imx-parser.hash │ │ └── imx-parser.mk │ ├── imx-sc-firmware │ │ ├── Config.in │ │ ├── imx-sc-firmware.hash │ │ └── imx-sc-firmware.mk │ ├── imx-uuc │ │ ├── Config.in │ │ ├── S80imx-uuc │ │ ├── imx-uuc.hash │ │ ├── imx-uuc.mk │ │ └── imx-uuc.service │ ├── imx-vpu-hantro │ │ ├── 0001-Fix-ion.h-header-inclusion-to-be-standard.patch │ │ ├── Config.in │ │ ├── imx-vpu-hantro.hash │ │ └── imx-vpu-hantro.mk │ ├── imx-vpu │ │ ├── Config.in │ │ ├── imx-vpu.hash │ │ └── imx-vpu.mk │ ├── imx-vpuwrap │ │ ├── Config.in │ │ ├── imx-vpuwrap.hash │ │ └── imx-vpuwrap.mk │ ├── kernel-module-imx-gpu-viv │ │ ├── Config.in │ │ ├── kernel-module-imx-gpu-viv.hash │ │ └── kernel-module-imx-gpu-viv.mk │ └── libz160 │ │ ├── Config.in │ │ ├── libz160.hash │ │ └── libz160.mk ├── freeswitch-mod-bcg729 │ ├── Config.in │ ├── freeswitch-mod-bcg729.hash │ └── freeswitch-mod-bcg729.mk ├── freeswitch │ ├── Config.in │ ├── freeswitch.hash │ └── freeswitch.mk ├── freetype │ ├── Config.in │ ├── freetype.hash │ └── freetype.mk ├── fscryptctl │ ├── Config.in │ ├── fscryptctl.hash │ └── fscryptctl.mk ├── fstrcmp │ ├── 0001-disable-rpath.patch │ ├── Config.in │ ├── fstrcmp.hash │ └── fstrcmp.mk ├── fswebcam │ ├── Config.in │ ├── fswebcam.hash │ └── fswebcam.mk ├── ftop │ ├── 0001-overflow.patch │ ├── Config.in │ ├── ftop.hash │ └── ftop.mk ├── fwts │ ├── 0001-build-do-not-use-Werror.patch │ ├── Config.in │ ├── fwts.hash │ └── fwts.mk ├── fwup │ ├── Config.in │ ├── Config.in.host │ ├── fwup.hash │ └── fwup.mk ├── fxload │ ├── Config.in │ ├── fxload.hash │ └── fxload.mk ├── gamin │ ├── 0001-no-abstract-sockets.patch │ ├── 0002-no-const-return.patch │ ├── 0003-fix-missing-PTHREAD_MUTEX_RECURSIVE_NP.patch │ ├── Config.in │ ├── gamin.hash │ └── gamin.mk ├── gauche │ ├── 0001-fix-so-suffix.patch │ ├── Config.in │ ├── gauche.hash │ └── gauche.mk ├── gawk │ ├── 0001-no-versioned.patch │ ├── Config.in │ ├── gawk.hash │ └── gawk.mk ├── gcc │ ├── 5.5.0 │ │ ├── 0001-m68k-coldfire-pr68467.patch │ │ ├── 0002-libsanitizer-Use-pre-computed-size.patch │ │ ├── 100-uclibc-conf.patch │ │ ├── 120-gcc-config.gcc-fix-typo-for-powerpc-e6500-cpu_is_64b.patch │ │ ├── 301-missing-execinfo_h.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 830-arm_unbreak_armv4t.patch │ │ ├── 831-ARM-PR-target-70473-Reduce-size-of-Cortex-A8-automat.patch │ │ ├── 840-microblaze-enable-dwarf-eh-support.patch │ │ ├── 850-libstdcxx-uclibc-c99.patch │ │ ├── 860-cilk-wchar.patch │ │ ├── 870-xtensa-add-mauto-litpools-option.patch │ │ ├── 871-xtensa-reimplement-register-spilling.patch │ │ ├── 874-xtensa-add-uclinux-support.patch │ │ ├── 875-xtensa-implement-trap-pattern.patch │ │ ├── 880-gcc-nios2-Add-IJMP_REGS-enum.patch │ │ ├── 890-fix-m68k-compile.patch │ │ ├── 900-libitm-fixes-for-musl-support.patch │ │ ├── 901-fixincludes-update-for-musl-support.patch │ │ ├── 902-unwind-fix-for-musl.patch │ │ ├── 903-libstdc++-libgfortran-gthr-workaround-for-musl.patch │ │ ├── 904-musl-libc-config.patch │ │ ├── 905-add-musl-support-to-gcc.patch │ │ ├── 906-mips-musl-support.patch │ │ ├── 907-x86-musl-support.patch │ │ ├── 908-arm-musl-support.patch │ │ ├── 909-aarch64-musl-support.patch │ │ ├── 910-microblaze-musl-and-uclibc.patch │ │ ├── 911-ppc-musl-support.patch │ │ ├── 912-sh-musl-support.patch │ │ ├── 930-libgcc-disable-split-stack-nothreads.patch │ │ ├── 940-uclinux-enable-threads.patch │ │ └── 941-mips-Add-support-for-mips-r6-musl.patch │ ├── 7.5.0 │ │ ├── 0001-uclibc-conf.patch │ │ ├── 0002-arm-softfloat-libgcc.patch │ │ ├── 0003-cilk-fix-build-without-wchar.patch │ │ ├── 0004-Revert-2016-01-21-Ajit-Agarwal-ajitkum-xilinx.com.patch │ │ ├── 0005-PR-target-81497-Fix-arm_acle.h-for-C.patch │ │ ├── 0006-gcc-define-_REENTRANT-for-RISC-V-when-pthread-is-pas.patch │ │ └── 0007-xtensa-fix-PR-target-91880.patch │ ├── 8.4.0 │ │ └── 0001-xtensa-fix-PR-target-91880.patch │ ├── 9.3.0 │ │ ├── 0001-xtensa-fix-PR-target-91880.patch │ │ ├── 0002-or1k-Fix-issue-with-set_got-clobbering-LR-r9.patch │ │ └── 0003-gcc-define-_REENTRANT-for-RISC-V-when-pthread-is-pas.patch │ ├── Config.in.host │ ├── arc-2019.09-release │ │ └── 0100-uclibc-conf.patch │ ├── gcc-final │ │ ├── gcc-final.hash │ │ └── gcc-final.mk │ ├── gcc-initial │ │ ├── gcc-initial.hash │ │ └── gcc-initial.mk │ ├── gcc.hash │ └── gcc.mk ├── gcnano-binaries │ ├── Config.in │ ├── gcnano-binaries.hash │ └── gcnano-binaries.mk ├── gconf │ ├── Config.in │ ├── gconf.hash │ └── gconf.mk ├── gcr │ ├── Config.in │ ├── gcr.hash │ └── gcr.mk ├── gd │ ├── 0001-bmp-check-return-value-in-gdImageBmpPtr.patch │ ├── 0002-Fix-420-Potential-infinite-loop-in-gdImageCreateFrom.patch │ ├── 0003-Fix-501-Uninitialized-read-in-gdImageCreateFromXbm-C.patch │ ├── 0004-Fix-492-Potential-double-free-in-gdImage-Ptr.patch │ ├── Config.in │ ├── gd.hash │ └── gd.mk ├── gdb │ ├── 8.1.1 │ │ ├── 0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ ├── 0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch │ │ ├── 0003-use-asm-sgidefs.h.patch │ │ ├── 0004-gdbserver-fix-build-for-m68k.patch │ │ ├── 0005-nat-fork-inferior-include-linux-ptrace.h.patch │ │ ├── 0006-Move-is_regular_file-from-common-utils.c-to-filestuf.patch │ │ └── 0007-gdb-Fix-ia64-defining-TRAP_HWBKPT-before-including-gdb_wait-h.patch │ ├── 8.2.1 │ │ ├── 0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ ├── 0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch │ │ ├── 0003-use-asm-sgidefs.h.patch │ │ ├── 0004-gdbserver-fix-build-for-m68k.patch │ │ └── 0005-nat-fork-inferior-include-linux-ptrace.h.patch │ ├── 8.3 │ │ ├── 0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ ├── 0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch │ │ ├── 0003-use-asm-sgidefs.h.patch │ │ ├── 0004-gdbserver-fix-build-for-m68k.patch │ │ └── 0005-nat-fork-inferior-include-linux-ptrace.h.patch │ ├── Config.in │ ├── Config.in.host │ ├── gdb-python-config │ ├── gdb.hash │ └── gdb.mk ├── gdbm │ ├── Config.in │ ├── gdbm.hash │ └── gdbm.mk ├── gdk-pixbuf │ ├── Config.in │ ├── gdk-pixbuf.hash │ └── gdk-pixbuf.mk ├── genext2fs │ ├── 0001-update-genext2fs.c-to-rev-1.118.patch │ ├── Config.in │ ├── Config.in.host │ ├── genext2fs.hash │ └── genext2fs.mk ├── gengetopt │ ├── 0001-configure.ac-add-disable-doc-option.patch │ ├── gengetopt.hash │ └── gengetopt.mk ├── genimage │ ├── Config.in.host │ ├── genimage.hash │ └── genimage.mk ├── genpart │ ├── 0001-fix-return-code.patch │ ├── Config.in │ ├── Config.in.host │ ├── genpart.hash │ └── genpart.mk ├── genromfs │ ├── 0001-build-system.patch │ ├── Config.in │ ├── genromfs.hash │ └── genromfs.mk ├── gensio │ ├── 0001-tests-Makefile-am-don-t-add-lpthread.patch │ ├── Config.in │ ├── gensio.hash │ └── gensio.mk ├── geoip │ ├── Config.in │ ├── geoip.hash │ └── geoip.mk ├── gerbera │ ├── 0001-cmake-FindLibMagic.cmake-fix-static-linking.patch │ ├── Config.in │ ├── S99gerbera │ ├── config.xml │ ├── gerbera.hash │ └── gerbera.mk ├── gesftpserver │ ├── 0001-Change-order-of-v3-attributes-according-to-draft-iet.patch │ ├── Config.in │ ├── gesftpserver.hash │ └── gesftpserver.mk ├── getent │ ├── Config.in │ ├── getent │ └── getent.mk ├── gettext-gnu │ ├── 0001-error_print_progname.patch │ ├── 0002-Update-after-gnulib-changed.patch │ ├── Config.in │ ├── gettext-gnu.hash │ └── gettext-gnu.mk ├── gettext-tiny │ ├── Config.in │ ├── gettext-tiny.hash │ ├── gettext-tiny.mk │ └── gettext-wrapper ├── gettext │ ├── Config.in │ └── gettext.mk ├── gflags │ ├── Config.in │ ├── gflags.hash │ └── gflags.mk ├── ghostscript-fonts │ ├── Config.in │ ├── ghostscript-fonts.hash │ └── ghostscript-fonts.mk ├── ghostscript │ ├── 0001-Fix-cross-compilation-issue.patch │ ├── Config.in │ ├── ghostscript.hash │ └── ghostscript.mk ├── giblib │ ├── 0001-fix-imlib2-detection.patch │ ├── Config.in │ ├── giblib.hash │ └── giblib.mk ├── giflib │ ├── 0001-Makefile-add-targets-to-manage-static-building.patch │ ├── Config.in │ ├── giflib.hash │ └── giflib.mk ├── git-crypt │ ├── Config.in │ ├── git-crypt.hash │ └── git-crypt.mk ├── git │ ├── Config.in │ ├── git.hash │ └── git.mk ├── gli │ ├── Config.in │ ├── gli.hash │ └── gli.mk ├── glib-networking │ ├── Config.in │ ├── glib-networking.hash │ └── glib-networking.mk ├── glibc │ ├── 06983fe52cfe8e4779035c27e8cc5d2caab31531 │ │ └── glibc.hash │ ├── 2.30-20-g50f20fe506abb8853641006a7b90a81af21d7b91 │ │ └── glibc.hash │ ├── 7630ed2fa60caea98f500e4a7a51b88f9bf1e176 │ │ └── glibc.hash │ ├── Config.in │ ├── arc-2019.09-release │ │ └── glibc.hash │ ├── glibc.hash │ ├── glibc.mk │ └── nsswitch.conf ├── glibmm │ ├── Config.in │ ├── glibmm.hash │ └── glibmm.mk ├── glm │ ├── Config.in │ ├── glm.hash │ └── glm.mk ├── glmark2 │ ├── Config.in │ ├── glmark2.hash │ └── glmark2.mk ├── glog │ ├── 0001-src-symbolize.cc-fix-build-without-dlfcn.h.patch │ ├── 0002-src-utilities-fix-build-without-pthread.patch │ ├── Config.in │ ├── glog.hash │ └── glog.mk ├── glorytun │ ├── Config.in │ ├── glorytun.hash │ └── glorytun.mk ├── glslsandbox-player │ ├── Config.in │ ├── glslsandbox-player.hash │ └── glslsandbox-player.mk ├── gmp │ ├── Config.in │ ├── gmp.hash │ └── gmp.mk ├── gmpc │ ├── Config.in │ ├── gmpc.hash │ └── gmpc.mk ├── gmrender-resurrect │ ├── Config.in │ ├── gmrender-resurrect.hash │ └── gmrender-resurrect.mk ├── gnu-efi │ ├── 0001-Make.defaults-don-t-override-ARCH-when-cross-compili.patch │ ├── 0002-Revert-efilink-fix-build-with-gcc-4.8.patch │ ├── Config.in │ ├── gnu-efi.hash │ └── gnu-efi.mk ├── gnuchess │ ├── Config.in │ ├── gnuchess.hash │ └── gnuchess.mk ├── gnupg │ ├── Config.in │ ├── Config.in.host │ ├── gnupg.hash │ └── gnupg.mk ├── gnupg2 │ ├── Config.in │ ├── gnupg2.hash │ └── gnupg2.mk ├── gnuplot │ ├── 0001-configure-add-without-demo-option.patch │ ├── 0002-use-gdlib-config-properly.patch │ ├── Config.in │ ├── gnuplot.hash │ └── gnuplot.mk ├── gnuradio │ ├── 0001-add-boost-unit_test_framework-required-only-when-ENA.patch │ ├── 0002-lib-CMakeLists-fix-neon-version-detection.patch │ ├── 0003-gr-digital-glfsr.h-drop-boost-cstdint.hpp-and-use-cs.patch │ ├── Config.in │ ├── gnuradio.hash │ └── gnuradio.mk ├── gnutls │ ├── Config.in │ ├── gnutls.hash │ └── gnutls.mk ├── go-bootstrap │ ├── Config.in.host │ ├── go-bootstrap.hash │ └── go-bootstrap.mk ├── go │ ├── 0001-build.go-explicit-option-for-crosscompilation.patch │ ├── Config.in.host │ ├── go.hash │ └── go.mk ├── gob2 │ ├── 0001-dont-include-from-prefix.patch │ ├── gob2.hash │ └── gob2.mk ├── google-breakpad │ ├── 0001-add-missing-asm-ptrace-include.patch │ ├── 0002-Replace-remaining-references-to-struct-ucontext-with.patch │ ├── 0003-src-client-linux-handler-exception_handler.cc-rename.patch │ ├── Config.in │ ├── Config.in.host │ ├── gen-syms.sh │ ├── google-breakpad.hash │ └── google-breakpad.mk ├── google-material-design-icons │ ├── Config.in │ ├── google-material-design-icons.hash │ └── google-material-design-icons.mk ├── googlefontdirectory │ ├── Config.in │ ├── googlefontdirectory.hash │ └── googlefontdirectory.mk ├── gperf │ ├── Config.in │ ├── gperf.hash │ └── gperf.mk ├── gpm │ ├── 0001-Added-musl-support-to-libgpm-and-the-daemon.patch │ ├── 0002-Install-unversioned-solibrary.patch │ ├── 0003-src-Makefile.in-Really-install-unversioned-solibrary.patch │ ├── 0004-Use-sigemptyset-API-instead-of-__sigemptyset.patch │ ├── 0005-fix-building-w-newer-glibc.patch │ ├── Config.in │ ├── gpm.hash │ └── gpm.mk ├── gpsd │ ├── 0001-SConstruct-do-not-force-O2-by-default.patch │ ├── Config.in │ ├── S50gpsd │ ├── gpsd.hash │ └── gpsd.mk ├── gptfdisk │ ├── 0001-ldlibs.patch │ ├── Config.in │ ├── Config.in.host │ ├── gptfdisk.hash │ └── gptfdisk.mk ├── gqrx │ ├── Config.in │ ├── gqrx.hash │ └── gqrx.mk ├── gqview │ ├── 0001-make.patch │ ├── Config.in │ ├── gqview.hash │ └── gqview.mk ├── gr-osmosdr │ ├── Config.in │ ├── gr-osmosdr.hash │ └── gr-osmosdr.mk ├── granite │ ├── Config.in │ ├── granite.hash │ └── granite.mk ├── grantlee │ ├── 0001-Remove-vestigial-ansi-flag.patch │ ├── Config.in │ ├── grantlee.hash │ └── grantlee.mk ├── graphite2 │ ├── Config.in │ ├── graphite2.hash │ └── graphite2.mk ├── grep │ ├── Config.in │ ├── grep.hash │ └── grep.mk ├── grpc │ ├── 0001-target-build-using-host-plugin.patch │ ├── 0002-Properly-detect-the-availability-of-pthread_setname_.patch │ ├── 0003-wrap_memcpy.cc-add-GPR_DISABLE_WRAPPED_MEMCPY.patch │ ├── Config.in │ ├── grpc.hash │ └── grpc.mk ├── gsettings-desktop-schemas │ ├── Config.in │ ├── gsettings-desktop-schemas.hash │ └── gsettings-desktop-schemas.mk ├── gsl │ ├── Config.in │ ├── gsl.hash │ └── gsl.mk ├── gssdp │ ├── Config.in │ ├── gssdp.hash │ └── gssdp.mk ├── gstreamer1 │ ├── Config.in │ ├── gst-omx │ │ ├── Config.in │ │ ├── gst-omx.hash │ │ └── gst-omx.mk │ ├── gst1-imx │ │ ├── 0001-waf-update-to-2-0-12.patch │ │ ├── Config.in │ │ ├── gst1-imx.hash │ │ └── gst1-imx.mk │ ├── gst1-interpipe │ │ ├── Config.in │ │ ├── gst1-interpipe.hash │ │ └── gst1-interpipe.mk │ ├── gst1-libav │ │ ├── Config.in │ │ ├── gst1-libav.hash │ │ └── gst1-libav.mk │ ├── gst1-plugins-bad │ │ ├── Config.in │ │ ├── gst1-plugins-bad.hash │ │ └── gst1-plugins-bad.mk │ ├── gst1-plugins-base │ │ ├── 0001-meson-static-linkig-of-tools-needs-gmodule_dep.patch │ │ ├── Config.in │ │ ├── gst1-plugins-base.hash │ │ └── gst1-plugins-base.mk │ ├── gst1-plugins-bayer2rgb-neon │ │ ├── Config.in │ │ ├── gst1-plugins-bayer2rgb-neon.hash │ │ └── gst1-plugins-bayer2rgb-neon.mk │ ├── gst1-plugins-good │ │ ├── Config.in │ │ ├── gst1-plugins-good.hash │ │ └── gst1-plugins-good.mk │ ├── gst1-plugins-ugly │ │ ├── Config.in │ │ ├── gst1-plugins-ugly.hash │ │ └── gst1-plugins-ugly.mk │ ├── gst1-rtsp-server │ │ ├── Config.in │ │ ├── gst1-rtsp-server.hash │ │ └── gst1-rtsp-server.mk │ ├── gst1-shark │ │ ├── Config.in │ │ ├── gst1-shark.hash │ │ └── gst1-shark.mk │ ├── gst1-vaapi │ │ ├── Config.in │ │ ├── gst1-vaapi.hash │ │ └── gst1-vaapi.mk │ ├── gst1-validate │ │ ├── Config.in │ │ ├── gst1-validate.hash │ │ └── gst1-validate.mk │ ├── gstreamer1-editing-services │ │ ├── Config.in │ │ ├── gstreamer1-editing-services.hash │ │ └── gstreamer1-editing-services.mk │ ├── gstreamer1-mm │ │ ├── Config.in │ │ ├── gstreamer1-mm.hash │ │ └── gstreamer1-mm.mk │ ├── gstreamer1.mk │ └── gstreamer1 │ │ ├── Config.in │ │ ├── gstreamer1.hash │ │ └── gstreamer1.mk ├── gtest │ ├── Config.in │ ├── gtest.hash │ └── gtest.mk ├── gtk2-engines │ ├── Config.in │ ├── gtk2-engines.hash │ └── gtk2-engines.mk ├── gtkmm3 │ ├── Config.in │ ├── gtkmm3.hash │ └── gtkmm3.mk ├── gtkperf │ ├── Config.in │ ├── gtkperf.hash │ └── gtkperf.mk ├── gtksourceview │ ├── Config.in │ ├── gtksourceview.hash │ └── gtksourceview.mk ├── guile │ ├── 0001-fix_arm_endianness.patch │ ├── 0002-calculate-csqrt_manually.patch │ ├── 0003-workaround-ice-ssa-corruption.patch │ ├── 0004-Makefile.am-fix-build-without-makeinfo.patch │ ├── Config.in │ ├── guile.hash │ └── guile.mk ├── gupnp-av │ ├── Config.in │ ├── gupnp-av.hash │ └── gupnp-av.mk ├── gupnp-dlna │ ├── Config.in │ ├── gupnp-dlna.hash │ └── gupnp-dlna.mk ├── gupnp-tools │ ├── 0001-src-meson.build-upload-needs-gupnp-av.patch │ ├── Config.in │ ├── gupnp-tools.hash │ └── gupnp-tools.mk ├── gupnp │ ├── Config.in │ ├── gupnp.hash │ └── gupnp.mk ├── gutenprint │ ├── 0001-use-pregen-xmli18n-header.patch │ ├── 0002-cups-support-replaces-static-with-static-libtool-lib.patch │ ├── Config.in │ ├── gutenprint.hash │ └── gutenprint.mk ├── gvfs │ ├── 0001-admin-Prevent-access-if-any-authentication-agent-isn-t-available.patch │ ├── 0002-admin-Add-query_info_on_read-write-functionality.patch │ ├── 0003-admin-Allow-changing-file-owner.patch │ ├── 0004-admin-Use-fsuid-to-ensure-correct-file-ownership.patch │ ├── 0005-admin-Ensure-correct-ownership-when-moving-to-file-uri.patch │ ├── 0006-gvfsdaemon-Check-that-the-connecting-client-is-the-same-user.patch │ ├── Config.in │ ├── gvfs.hash │ └── gvfs.mk ├── gzip │ ├── Config.in │ ├── gzip.hash │ └── gzip.mk ├── hackrf │ ├── 0001-Don-t-require-a-C-compiler.patch │ ├── Config.in │ ├── hackrf.hash │ └── hackrf.mk ├── hans │ ├── Config.in │ ├── hans.hash │ └── hans.mk ├── haproxy │ ├── Config.in │ ├── haproxy.hash │ └── haproxy.mk ├── harfbuzz │ ├── Config.in │ ├── harfbuzz.hash │ └── harfbuzz.mk ├── haserl │ ├── 0001-add-haserl_lualib.inc.patch │ ├── Config.in │ ├── haserl.hash │ └── haserl.mk ├── haveged │ ├── Config.in │ ├── S21haveged │ ├── haveged.hash │ ├── haveged.mk │ └── haveged.service ├── hdparm │ ├── Config.in │ ├── hdparm.hash │ └── hdparm.mk ├── heimdal │ ├── heimdal.hash │ └── heimdal.mk ├── heirloom-mailx │ ├── 0001-Patched-out-SSL2-support-since-it-is-no-longer-suppo.patch │ ├── 0002-fix-libressl-support.patch │ ├── Config.in │ ├── heirloom-mailx.hash │ └── heirloom-mailx.mk ├── hiawatha │ ├── Config.in │ ├── hiawatha.hash │ └── hiawatha.mk ├── hicolor-icon-theme │ ├── Config.in │ ├── hicolor-icon-theme.hash │ └── hicolor-icon-theme.mk ├── hidapi │ ├── 0001-hidtest-dont-use-a-C-source-file-since-it-s-pure-C.patch │ ├── Config.in │ ├── hidapi.hash │ └── hidapi.mk ├── hiredis │ ├── Config.in │ ├── hiredis.hash │ └── hiredis.mk ├── hostapd │ ├── 0001-AP-Silently-ignore-management-frame-from-unexpected-.patch │ ├── Config.in │ ├── hostapd.hash │ └── hostapd.mk ├── hplip │ ├── 0001-build-use-pkg-config-to-discover-libusb.patch │ ├── 0002-configure.in-fix-AM_INIT_AUTOMAKE-call.patch │ ├── Config.in │ ├── hplip.hash │ └── hplip.mk ├── htop │ ├── 0001-MetersPanel-remove-0xe2-from-MetersPanel.c.patch │ ├── Config.in │ ├── htop.hash │ └── htop.mk ├── httping │ ├── 0001-fix-math-library-linking.patch │ ├── 0002-Makefile-allow-build-without-gettext.patch │ ├── Config.in │ ├── httping.hash │ └── httping.mk ├── hwdata │ ├── Config.in │ ├── hwdata.hash │ └── hwdata.mk ├── hwloc │ ├── Config.in │ ├── hwloc.hash │ └── hwloc.mk ├── i2c-tools │ ├── Config.in │ ├── i2c-tools.hash │ └── i2c-tools.mk ├── i2pd │ ├── 0001-build-CMakeLists.txt-don-t-install-source-and-licens.patch │ ├── Config.in │ ├── S99i2pd │ ├── i2pd.hash │ ├── i2pd.mk │ └── i2pd.service ├── i7z │ ├── Config.in │ ├── i7z.hash │ └── i7z.mk ├── ibrcommon │ ├── 0001-ibrcommon-data-File.cpp-support-POSIX-basename-call.patch │ ├── 0002-ibrcommon-added-openssl-1.1-compatibility-264.patch │ ├── 0003-ibrcommon-ssl-gcm-fix-static-build-with-openssl.patch │ ├── Config.in │ ├── ibrcommon.hash │ └── ibrcommon.mk ├── ibrdtn-tools │ ├── Config.in │ ├── ibrdtn-tools.hash │ └── ibrdtn-tools.mk ├── ibrdtn │ ├── Config.in │ ├── ibrdtn.hash │ └── ibrdtn.mk ├── ibrdtnd │ ├── 0001-ibrdtnd-added-openssl-compatibility.patch │ ├── 0002-SecurityCertificateManager.cpp-include-cstring-267.patch │ ├── Config.in │ ├── ibrdtnd.hash │ └── ibrdtnd.mk ├── icu │ ├── 0001-dont-build-static-dynamic-twice.patch │ ├── 0002-workaround-toolchain-bugs.patch │ ├── 0003-link-icudata-as-data-only.patch │ ├── 0004-fix-static-linking-with-icu-uc.patch │ ├── 0005-Fix-big-endian-build.patch │ ├── 0006-ICU-20751-Fix-nios2-build.patch │ ├── 0007-double-conversion-enable-for-microblaze.patch │ ├── 0008-double-conversion-enable-for-xtensa.patch │ ├── Config.in │ ├── icu.hash │ └── icu.mk ├── ifenslave │ ├── Config.in │ ├── ifenslave.hash │ └── ifenslave.mk ├── ifmetric │ ├── 0001-Fix-issue-NETLINK-Packet-too-small-or-truncated-92-1.patch │ ├── Config.in │ ├── ifmetric.hash │ └── ifmetric.mk ├── ifplugd │ ├── 0001-cross.patch │ ├── 0002-fix-headers.patch │ ├── 0003-no-cxx.patch │ ├── 0004-musl-fix-types.patch │ ├── Config.in │ ├── ifplugd.hash │ └── ifplugd.mk ├── iftop │ ├── Config.in │ ├── iftop.hash │ └── iftop.mk ├── ifupdown-scripts │ ├── Config.in │ ├── S40network │ ├── ifupdown-scripts.mk │ ├── network.service │ ├── network │ │ ├── if-down.d │ │ │ └── .empty │ │ ├── if-post-down.d │ │ │ └── .empty │ │ ├── if-pre-up.d │ │ │ └── wait_iface │ │ └── if-up.d │ │ │ └── .empty │ └── nfs_check ├── ifupdown │ ├── 0001-dont-use-dpkg-architecture.patch │ ├── Config.in │ ├── ifupdown.hash │ └── ifupdown.mk ├── igd2-for-linux │ ├── Config.in │ ├── S99upnpd │ ├── igd2-for-linux.hash │ ├── igd2-for-linux.mk │ └── upnpd.service ├── igh-ethercat │ ├── Config.in │ ├── igh-ethercat.hash │ └── igh-ethercat.mk ├── igmpproxy │ ├── Config.in │ ├── igmpproxy.hash │ └── igmpproxy.mk ├── ijs │ ├── Config.in │ ├── ijs.hash │ └── ijs.mk ├── ima-evm-utils │ ├── Config.in │ ├── ima-evm-utils.hash │ └── ima-evm-utils.mk ├── imagemagick │ ├── Config.in │ ├── Config.in.host │ ├── imagemagick.hash │ └── imagemagick.mk ├── imlib2 │ ├── Config.in │ ├── imlib2.hash │ └── imlib2.mk ├── imx-mkimage │ ├── 0001-add-support-for-overriding-bl32-and-bl33-not-only-bl.patch │ ├── 0002-add-ldflags-to-link-step.patch │ ├── 0003-Add-unused-fake-version.patch │ ├── Config.in.host │ ├── imx-mkimage.hash │ └── imx-mkimage.mk ├── imx-usb-loader │ ├── Config.in │ ├── Config.in.host │ ├── imx-usb-loader.hash │ └── imx-usb-loader.mk ├── inadyn │ ├── Config.in │ ├── S70inadyn │ ├── inadyn.conf │ ├── inadyn.hash │ ├── inadyn.mk │ └── inadyn.service ├── inconsolata │ ├── Config.in │ ├── inconsolata.hash │ └── inconsolata.mk ├── initscripts │ ├── Config.in │ ├── init.d │ │ ├── S20urandom │ │ ├── rcK │ │ └── rcS │ └── initscripts.mk ├── inotify-tools │ ├── Config.in │ ├── inotify-tools.hash │ └── inotify-tools.mk ├── input-event-daemon │ ├── Config.in │ ├── S99input-event-daemon │ ├── input-event-daemon.hash │ ├── input-event-daemon.mk │ └── input-event-daemon.service ├── intel-gmmlib │ ├── Config.in │ ├── intel-gmmlib.hash │ └── intel-gmmlib.mk ├── intel-mediadriver │ ├── 0001-Drop-hardening-related-flags.patch │ ├── Config.in │ ├── intel-mediadriver.hash │ └── intel-mediadriver.mk ├── intel-mediasdk │ ├── 0001-Don-t-force-fstack-protector.patch │ ├── Config.in │ ├── intel-mediasdk.hash │ └── intel-mediasdk.mk ├── intel-microcode │ ├── Config.in │ ├── intel-microcode.hash │ └── intel-microcode.mk ├── intltool │ ├── 0001-perl-5.26-compatibility.patch │ ├── intltool.hash │ └── intltool.mk ├── iodine │ ├── 0001-disable-systemd-and-selinux.patch │ ├── Config.in │ ├── iodine.hash │ └── iodine.mk ├── iostat │ ├── 0001-cpunum.patch │ ├── Config.in │ ├── iostat.hash │ └── iostat.mk ├── iotop │ ├── 0001-Fix-build-error-with-Python-3.patch │ ├── Config.in │ ├── iotop.hash │ └── iotop.mk ├── iozone │ ├── 0001-Add-new-targets-for-iozone.patch │ ├── Config.in │ ├── iozone.hash │ └── iozone.mk ├── iperf │ ├── Config.in │ ├── iperf.hash │ └── iperf.mk ├── iperf3 │ ├── Config.in │ ├── iperf3.hash │ └── iperf3.mk ├── ipmitool │ ├── 0001-Fix-missing-stddef.h-include.patch │ ├── 0002-ID-461-OpenSSL-1.1-compatibility-error-storage-size-.patch │ ├── 0003-ID-461-Make-compiler-happier-about-changes-related-t.patch │ ├── 0004-ID-480-ipmitool-coredumps-in-EVP_CIPHER_CTX_init.patch │ ├── 0005-ID-480-Call-EVP_CIPHER_CTX_free-instead-of-EVP_CIPHE.patch │ ├── 0006-lanplus-Fix-compile-with-deprecated-APIs-disabled.patch │ ├── Config.in │ ├── ipmitool.hash │ └── ipmitool.mk ├── ipmiutil │ ├── 0001-no-build-doc.patch │ ├── Config.in │ ├── ipmiutil.hash │ └── ipmiutil.mk ├── iproute2 │ ├── Config.in │ ├── iproute2.hash │ └── iproute2.mk ├── iprutils │ ├── Config.in │ ├── iprutils.hash │ └── iprutils.mk ├── ipsec-tools │ ├── 0001-susv3-legacy.patch │ ├── 0002-configure-automake.patch │ ├── 0003-Don-t-link-against-libfl.patch │ ├── 0004-CVE-2015-4047.patch │ ├── 0005-CVE-2016-10396.patch │ ├── 0006-openssl-1.1.patch │ ├── Config.in │ ├── ipsec-tools.hash │ └── ipsec-tools.mk ├── ipset │ ├── Config.in │ ├── ipset.hash │ └── ipset.mk ├── iptables │ ├── Config.in │ ├── iptables.hash │ └── iptables.mk ├── iptraf-ng │ ├── Config.in │ ├── iptraf-ng.hash │ └── iptraf-ng.mk ├── iputils │ ├── 0001-meson.build-fix-static-build-with-libidn2.patch │ ├── Config.in │ ├── iputils.hash │ └── iputils.mk ├── irda-utils │ ├── 0001-daemon.patch │ ├── 0002-nommu.patch │ ├── 0003-subdir.patch │ ├── 0004-musl.patch │ ├── Config.in │ ├── irda-utils.hash │ └── irda-utils.mk ├── irqbalance │ ├── Config.in │ ├── S13irqbalance │ ├── irqbalance.hash │ ├── irqbalance.mk │ └── irqbalance.service ├── irrlicht │ ├── 0001-override-CPPFLAGS-CXXFLAGS-and-CFLAGS-in-Makefile.patch │ ├── 0002-remove-sys-sysctl.h.patch │ ├── Config.in │ ├── irrlicht.hash │ └── irrlicht.mk ├── irssi │ ├── Config.in │ ├── irssi.hash │ └── irssi.mk ├── isl │ ├── isl.hash │ └── isl.mk ├── iucode-tool │ ├── Config.in │ ├── S00iucode-tool │ ├── iucode-tool.hash │ ├── iucode-tool.mk │ └── iucode.service ├── iw │ ├── Config.in │ ├── iw.hash │ └── iw.mk ├── iwd │ ├── Config.in │ ├── iwd.hash │ └── iwd.mk ├── jack1 │ ├── Config.in │ ├── jack1.hash │ └── jack1.mk ├── jack2 │ ├── Config.in │ ├── jack2.hash │ └── jack2.mk ├── jailhouse │ ├── Config.in │ ├── jailhouse.hash │ └── jailhouse.mk ├── jansson │ ├── Config.in │ ├── jansson.hash │ └── jansson.mk ├── janus-gateway │ ├── 0001-disable-ssp.patch │ ├── 0002-Add-test-for-Wunused-but-set-variable.patch │ ├── Config.in │ ├── janus-gateway.hash │ └── janus-gateway.mk ├── jasper │ ├── 0001-verify-data-range-CVE-2018-19541.patch │ ├── 0002-check-null-in-jp2_decode-CVE-2018-19542.patch │ ├── 0003-test-asclen-CVE-2018-19540.patch │ ├── Config.in │ ├── jasper.hash │ └── jasper.mk ├── jemalloc │ ├── Config.in │ ├── jemalloc.hash │ └── jemalloc.mk ├── jhead │ ├── Config.in │ ├── jhead.hash │ └── jhead.mk ├── jimtcl │ ├── Config.in │ ├── jimtcl.hash │ └── jimtcl.mk ├── jitterentropy-library │ ├── 0001-Makefile-cleanup-install.patch │ ├── 0002-Makefile-add-additional-install-targets.patch │ ├── 0003-Makefile-allow-the-user-to-disable-stack-protector.patch │ ├── Config.in │ ├── jitterentropy-library.hash │ └── jitterentropy-library.mk ├── jo │ ├── Config.in │ ├── jo.hash │ └── jo.mk ├── joe │ ├── Config.in │ ├── joe.hash │ └── joe.mk ├── jose │ ├── 0001-lib-hsh.c-rename-hsh-local-variable.patch │ ├── 0002-configure-fix-build-with-old-compilers.patch │ ├── Config.in │ ├── jose.hash │ └── jose.mk ├── jpeg-turbo │ ├── jpeg-turbo.hash │ └── jpeg-turbo.mk ├── jpeg │ ├── Config.in │ └── jpeg.mk ├── jq │ ├── Config.in │ ├── Config.in.host │ ├── jq.hash │ └── jq.mk ├── jquery-datetimepicker │ ├── Config.in │ ├── jquery-datetimepicker.hash │ └── jquery-datetimepicker.mk ├── jquery-keyboard │ ├── Config.in │ ├── jquery-keyboard.hash │ └── jquery-keyboard.mk ├── jquery-mobile │ ├── Config.in │ ├── jquery-mobile.hash │ └── jquery-mobile.mk ├── jquery-sidebar │ ├── Config.in │ ├── jquery-sidebar.hash │ └── jquery-sidebar.mk ├── jquery-sparkline │ ├── Config.in │ ├── jquery-sparkline.hash │ └── jquery-sparkline.mk ├── jquery-ui-themes │ ├── Config.in │ ├── jquery-ui-themes.hash │ └── jquery-ui-themes.mk ├── jquery-ui │ ├── Config.in │ ├── jquery-ui.hash │ └── jquery-ui.mk ├── jquery-validation │ ├── Config.in │ ├── jquery-validation.hash │ └── jquery-validation.mk ├── jquery │ ├── Config.in │ ├── jquery.hash │ └── jquery.mk ├── jsmin │ ├── Config.in │ ├── Config.in.host │ ├── jsmin.hash │ └── jsmin.mk ├── jsmn │ ├── Config.in │ ├── jsmn.hash │ └── jsmn.mk ├── json-c │ ├── Config.in │ ├── json-c.hash │ └── json-c.mk ├── json-for-modern-cpp │ ├── Config.in │ ├── json-for-modern-cpp.hash │ └── json-for-modern-cpp.mk ├── json-glib │ ├── Config.in │ ├── json-glib.hash │ └── json-glib.mk ├── json-javascript │ ├── Config.in │ ├── json-javascript.hash │ └── json-javascript.mk ├── jsoncpp │ ├── 0001-Meson-updates.patch │ ├── Config.in │ ├── jsoncpp.hash │ └── jsoncpp.mk ├── kbd │ ├── Config.in │ ├── kbd.hash │ └── kbd.mk ├── keepalived │ ├── 0001-Ensure-that-lm-linker-library-flag-is-always-set.patch │ ├── Config.in │ ├── keepalived.hash │ └── keepalived.mk ├── kexec-lite │ ├── 0001-clean-restart.patch │ ├── Config.in │ ├── kexec-lite.hash │ └── kexec-lite.mk ├── kexec │ ├── Config.in │ ├── kexec.hash │ └── kexec.mk ├── keyutils │ ├── 0001-fix-install-rule.patch │ ├── 0002-cifs.patch │ ├── Config.in │ ├── keyutils.hash │ └── keyutils.mk ├── kf5 │ ├── Config.in │ ├── kf5-extra-cmake-modules │ │ ├── Config.in │ │ ├── kf5-extra-cmake-modules.hash │ │ └── kf5-extra-cmake-modules.mk │ ├── kf5-kcoreaddons │ │ ├── Config.in │ │ ├── kf5-kcoreaddons.hash │ │ └── kf5-kcoreaddons.mk │ ├── kf5-modemmanager-qt │ │ ├── Config.in │ │ ├── kf5-modemmanager-qt.hash │ │ └── kf5-modemmanager-qt.mk │ ├── kf5-networkmanager-qt │ │ ├── Config.in │ │ ├── kf5-networkmanager-qt.hash │ │ └── kf5-networkmanager-qt.mk │ └── kf5.mk ├── kismet │ ├── 0001-ncurses.patch │ ├── 0002-nobsd.patch │ ├── 0003-fix-curses-libs-ordering.patch │ ├── 0004-no-include-host-paths.patch │ ├── 0005-dumpfile_tuntap-don-t-include-linux-if_tun.h-kernel-.patch │ ├── Config.in │ ├── kismet.hash │ └── kismet.mk ├── kmod │ ├── 0001-fix-O_CLOEXEC.patch │ ├── 0002-Do-not-check-for-undefined-symbols-when-building-the.patch │ ├── 0003-Makefile.am-filter-Wl-no-undefined.patch │ ├── Config.in │ ├── kmod.hash │ └── kmod.mk ├── kmscube │ ├── Config.in │ ├── kmscube.hash │ └── kmscube.mk ├── kmsxx │ ├── Config.in │ ├── kmsxx.hash │ └── kmsxx.mk ├── knock │ ├── Config.in │ ├── knock.hash │ └── knock.mk ├── kodi-audiodecoder-modplug │ ├── Config.in │ ├── kodi-audiodecoder-modplug.hash │ └── kodi-audiodecoder-modplug.mk ├── kodi-audiodecoder-nosefart │ ├── Config.in │ ├── kodi-audiodecoder-nosefart.hash │ └── kodi-audiodecoder-nosefart.mk ├── kodi-audiodecoder-sidplay │ ├── Config.in │ ├── kodi-audiodecoder-sidplay.hash │ └── kodi-audiodecoder-sidplay.mk ├── kodi-audiodecoder-snesapu │ ├── Config.in │ ├── kodi-audiodecoder-snesapu.hash │ └── kodi-audiodecoder-snesapu.mk ├── kodi-audiodecoder-stsound │ ├── Config.in │ ├── kodi-audiodecoder-stsound.hash │ └── kodi-audiodecoder-stsound.mk ├── kodi-audiodecoder-timidity │ ├── Config.in │ ├── kodi-audiodecoder-timidity.hash │ └── kodi-audiodecoder-timidity.mk ├── kodi-audiodecoder-vgmstream │ ├── Config.in │ ├── kodi-audiodecoder-vgmstream.hash │ └── kodi-audiodecoder-vgmstream.mk ├── kodi-audioencoder-flac │ ├── Config.in │ ├── kodi-audioencoder-flac.hash │ └── kodi-audioencoder-flac.mk ├── kodi-audioencoder-lame │ ├── Config.in │ ├── kodi-audioencoder-lame.hash │ └── kodi-audioencoder-lame.mk ├── kodi-audioencoder-vorbis │ ├── Config.in │ ├── kodi-audioencoder-vorbis.hash │ └── kodi-audioencoder-vorbis.mk ├── kodi-audioencoder-wav │ ├── Config.in │ ├── kodi-audioencoder-wav.hash │ └── kodi-audioencoder-wav.mk ├── kodi-inputstream-adaptive │ ├── Config.in │ ├── kodi-inputstream-adaptive.hash │ └── kodi-inputstream-adaptive.mk ├── kodi-inputstream-rtmp │ ├── Config.in │ ├── kodi-inputstream-rtmp.hash │ └── kodi-inputstream-rtmp.mk ├── kodi-jsonschemabuilder │ ├── kodi-jsonschemabuilder.hash │ └── kodi-jsonschemabuilder.mk ├── kodi-peripheral-joystick │ ├── Config.in │ ├── kodi-peripheral-joystick.hash │ └── kodi-peripheral-joystick.mk ├── kodi-peripheral-steamcontroller │ ├── Config.in │ ├── kodi-peripheral-steamcontroller.hash │ └── kodi-peripheral-steamcontroller.mk ├── kodi-peripheral-xarcade │ ├── Config.in │ ├── kodi-peripheral-xarcade.hash │ └── kodi-peripheral-xarcade.mk ├── kodi-platform │ ├── 0001-kodiplatform-config.cmake-fix-for-cross-compilation.patch │ ├── Config.in │ ├── kodi-platform.hash │ └── kodi-platform.mk ├── kodi-pvr-argustv │ ├── Config.in │ ├── kodi-pvr-argustv.hash │ └── kodi-pvr-argustv.mk ├── kodi-pvr-dvblink │ ├── Config.in │ ├── kodi-pvr-dvblink.hash │ └── kodi-pvr-dvblink.mk ├── kodi-pvr-dvbviewer │ ├── Config.in │ ├── kodi-pvr-dvbviewer.hash │ └── kodi-pvr-dvbviewer.mk ├── kodi-pvr-filmon │ ├── Config.in │ ├── kodi-pvr-filmon.hash │ └── kodi-pvr-filmon.mk ├── kodi-pvr-hdhomerun │ ├── Config.in │ ├── kodi-pvr-hdhomerun.hash │ └── kodi-pvr-hdhomerun.mk ├── kodi-pvr-hts │ ├── Config.in │ ├── kodi-pvr-hts.hash │ └── kodi-pvr-hts.mk ├── kodi-pvr-iptvsimple │ ├── Config.in │ ├── kodi-pvr-iptvsimple.hash │ └── kodi-pvr-iptvsimple.mk ├── kodi-pvr-mediaportal-tvserver │ ├── Config.in │ ├── kodi-pvr-mediaportal-tvserver.hash │ └── kodi-pvr-mediaportal-tvserver.mk ├── kodi-pvr-mythtv │ ├── Config.in │ ├── kodi-pvr-mythtv.hash │ └── kodi-pvr-mythtv.mk ├── kodi-pvr-nextpvr │ ├── Config.in │ ├── kodi-pvr-nextpvr.hash │ └── kodi-pvr-nextpvr.mk ├── kodi-pvr-njoy │ ├── Config.in │ ├── kodi-pvr-njoy.hash │ └── kodi-pvr-njoy.mk ├── kodi-pvr-pctv │ ├── Config.in │ ├── kodi-pvr-pctv.hash │ └── kodi-pvr-pctv.mk ├── kodi-pvr-stalker │ ├── Config.in │ ├── kodi-pvr-stalker.hash │ └── kodi-pvr-stalker.mk ├── kodi-pvr-vbox │ ├── Config.in │ ├── kodi-pvr-vbox.hash │ └── kodi-pvr-vbox.mk ├── kodi-pvr-vdr-vnsi │ ├── Config.in │ ├── kodi-pvr-vdr-vnsi.hash │ └── kodi-pvr-vdr-vnsi.mk ├── kodi-pvr-vuplus │ ├── Config.in │ ├── kodi-pvr-vuplus.hash │ └── kodi-pvr-vuplus.mk ├── kodi-pvr-wmc │ ├── Config.in │ ├── kodi-pvr-wmc.hash │ └── kodi-pvr-wmc.mk ├── kodi-screensaver-asteroids │ ├── Config.in │ ├── kodi-screensaver-asteroids.hash │ └── kodi-screensaver-asteroids.mk ├── kodi-screensaver-asterwave │ ├── Config.in │ ├── kodi-screensaver-asterwave.hash │ └── kodi-screensaver-asterwave.mk ├── kodi-screensaver-biogenesis │ ├── 0001-Add-missing-stddef-include.patch │ ├── Config.in │ ├── kodi-screensaver-biogenesis.hash │ └── kodi-screensaver-biogenesis.mk ├── kodi-screensaver-cpblobs │ ├── Config.in │ ├── kodi-screensaver-cpblobs.hash │ └── kodi-screensaver-cpblobs.mk ├── kodi-screensaver-crystalmorph │ ├── Config.in │ ├── kodi-screensaver-crystalmorph.hash │ └── kodi-screensaver-crystalmorph.mk ├── kodi-screensaver-greynetic │ ├── Config.in │ ├── kodi-screensaver-greynetic.hash │ └── kodi-screensaver-greynetic.mk ├── kodi-screensaver-matrixtrails │ ├── 0001-Add-missing-stddef-include.patch │ ├── Config.in │ ├── kodi-screensaver-matrixtrails.hash │ └── kodi-screensaver-matrixtrails.mk ├── kodi-screensaver-pingpong │ ├── 0001-Backport-Add-missing-cstddef-includes.patch │ ├── Config.in │ ├── kodi-screensaver-pingpong.hash │ └── kodi-screensaver-pingpong.mk ├── kodi-screensaver-pyro │ ├── 0001-Add-missing-stddef-include.patch │ ├── Config.in │ ├── kodi-screensaver-pyro.hash │ └── kodi-screensaver-pyro.mk ├── kodi-screensaver-rsxs │ ├── 0001-Disable-drempels.patch │ ├── Config.in │ ├── kodi-screensaver-rsxs.hash │ └── kodi-screensaver-rsxs.mk ├── kodi-screensaver-stars │ ├── Config.in │ ├── kodi-screensaver-stars.hash │ └── kodi-screensaver-stars.mk ├── kodi-skin-confluence │ ├── Config.in │ ├── kodi-skin-confluence.hash │ └── kodi-skin-confluence.mk ├── kodi-texturepacker │ ├── 0001-texturepacker.patch │ ├── 0002-fix-texture-packer-cmake-source-dir.patch │ ├── kodi-texturepacker.hash │ └── kodi-texturepacker.mk ├── kodi-vfs-rar │ ├── Config.in │ ├── kodi-vfs-rar.hash │ └── kodi-vfs-rar.mk ├── kodi-vfs-sftp │ ├── Config.in │ ├── kodi-vfs-sftp.hash │ └── kodi-vfs-sftp.mk ├── kodi-visualisation-fishbmc │ ├── Config.in │ ├── kodi-visualisation-fishbmc.hash │ └── kodi-visualisation-fishbmc.mk ├── kodi-visualisation-goom │ ├── Config.in │ ├── kodi-visualisation-goom.hash │ └── kodi-visualisation-goom.mk ├── kodi-visualisation-shadertoy │ ├── Config.in │ ├── kodi-visualisation-shadertoy.hash │ └── kodi-visualisation-shadertoy.mk ├── kodi-visualisation-spectrum │ ├── 0001-Backport-Add-missing-cstddef-include.patch │ ├── Config.in │ ├── kodi-visualisation-spectrum.hash │ └── kodi-visualisation-spectrum.mk ├── kodi-visualisation-waveform │ ├── Config.in │ ├── kodi-visualisation-waveform.hash │ └── kodi-visualisation-waveform.mk ├── kodi │ ├── 0001-kodi-config.cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch │ ├── 0002-Fix-crosscompiling-issues.patch │ ├── 0003-Add-missing-cassert-includes.patch │ ├── 0004-Backport-Add-missing-cstddef-includes.patch │ ├── Config.in │ ├── S50kodi │ ├── br-kodi │ ├── kodi.hash │ ├── kodi.mk │ └── kodi.service ├── kompexsqlite │ ├── 0001-Makefile-use-autoconf-CXX-for-proper-builds.patch │ ├── 0002-append-to-cflags-and-cxxflags.patch │ ├── Config.in │ ├── kompexsqlite.hash │ └── kompexsqlite.mk ├── ktap │ ├── Config.in │ ├── ktap.hash │ └── ktap.mk ├── kvazaar │ ├── Config.in │ ├── kvazaar.hash │ └── kvazaar.mk ├── kvm-unit-tests │ ├── 0001-Makefile-remove-Werror-to-avoid-build-failures.patch │ ├── 0002-kvm-unit-tests-test-for-rdseed-rdrand.patch │ ├── 0003-Makefile-fix-stack-protector-tests.patch │ ├── Config.in │ ├── kvm-unit-tests.hash │ └── kvm-unit-tests.mk ├── kvmtool │ ├── Config.in │ ├── kvmtool.hash │ └── kvmtool.mk ├── kyua │ ├── Config.in │ ├── kyua.hash │ └── kyua.mk ├── lame │ ├── Config.in │ ├── lame.hash │ └── lame.mk ├── lapack │ ├── Config.in │ ├── lapack.hash │ └── lapack.mk ├── latencytop │ ├── 0001-makefile.patch │ ├── Config.in │ ├── latencytop.hash │ └── latencytop.mk ├── lbase64 │ ├── 0001-retro-compatible-with-Lua-5.1.patch │ ├── Config.in │ ├── lbase64.hash │ └── lbase64.mk ├── lbreakout2 │ ├── Config.in │ ├── lbreakout2.hash │ └── lbreakout2.mk ├── lcdapi │ ├── Config.in │ ├── lcdapi.hash │ └── lcdapi.mk ├── lcdproc │ ├── 0001-Add-missing-ioctl-header.patch │ ├── 0001-LCDd.conf.patch │ ├── Config.in │ ├── lcdproc.hash │ └── lcdproc.mk ├── lcms2 │ ├── 0001-Upgrade-Visual-studio-2017-15.8.patch │ ├── Config.in │ ├── lcms2.hash │ └── lcms2.mk ├── leafnode2 │ ├── 0001-cross_makefile.patch │ ├── Config.in │ ├── leafnode2.hash │ └── leafnode2.mk ├── leafpad │ ├── Config.in │ ├── leafpad.hash │ └── leafpad.mk ├── lensfun │ ├── Config.in │ ├── lensfun.hash │ └── lensfun.mk ├── leptonica │ ├── Config.in │ ├── leptonica.hash │ └── leptonica.mk ├── less │ ├── Config.in │ ├── less.hash │ └── less.mk ├── lesstif │ ├── Config.in │ ├── lesstif.hash │ └── lesstif.mk ├── let-me-create │ ├── 0001-fix-build-with-musl-C-library.patch │ ├── Config.in │ ├── let-me-create.hash │ └── let-me-create.mk ├── leveldb │ ├── 0001-Fix-compilation-with-g-4.8.2.patch │ ├── 0002-CMake-install-libmemenv.a.patch │ ├── 0003-CMakeLists.txt-check-for-atomic-library.patch │ ├── Config.in │ ├── leveldb.hash │ └── leveldb.mk ├── lft │ ├── Config.in │ ├── lft.hash │ └── lft.mk ├── lftp │ ├── Config.in │ ├── lftp.hash │ └── lftp.mk ├── libaacs │ ├── Config.in │ ├── libaacs.hash │ └── libaacs.mk ├── libaio │ ├── 0001-src-Makefile-add-ENABLE_SHARED-boolean-to-allow-stat.patch │ ├── 0002-Makefile-add-missing-DESTDIR-variable-use.patch │ ├── 0003-Link-against-libgcc-to-avoid-unresolved-symbols.patch │ ├── Config.in │ ├── libaio.hash │ └── libaio.mk ├── libao │ ├── Config.in │ ├── libao.hash │ └── libao.mk ├── libarchive │ ├── Config.in │ ├── libarchive.hash │ └── libarchive.mk ├── libargon2 │ ├── 0001-libargon2-dont-fail-on-existing-symlink.patch │ ├── Config.in │ ├── libargon2.hash │ └── libargon2.mk ├── libargtable2 │ ├── Config.in │ ├── libargtable2.hash │ └── libargtable2.mk ├── libart │ ├── 0001-art-config-cross.patch │ ├── Config.in │ ├── libart.hash │ └── libart.mk ├── libasplib │ ├── 0001-asplib_CPUTimer.h-Fix-time.h-include.patch │ ├── Config.in │ ├── libasplib.hash │ └── libasplib.mk ├── libass │ ├── Config.in │ ├── libass.hash │ └── libass.mk ├── libassuan │ ├── Config.in │ ├── libassuan.hash │ └── libassuan.mk ├── libatasmart │ ├── 0001-strpool-cross-flags.patch │ ├── Config.in │ ├── libatasmart.hash │ └── libatasmart.mk ├── libatomic_ops │ ├── Config.in │ ├── libatomic_ops.hash │ └── libatomic_ops.mk ├── libavl │ ├── 0001-fix-makefile.patch │ ├── Config.in │ ├── libavl.hash │ └── libavl.mk ├── libb64 │ ├── 0001-Integer-overflows.patch │ ├── 0002-Initialize-C++-objects.patch │ ├── Config.in │ ├── libb64.hash │ └── libb64.mk ├── libbdplus │ ├── Config.in │ ├── libbdplus.hash │ └── libbdplus.mk ├── libbluray │ ├── Config.in │ ├── libbluray.hash │ └── libbluray.mk ├── libbroadvoice │ ├── Config.in │ ├── libbroadvoice.hash │ └── libbroadvoice.mk ├── libbsd │ ├── Config.in │ ├── libbsd.hash │ └── libbsd.mk ├── libbson │ ├── Config.in │ ├── libbson.hash │ └── libbson.mk ├── libcamera │ ├── Config.in │ ├── libcamera.hash │ └── libcamera.mk ├── libcap-ng │ ├── 0001-Fix-compilation-without-pthread.h.patch │ ├── Config.in │ ├── libcap-ng.hash │ └── libcap-ng.mk ├── libcap │ ├── 0001-build-system-fixes-for-cross-compilation.patch │ ├── 0002-libcap-split-install-into-install-shared-install-sta.patch │ ├── 0003-libcap-cap_file.c-fix-build-with-old-kernel-headers.patch │ ├── Config.in │ ├── libcap.hash │ └── libcap.mk ├── libcdaudio │ ├── 0001-libcdaudio-enable-autoreconf.patch │ ├── Config.in │ ├── libcdaudio.hash │ └── libcdaudio.mk ├── libcddb │ ├── Config.in │ ├── libcddb.hash │ └── libcddb.mk ├── libcdio-paranoia │ ├── Config.in │ ├── libcdio-paranoia.hash │ └── libcdio-paranoia.mk ├── libcdio │ ├── Config.in │ ├── libcdio.hash │ └── libcdio.mk ├── libcec │ ├── Config.in │ ├── libcec.hash │ └── libcec.mk ├── libcgi │ ├── Config.in │ ├── libcgi.hash │ └── libcgi.mk ├── libcgicc │ ├── 0001-disable-documentation-option.patch │ ├── Config.in │ ├── libcgicc.hash │ └── libcgicc.mk ├── libcgroup │ ├── 0001-cgrulesengd-remove-umask-0.patch │ ├── Config.in │ ├── libcgroup.hash │ └── libcgroup.mk ├── libclc │ ├── Config.in │ ├── libclc.hash │ └── libclc.mk ├── libcli │ ├── Config.in │ ├── libcli.hash │ └── libcli.mk ├── libcoap │ ├── Config.in │ ├── libcoap.hash │ └── libcoap.mk ├── libcodec2 │ ├── Config.in │ ├── libcodec2.hash │ └── libcodec2.mk ├── libcofi │ ├── Config.in │ ├── libcofi.hash │ └── libcofi.mk ├── libconfig │ ├── 0001-Add-disable-doc-option.patch │ ├── Config.in │ ├── libconfig.hash │ └── libconfig.mk ├── libconfuse │ ├── Config.in │ ├── libconfuse.hash │ └── libconfuse.mk ├── libcorrect │ ├── 0001-CMakeLists.txt-conditionally-use-Wpedantic.patch │ ├── 0002-CMakeLists.txt-conditionally-use-fsanitize-address.patch │ ├── Config.in │ ├── libcorrect.hash │ └── libcorrect.mk ├── libcpprestsdk │ ├── 0001-libcpprestsdk-fix-building-as-a-static-library.patch │ ├── Config.in │ ├── libcpprestsdk.hash │ └── libcpprestsdk.mk ├── libcroco │ ├── Config.in │ ├── libcroco.hash │ └── libcroco.mk ├── libcrossguid │ ├── Config.in │ ├── libcrossguid.hash │ └── libcrossguid.mk ├── libcsv │ ├── Config.in │ ├── libcsv.hash │ └── libcsv.mk ├── libcue │ ├── Config.in │ ├── libcue.hash │ └── libcue.mk ├── libcuefile │ ├── 0001-fix-static-link.patch │ ├── Config.in │ ├── libcuefile.hash │ └── libcuefile.mk ├── libcurl │ ├── Config.in │ ├── libcurl.hash │ └── libcurl.mk ├── libdaemon │ ├── 0001-testd-use-unistd-h-instead-of-sys-unistd-h.patch │ ├── Config.in │ ├── libdaemon.hash │ └── libdaemon.mk ├── libdcadec │ ├── Config.in │ ├── libdcadec.hash │ └── libdcadec.mk ├── libdmtx │ ├── Config.in │ ├── libdmtx.hash │ └── libdmtx.mk ├── libdnet │ ├── 0001-python-gcc.patch │ ├── 0002-python-makefile.patch │ ├── Config.in │ ├── libdnet.hash │ └── libdnet.mk ├── libdri2 │ ├── Config.in │ ├── libdri2.hash │ └── libdri2.mk ├── libdrm │ ├── 0001-Add-ARM-support-into-xf86drm.h.patch │ ├── 0002-xf86atomic-require-CAS-support-in-libatomic_ops.patch │ ├── 0003-meson.build-fix-intel-atomics-detection.patch │ ├── 0004-meson.build-enable-static-build.patch │ ├── 0005-tests-meson.build-disable-nouveau-tests-for-static-b.patch │ ├── 0006-tests-nouveau-threaded-adapt-ioctl-signature.patch │ ├── 0007-tests-amdgpu-needs-atomic_ops.patch │ ├── Config.in │ ├── libdrm.hash │ └── libdrm.mk ├── libdvbcsa │ ├── 0001-altivec-powerpc64.patch │ ├── Config.in │ ├── libdvbcsa.hash │ └── libdvbcsa.mk ├── libdvbpsi │ ├── Config.in │ ├── libdvbpsi.hash │ └── libdvbpsi.mk ├── libdvbsi │ ├── Config.in │ ├── libdvbsi.hash │ └── libdvbsi.mk ├── libdvdcss │ ├── Config.in │ ├── libdvdcss.hash │ └── libdvdcss.mk ├── libdvdnav │ ├── Config.in │ ├── libdvdnav.hash │ └── libdvdnav.mk ├── libdvdread │ ├── Config.in │ ├── libdvdread.hash │ └── libdvdread.mk ├── libeXosip2 │ ├── 0001-use-pkg-config-to-detect-openssl.patch │ ├── Config.in │ ├── libeXosip2.hash │ └── libeXosip2.mk ├── libeastl │ ├── Config.in │ ├── libeastl.hash │ └── libeastl.mk ├── libebml │ ├── Config.in │ ├── libebml.hash │ └── libebml.mk ├── libebur128 │ ├── Config.in │ ├── libebur128.hash │ └── libebur128.mk ├── libedit │ ├── 0001-check-bsd-functions-in-libbsd.patch │ ├── Config.in │ ├── libedit.hash │ └── libedit.mk ├── libee │ ├── Config.in │ ├── libee.hash │ └── libee.mk ├── libenca │ ├── Config.in │ ├── libenca.hash │ └── libenca.mk ├── libepoxy │ ├── Config.in │ ├── libepoxy.hash │ └── libepoxy.mk ├── liberation │ ├── Config.in │ ├── liberation.hash │ └── liberation.mk ├── libesmtp │ ├── Config.in │ ├── libesmtp.hash │ └── libesmtp.mk ├── libestr │ ├── Config.in │ ├── libestr.hash │ └── libestr.mk ├── libev │ ├── Config.in │ ├── libev.hash │ └── libev.mk ├── libevdev │ ├── 0001-configure-add-disable-runtime-tests-option.patch │ ├── Config.in │ ├── libevdev.hash │ └── libevdev.mk ├── libevent │ ├── Config.in │ ├── libevent.hash │ └── libevent.mk ├── libexif │ ├── 0001-fixes-some-not-all-buffer-overreads-during-decoding-.patch │ ├── 0002-On-saving-makernotes-make-sure-the-makernote-contain.patch │ ├── 0003-Reduce-maximum-recursion-depth-in-exif_data_load_dat.patch │ ├── 0004-Improve-deep-recursion-detection-in-exif_data_load_d.patch │ ├── 0005-fix-CVE-2019-9278.patch │ ├── Config.in │ ├── libexif.hash │ └── libexif.mk ├── libfastjson │ ├── Config.in │ ├── libfastjson.hash │ └── libfastjson.mk ├── libfcgi │ ├── 0001-link-against-math.patch │ ├── 0002-disable-examples.patch │ ├── Config.in │ ├── libfcgi.hash │ └── libfcgi.mk ├── libffi │ ├── 0001-Fix-installation-location-of-libffi.patch │ ├── 0002-Fix-use-of-compact-eh-frames-on-MIPS.patch │ ├── 0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch │ ├── 0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch │ ├── 0005-powerpc-fix-build-failure-on-power7-and-older.patch │ ├── 0006-Address-platforms-with-no-__int128.patch │ ├── 0007-powerpc64-Use-memcpy-to-help-platforms-with-no-__int128.patch │ ├── Config.in │ ├── libffi.hash │ └── libffi.mk ├── libfm-extra │ ├── Config.in │ ├── libfm-extra.hash │ └── libfm-extra.mk ├── libfm │ ├── 0001-modules-fix-cross-compilation.patch │ ├── Config.in │ ├── libfm.hash │ └── libfm.mk ├── libfreefare │ ├── Config.in │ ├── libfreefare.hash │ └── libfreefare.mk ├── libfreeglut │ ├── Config.in │ ├── libfreeglut.hash │ └── libfreeglut.mk ├── libfreeimage │ ├── 0001-no-root-install.patch │ ├── 0002-fix-cpuid-x86.patch │ ├── 0003-fix-big-endian-os.patch │ ├── Config.in │ ├── libfreeimage.hash │ └── libfreeimage.mk ├── libfribidi │ ├── 0001-Truncate-isolate_level-to-FRIBIDI_BIDI_MAX_EXPLICIT_.patch │ ├── Config.in │ ├── libfribidi.hash │ └── libfribidi.mk ├── libftdi │ ├── 0001_pkgconfig_libusb.patch │ ├── 0002-libftdi.pc-requires-libusb-fix-static-build.patch │ ├── Config.in │ ├── libftdi.hash │ └── libftdi.mk ├── libftdi1 │ ├── 0001-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch │ ├── 0002-cmake-do-not-check-for-g-when-FTDIPP-is-disabled.patch │ ├── 0003-cmake-find-swig.patch │ ├── 0004-CMake-reorder-Python-detection.patch │ ├── 0005-swig-python-fix-unresolved-symbol-issue.patch │ ├── Config.in │ ├── libftdi1.hash │ └── libftdi1.mk ├── libfuse │ ├── 0001-fix-aarch64-build.patch │ ├── Config.in │ ├── libfuse.hash │ └── libfuse.mk ├── libg7221 │ ├── Config.in │ ├── libg7221.hash │ └── libg7221.mk ├── libgcrypt │ ├── 0001-build-Don-t-default-to-underscore-yes-for-cross-buil.patch │ ├── 0002-configure.ac-add-an-option-to-disable-tests.patch │ ├── Config.in │ ├── libgcrypt.hash │ └── libgcrypt.mk ├── libgdiplus │ ├── 0001-Embed-the-license-texts-in-LICENSE-like-on-Mono-repo.patch │ ├── 0002-Update-LICENSE-to-match-the-headers-of-the-source-fi.patch │ ├── 0003-gifcodec.c-Include-copy-of-GifQuantizeBuffer-functio.patch │ ├── Config.in │ ├── libgdiplus.hash │ └── libgdiplus.mk ├── libgee │ ├── Config.in │ ├── libgee.hash │ └── libgee.mk ├── libgeotiff │ ├── 0001-Use-pkg-config-for-libtiff-detection.patch │ ├── 0002-configure.ac-use-pkg-config-to-find-proj-dependency.patch │ ├── Config.in │ ├── libgeotiff.hash │ └── libgeotiff.mk ├── libgit2 │ ├── Config.in │ ├── libgit2.hash │ └── libgit2.mk ├── libglade │ ├── Config.in │ ├── libglade.hash │ └── libglade.mk ├── libglew │ ├── Config.in │ ├── libglew.hash │ └── libglew.mk ├── libglfw │ ├── Config.in │ ├── libglfw.hash │ └── libglfw.mk ├── libglib2 │ ├── 0001-fix-compile-time-atomic-detection.patch │ ├── 0002-allow-explicit-disabling-of-tests.patch │ ├── 0003-remove-cpp-requirement.patch │ ├── 0004-Add-Wno-format-nonliteral-to-compiler-arguments.patch │ ├── Config.in │ ├── libglib2.hash │ └── libglib2.mk ├── libglob │ ├── Config.in │ ├── libglob.hash │ └── libglob.mk ├── libglu │ ├── Config.in │ ├── libglu.hash │ └── libglu.mk ├── libgpg-error │ ├── Config.in │ ├── libgpg-error.hash │ └── libgpg-error.mk ├── libgpgme │ ├── Config.in │ ├── libgpgme.hash │ └── libgpgme.mk ├── libgphoto2 │ ├── Config.in │ ├── libgphoto2.hash │ └── libgphoto2.mk ├── libgpiod │ ├── Config.in │ ├── libgpiod.hash │ └── libgpiod.mk ├── libgsasl │ ├── Config.in │ ├── libgsasl.hash │ └── libgsasl.mk ├── libgsm │ ├── 0001-misc-fixes-from-archlinux.patch │ ├── Config.in │ ├── libgsm.hash │ └── libgsm.mk ├── libgta │ ├── Config.in │ ├── libgta.hash │ └── libgta.mk ├── libgtk2 │ ├── 0001-reduce-dependencies.patch │ ├── Config.in │ ├── libgtk2.hash │ └── libgtk2.mk ├── libgtk3 │ ├── 0001-no-gtk-doc.patch │ ├── 0002-fix-introspection-check.patch │ ├── 0003-disable-atk-bridge.patch │ ├── 0004-Remove-Gdk-dependency-from-gtk-encode-symbolic-svg.patch │ ├── Config.in │ ├── libgtk3.hash │ └── libgtk3.mk ├── libgudev │ ├── Config.in │ ├── libgudev.hash │ └── libgudev.mk ├── libhdhomerun │ ├── 0001-dont-strip.patch │ ├── Config.in │ ├── libhdhomerun.hash │ └── libhdhomerun.mk ├── libhid │ ├── 0001-dont-fiddle-with-debug-flags.patch │ ├── 0002-no-newline-in-ldflags.patch │ ├── 0003-uclinux.patch │ ├── Config.in │ ├── libhid.hash │ └── libhid.mk ├── libhtp │ ├── 0001-fix-build-without-GNU-libiconv.patch │ ├── 0002-htp.pc.in-add-lz-to-Libs.private.patch │ ├── Config.in │ ├── libhtp.hash │ └── libhtp.mk ├── libhttpparser │ ├── Config.in │ ├── libhttpparser.hash │ └── libhttpparser.mk ├── libhttpserver │ ├── 0001-Fix-lib-expectations-in-libhttpserver.pc.in.patch │ ├── Config.in │ ├── libhttpserver.hash │ └── libhttpserver.mk ├── libical │ ├── 0001-no-tests.patch │ ├── 0002-icaltypes-c-icalreqstattype_from_string-copy-the-reqstattype.patch │ ├── Config.in │ ├── libical.hash │ └── libical.mk ├── libiconv │ ├── Config.in │ ├── libiconv.hash │ └── libiconv.mk ├── libid3tag │ ├── 0001-configure-automake-foreign.patch │ ├── Config.in │ ├── id3tag.pc │ ├── libid3tag.hash │ └── libid3tag.mk ├── libidn │ ├── Config.in │ ├── libidn.hash │ └── libidn.mk ├── libidn2 │ ├── Config.in │ ├── libidn2.hash │ └── libidn2.mk ├── libiio │ ├── 0001-fix-install-of-binaries-with-a-static-only-library.patch │ ├── Config.in │ ├── S99iiod │ ├── libiio.hash │ └── libiio.mk ├── libilbc │ ├── Config.in │ ├── libilbc.hash │ └── libilbc.mk ├── libimxvpuapi │ ├── Config.in │ ├── libimxvpuapi.hash │ └── libimxvpuapi.mk ├── libinput │ ├── Config.in │ ├── libinput.hash │ └── libinput.mk ├── libiqrf │ ├── 0001-cmake-handle-static-library-and-find-required-thread.patch │ ├── 0002-use-only-c-language.patch │ ├── Config.in │ ├── libiqrf.hash │ └── libiqrf.mk ├── libiscsi │ ├── Config.in │ ├── libiscsi.hash │ └── libiscsi.mk ├── libite │ ├── Config.in │ ├── libite.hash │ └── libite.mk ├── libjpeg │ ├── libjpeg.hash │ ├── libjpeg.mk │ └── libjpeg.pc.in ├── libjson │ ├── 0001-fix-broken-makefile.patch │ ├── Config.in │ ├── libjson.hash │ └── libjson.mk ├── libkcapi │ ├── Config.in │ ├── libkcapi.hash │ └── libkcapi.mk ├── libkrb5 │ ├── Config.in │ ├── libkrb5.hash │ └── libkrb5.mk ├── libksba │ ├── Config.in │ ├── libksba.hash │ └── libksba.mk ├── libldns │ ├── Config.in │ ├── libldns.hash │ └── libldns.mk ├── liblinear │ ├── 0001-blas-don-t-overwrite-ar-options.patch │ ├── 0002-build-static-lib.patch │ ├── Config.in │ ├── liblinear.hash │ └── liblinear.mk ├── libllcp │ ├── Config.in │ ├── libllcp.hash │ └── libllcp.mk ├── liblo │ ├── Config.in │ ├── liblo.hash │ └── liblo.mk ├── liblockfile │ ├── 0001-install.patch │ ├── Config.in │ ├── liblockfile.hash │ └── liblockfile.mk ├── liblog4c-localtime │ ├── 0001-log4c.m4-fix-underquoted-definition-of-AM_PATH_LOG4C.patch │ ├── 0002-Fix-linking-error-without-pthread.patch │ ├── 0003-Fix-debug-mode-build-with-uClibc.patch │ ├── 0004-Add-AC_CONFIG_MACRO_DIR-to-configure.in.patch │ ├── 0005-Fix-C-support.patch │ ├── Config.in │ ├── liblog4c-localtime.hash │ └── liblog4c-localtime.mk ├── liblogging │ ├── Config.in │ ├── liblogging.hash │ └── liblogging.mk ├── libloki │ ├── 0001-allow-to-install-to-a-specific-location-using-DESTDI.patch │ ├── 0002-use-ln-snf.patch │ ├── Config.in │ ├── libloki.hash │ └── libloki.mk ├── libmad │ ├── 0001-mips-h-constraint-removal.patch │ ├── 0003-remove-deprecated-cflags.patch │ ├── 0004-thumb2-fixed-arm.patch │ ├── 0005-thumb2-imdct-arm.patch │ ├── 0006-configure-ac-automake-foreign.patch │ ├── Config.in │ ├── libmad.hash │ ├── libmad.mk │ └── mad.pc ├── libmatroska │ ├── Config.in │ ├── libmatroska.hash │ └── libmatroska.mk ├── libmaxminddb │ ├── Config.in │ ├── libmaxminddb.hash │ └── libmaxminddb.mk ├── libmbim │ ├── Config.in │ ├── libmbim.hash │ └── libmbim.mk ├── libmbus │ ├── Config.in │ ├── libmbus.hash │ └── libmbus.mk ├── libmcrypt │ ├── 0001-nocxx.patch │ ├── Config.in │ ├── libmcrypt.hash │ └── libmcrypt.mk ├── libmediaart │ ├── Config.in │ ├── libmediaart.hash │ └── libmediaart.mk ├── libmemcached │ ├── 0001-disable-tests.patch │ ├── 0002-disable-sanitizer.patch │ ├── 0003-move-ac_config_aux_dir.patch │ ├── 0004-disable-doc-and-man.patch │ ├── 0005-fix-pointer-comparaison.patch │ ├── Config.in │ ├── libmemcached.hash │ └── libmemcached.mk ├── libmhash │ ├── Config.in │ ├── libmhash.hash │ └── libmhash.mk ├── libmicrohttpd │ ├── Config.in │ ├── libmicrohttpd.hash │ └── libmicrohttpd.mk ├── libminiupnpc │ ├── Config.in │ ├── libminiupnpc.hash │ └── libminiupnpc.mk ├── libmms │ ├── Config.in │ ├── libmms.hash │ └── libmms.mk ├── libmng │ ├── 0001-jpeg-9a.patch │ ├── Config.in │ ├── libmng.hash │ └── libmng.mk ├── libmnl │ ├── Config.in │ ├── libmnl.hash │ └── libmnl.mk ├── libmodbus │ ├── Config.in │ ├── libmodbus.hash │ └── libmodbus.mk ├── libmodplug │ ├── Config.in │ ├── libmodplug.hash │ └── libmodplug.mk ├── libmodsecurity │ ├── 0001-Fail-when-CANONICAL_HOST-cannot-be-determined.patch │ ├── 0002-test-for-uClinux-in-configure-script.patch │ ├── Config.in │ ├── libmodsecurity.hash │ └── libmodsecurity.mk ├── libmpd │ ├── 0001-Fix-build-on-archlinux-missing-include.patch │ ├── Config.in │ ├── libmpd.hash │ └── libmpd.mk ├── libmpdclient │ ├── Config.in │ ├── libmpdclient.hash │ └── libmpdclient.mk ├── libmpeg2 │ ├── 0001-altivec.patch │ ├── 0002-armv4l.patch │ ├── 0003-fix-arm-detection.patch │ ├── 0004-fix-sparc.patch │ ├── Config.in │ ├── libmpeg2.hash │ └── libmpeg2.mk ├── libmspack │ ├── Config.in │ ├── libmspack.hash │ └── libmspack.mk ├── libnatpmp │ ├── Config.in │ ├── libnatpmp.hash │ └── libnatpmp.mk ├── libndp │ ├── 0001-ndptool.c-Fix-musl-build.patch │ ├── Config.in │ ├── libndp.hash │ └── libndp.mk ├── libnet │ ├── 0001-support-musl-libc.patch │ ├── Config.in │ ├── libnet.hash │ └── libnet.mk ├── libnetconf2 │ ├── Config.in │ ├── libnetconf2.hash │ └── libnetconf2.mk ├── libnetfilter_acct │ ├── Config.in │ ├── libnetfilter_acct.hash │ └── libnetfilter_acct.mk ├── libnetfilter_conntrack │ ├── Config.in │ ├── libnetfilter_conntrack.hash │ └── libnetfilter_conntrack.mk ├── libnetfilter_cthelper │ ├── 0001-uclinux.patch │ ├── Config.in │ ├── libnetfilter_cthelper.hash │ └── libnetfilter_cthelper.mk ├── libnetfilter_cttimeout │ ├── 0001-uclinux.patch │ ├── Config.in │ ├── libnetfilter_cttimeout.hash │ └── libnetfilter_cttimeout.mk ├── libnetfilter_log │ ├── 0001-uclinux.patch │ ├── Config.in │ ├── libnetfilter_log.hash │ └── libnetfilter_log.mk ├── libnetfilter_queue │ ├── Config.in │ ├── libnetfilter_queue.hash │ └── libnetfilter_queue.mk ├── libnfc │ ├── 0001-build-systems-make-example-build-optional.patch │ ├── Config.in │ ├── libnfc.hash │ └── libnfc.mk ├── libnfnetlink │ ├── 0001-uclinux.patch │ ├── 0002-musl.patch │ ├── Config.in │ ├── libnfnetlink.hash │ └── libnfnetlink.mk ├── libnfs │ ├── 0001-Fix-include-sys-time.h.patch │ ├── Config.in │ ├── libnfs.hash │ └── libnfs.mk ├── libnftnl │ ├── Config.in │ ├── libnftnl.hash │ └── libnftnl.mk ├── libnice │ ├── Config.in │ ├── libnice.hash │ └── libnice.mk ├── libnl │ ├── 0001-build-add-Libs.private-field-in-libnl-pkg-config-fil.patch │ ├── 0002-Add-musl-workaround-to-the-libc-compat.h-copy.patch │ ├── Config.in │ ├── libnl.hash │ └── libnl.mk ├── libnpth │ ├── Config.in │ ├── libnpth.hash │ └── libnpth.mk ├── libnspr │ ├── Config.in │ ├── libnspr.hash │ └── libnspr.mk ├── libnss │ ├── 0001-Bug-1614183-Check-if-PPC-__has_include-sys-auxv.h.patch │ ├── Config.in │ ├── libnss.hash │ ├── libnss.mk │ └── nss.pc.in ├── liboauth │ ├── 0001-Fixes-build-issue-with-OpenSSL-1.1.0.patch │ ├── Config.in │ ├── liboauth.hash │ └── liboauth.mk ├── libogg │ ├── Config.in │ ├── libogg.hash │ └── libogg.mk ├── libolm │ ├── Config.in │ ├── libolm.hash │ └── libolm.mk ├── libopenh264 │ ├── 0001-Add-USE_STACK_PROTECTOR-option.patch │ ├── 0002-Adjust-the-mmi-msa-detection-m.patch │ ├── Config.in │ ├── libopenh264.hash │ └── libopenh264.mk ├── libopenssl │ ├── 0001-Dont-waste-time-building-manpages-if-we-re-not-going.patch │ ├── 0002-Reproducible-build-do-not-leak-compiler-path.patch │ ├── 0003-Introduce-the-OPENSSL_NO_MADVISE-to-disable-call-to-.patch │ ├── Config.in │ ├── libopenssl.hash │ └── libopenssl.mk ├── liboping │ ├── 0001-ping_host_add-Decrease-buffer-size-to-make-GCC-s-truncation-check-happy.patch │ ├── Config.in │ ├── liboping.hash │ └── liboping.mk ├── libopusenc │ ├── Config.in │ ├── libopusenc.hash │ └── libopusenc.mk ├── libosip2 │ ├── 0001-fix-bug-report-sr-109133-Heap-buffer-overflow-in-uti.patch │ ├── Config.in │ ├── libosip2.hash │ └── libosip2.mk ├── libostree │ ├── Config.in │ ├── libostree.hash │ └── libostree.mk ├── libp11 │ ├── Config.in │ ├── Config.in.host │ ├── libp11.hash │ └── libp11.mk ├── libpagekite │ ├── Config.in │ ├── libpagekite.hash │ └── libpagekite.mk ├── libpam-nfc │ ├── Config.in │ ├── libpam-nfc.hash │ └── libpam-nfc.mk ├── libpam-radius-auth │ ├── Config.in │ ├── libpam-radius-auth.hash │ └── libpam-radius-auth.mk ├── libpam-tacplus │ ├── 0001-libtac-lib-magic.c-fix-build-on-uclibc.patch │ ├── Config.in │ ├── libpam-tacplus.hash │ └── libpam-tacplus.mk ├── libpcap │ ├── Config.in │ ├── libpcap.hash │ └── libpcap.mk ├── libpciaccess │ ├── 0001-pciaccess.pc.in-add-Libs.Private.patch │ ├── Config.in │ ├── libpciaccess.hash │ └── libpciaccess.mk ├── libpfm4 │ ├── Config.in │ ├── libpfm4.hash │ └── libpfm4.mk ├── libphidget │ ├── Config.in │ ├── libphidget.hash │ └── libphidget.mk ├── libpjsip │ ├── Config.in │ ├── libpjsip.hash │ └── libpjsip.mk ├── libplatform │ ├── Config.in │ ├── libplatform.hash │ └── libplatform.mk ├── libplist │ ├── Config.in │ ├── libplist.hash │ └── libplist.mk ├── libpng │ ├── 0001-Disable-pngfix-and-png-fix-itxt.patch │ ├── Config.in │ ├── libpng.hash │ └── libpng.mk ├── libpqxx │ ├── Config.in │ ├── libpqxx.hash │ └── libpqxx.mk ├── libpri │ ├── Config.in │ ├── libpri.hash │ └── libpri.mk ├── libpthread-stubs │ ├── Config.in │ ├── libpthread-stubs.hash │ └── libpthread-stubs.mk ├── libpthsem │ ├── 0001-fix-build-on-linux-3.x-host.patch │ ├── Config.in │ ├── libpthsem.hash │ └── libpthsem.mk ├── libpwquality │ ├── Config.in │ ├── libpwquality.hash │ └── libpwquality.mk ├── libqmi │ ├── Config.in │ ├── libqmi.hash │ └── libqmi.mk ├── libqrencode │ ├── Config.in │ ├── libqrencode.hash │ └── libqrencode.mk ├── libraw │ ├── Config.in │ ├── libraw.hash │ └── libraw.mk ├── libraw1394 │ ├── Config.in │ ├── libraw1394.hash │ └── libraw1394.mk ├── libreplaygain │ ├── Config.in │ ├── libreplaygain.hash │ └── libreplaygain.mk ├── libressl │ ├── Config.in │ ├── libressl.hash │ └── libressl.mk ├── libroxml │ ├── Config.in │ ├── libroxml.hash │ └── libroxml.mk ├── librsvg │ ├── 0001-librsvg.pc.in-add-libcroco-to-Requires.Private.patch │ ├── Config.in │ ├── librsvg.hash │ └── librsvg.mk ├── librsync │ ├── 0001-CMakeLists-fix-build-with-old-compilers.patch │ ├── 0002-cmake-FindPOPT.cmake-Add-PkgConfig-support.patch │ ├── Config.in │ ├── librsync.hash │ └── librsync.mk ├── librtas │ ├── Config.in │ ├── librtas.hash │ └── librtas.mk ├── librtlsdr │ ├── 0001-disable_shared_library_target_in_build.patch │ ├── Config.in │ ├── librtlsdr.hash │ └── librtlsdr.mk ├── libsamplerate │ ├── Config.in │ ├── libsamplerate.hash │ └── libsamplerate.mk ├── libscrypt │ ├── 0001-Allow-adding-options-to-CFLAGS-and-LDFLAGS-variables.patch │ ├── Config.in │ ├── libscrypt.hash │ └── libscrypt.mk ├── libseccomp │ ├── 0001-remove-static.patch │ ├── 0002-Circumvent-bug-in-uClibc-ng-syscall-on-x86_64-system.patch │ ├── Config.in │ ├── libseccomp.hash │ └── libseccomp.mk ├── libsecret │ ├── 0001-libsecret.pc-add-Libs.private-field-for-libgcrypt.patch │ ├── Config.in │ ├── libsecret.hash │ └── libsecret.mk ├── libselinux │ ├── 0001-fix-musl-build.patch │ ├── 0003-libselinux-Use-Python-distutils-to-install-SELinux-p.patch │ ├── 0004-src-Makefile-don-t-pass-bogus-I-and-L-to-python-setu.patch │ ├── 0006-Do-not-use-PYCEXT-and-rely-on-the-installed-file-nam.patch │ ├── Config.in │ ├── libselinux.hash │ └── libselinux.mk ├── libsemanage │ ├── Config.in │ ├── libsemanage.hash │ └── libsemanage.mk ├── libsepol │ ├── 0001-support-static-only.patch │ ├── Config.in │ ├── libsepol.hash │ └── libsepol.mk ├── libserial │ ├── 0001-SerialPort.cpp-fix-build-when-size_t-is-an-unsigned-.patch │ ├── 0002-SerialPort.cpp-don-t-use-high-baudrates-when-not-ava.patch │ ├── Config.in │ ├── libserial.hash │ └── libserial.mk ├── libserialport │ ├── 0001-uclinux-detection.patch │ ├── Config.in │ ├── libserialport.hash │ └── libserialport.mk ├── libsexy │ ├── Config.in │ ├── libsexy.hash │ └── libsexy.mk ├── libsha1 │ ├── Config.in │ ├── libsha1.hash │ └── libsha1.mk ├── libshairplay │ ├── Config.in │ ├── libshairplay.hash │ └── libshairplay.mk ├── libshout │ ├── Config.in │ ├── libshout.hash │ └── libshout.mk ├── libsidplay2 │ ├── 0001-sidplay2-libs-2.1.1.patch │ ├── 0002-pkg-config.patch │ ├── 0003-gcc6.patch │ ├── Config.in │ ├── libsidplay2.hash │ └── libsidplay2.mk ├── libsigc │ ├── Config.in │ ├── libsigc.hash │ └── libsigc.mk ├── libsigrok │ ├── Config.in │ ├── libsigrok.hash │ └── libsigrok.mk ├── libsigrokdecode │ ├── Config.in │ ├── libsigrokdecode.hash │ └── libsigrokdecode.mk ├── libsigsegv │ ├── 0001-Improve-support-for-Linux-RISC-V.patch │ ├── 0002-m4-stack-direction-RISC-V-stack-grows-downward.patch │ ├── 0003-Improve-support-for-Linux-nds32.patch │ ├── 0004-m4-stack-direction-NDS32-stack-grows-downward.patch │ ├── Config.in │ ├── libsigsegv.hash │ └── libsigsegv.mk ├── libsilk │ ├── Config.in │ ├── libsilk.hash │ └── libsilk.mk ├── libsndfile │ ├── 0001-double64_init-Check-psf-sf.channels-against-upper-bo.patch │ ├── 0002-Check-MAX_CHANNELS-in-sndfile-deinterleave.patch │ ├── 0003-a-ulaw-fix-multiple-buffer-overflows-432.patch │ ├── 0004-src-wav.c-Fix-heap-read-overflow.patch │ ├── 0005-wav_write_header-don-t-read-past-the-array-end.patch │ ├── 0006-src-aiff.c-Fix-a-buffer-read-overflow.patch │ ├── 0007-FLAC-Fix-a-buffer-read-overrun.patch │ ├── 0008-src-flac.c-Fix-a-buffer-read-overflow.patch │ ├── 0009-src-flac-c-Fix-another-memory-leak.patch │ ├── 0010-src-common-c-Fix-heap-buffer-overflows-when-writing-strings-in.patch │ ├── Config.in │ ├── libsndfile.hash │ └── libsndfile.mk ├── libsoc │ ├── Config.in │ ├── libsoc.hash │ └── libsoc.mk ├── libsocketcan │ ├── Config.in │ ├── libsocketcan.hash │ └── libsocketcan.mk ├── libsodium │ ├── Config.in │ ├── libsodium.hash │ └── libsodium.mk ├── libsoil │ ├── 0001-fix-makefile.patch │ ├── Config.in │ ├── libsoil.hash │ └── libsoil.mk ├── libsoundtouch │ ├── Config.in │ ├── libsoundtouch.hash │ └── libsoundtouch.mk ├── libsoup │ ├── 0001-Revert-tld-parser-use-Python-3.patch │ ├── Config.in │ ├── libsoup.hash │ └── libsoup.mk ├── libsoxr │ ├── 0001-Add-Libs.private-for-static-linking.patch │ ├── Config.in │ ├── libsoxr.hash │ └── libsoxr.mk ├── libspatialindex │ ├── 0001-CMakeLists.txt-don-t-force-the-build-of-a-shared-lib.patch │ ├── Config.in │ ├── libspatialindex.hash │ └── libspatialindex.mk ├── libsquish │ ├── 0001-Makefile-add-f-option-for-ln-to-remove-existing-dest.patch │ ├── Config.in │ ├── libsquish.hash │ └── libsquish.mk ├── libsrtp │ ├── Config.in │ ├── libsrtp.hash │ └── libsrtp.mk ├── libss7 │ ├── Config.in │ ├── libss7.hash │ └── libss7.mk ├── libssh │ ├── Config.in │ ├── libssh.hash │ └── libssh.mk ├── libssh2 │ ├── 0001-drop-custom-buildconf-script.patch │ ├── 0002-acinclude.m4-add-mbedtls-to-LIBS.patch │ ├── 0003-packet-c-improve-message-parsing.patch │ ├── Config.in │ ├── libssh2.hash │ └── libssh2.mk ├── libstrophe │ ├── 0001-make-autoreconfable.patch │ ├── Config.in │ ├── libstrophe.hash │ └── libstrophe.mk ├── libsvg-cairo │ ├── Config.in │ ├── libsvg-cairo.hash │ └── libsvg-cairo.mk ├── libsvg │ ├── 0001-fix-expat-static-declaration.patch │ ├── 0002-Fix-undefined-symbol-png_set_gray_1_2_4_to_8.patch │ ├── Config.in │ ├── libsvg.hash │ └── libsvg.mk ├── libsvgtiny │ ├── 0001-disable-debug-printfs.patch │ ├── 0002-Remove-Werror.patch │ ├── 0003-Hopefully-silence-warnings-about-inlines-and-non-inlines-calling-one.patch │ ├── 0004-Build-Include-gperf-generated-code-directly.patch │ ├── Config.in │ ├── libsvgtiny.hash │ └── libsvgtiny.mk ├── libsysfs │ ├── Config.in │ ├── libsysfs.hash │ └── libsysfs.mk ├── libtasn1 │ ├── Config.in │ ├── libtasn1.hash │ └── libtasn1.mk ├── libtelnet │ ├── 0001-fix-compilation-without-zlib.patch │ ├── Config.in │ ├── libtelnet.hash │ └── libtelnet.mk ├── libtheora │ ├── 0001-link-libtheoradec.patch │ ├── 0002-fix-autoreconf.patch │ ├── Config.in │ ├── libtheora.hash │ └── libtheora.mk ├── libtirpc │ ├── 0001-Disable-parts-of-TIRPC-requiring-NIS-support.patch │ ├── 0003-Automatically-generate-XDR-header-files-from-.x-sour.patch │ ├── 0004-Add-more-XDR-files-needed-to-build-rpcbind-on-top-of.patch │ ├── Config.in │ ├── libtirpc.hash │ └── libtirpc.mk ├── libtomcrypt │ ├── 0001-fix-CVE-2019-17362.patch │ ├── Config.in │ ├── libtomcrypt.hash │ └── libtomcrypt.mk ├── libtommath │ ├── Config.in │ ├── libtommath.hash │ └── libtommath.mk ├── libtool │ ├── Config.in │ ├── libtool.hash │ └── libtool.mk ├── libtorrent-rasterbar │ ├── Config.in │ ├── libtorrent-rasterbar.hash │ └── libtorrent-rasterbar.mk ├── libtorrent │ ├── 0001-libtorrent.pc.in-add-Libs.Private.patch │ ├── Config.in │ ├── libtorrent.hash │ └── libtorrent.mk ├── libtpl │ ├── Config.in │ ├── libtpl.hash │ └── libtpl.mk ├── libubootenv │ ├── 0001-src-CMakeLists.txt-do-not-force-the-build-of-a-share.patch │ ├── Config.in │ ├── libubootenv.hash │ └── libubootenv.mk ├── libubox │ ├── Config.in │ └── libubox.mk ├── libuci │ ├── Config.in │ ├── libuci.hash │ └── libuci.mk ├── libucl │ ├── Config.in │ ├── libucl.hash │ └── libucl.mk ├── libuecc │ ├── Config.in │ ├── libuecc.hash │ └── libuecc.mk ├── libuio │ ├── 0001-configure-remove-po-Makefile.in.patch │ ├── 0002-fix-build-with-musl.patch │ ├── Config.in │ ├── libuio.hash │ └── libuio.mk ├── libunistring │ ├── Config.in │ ├── libunistring.hash │ └── libunistring.mk ├── libunwind │ ├── 0001-Add-AO_REQUIRE_CAS-to-fix-build-on-ARM-v6.patch │ ├── Config.in │ ├── libunwind.hash │ └── libunwind.mk ├── libupnp │ ├── Config.in │ ├── libupnp.hash │ └── libupnp.mk ├── libupnp18 │ ├── Config.in │ ├── libupnp18.hash │ └── libupnp18.mk ├── libupnpp │ ├── Config.in │ ├── libupnpp.hash │ └── libupnpp.mk ├── liburcu │ ├── 0001-Only-blacklist-ARM-gcc-4.8.0-and-4.8.1.patch │ ├── Config.in │ ├── liburcu.hash │ └── liburcu.mk ├── liburiparser │ ├── 0001-CMakeLists.txt-fix-build-without-C.patch │ ├── Config.in │ ├── liburiparser.hash │ └── liburiparser.mk ├── libusb-compat │ ├── 0001-Use-C99-standard-fixed-width-integer-types-in-usb.h.patch │ ├── 0002-fix-a-build-issue-on-linux.patch │ ├── Config.in │ ├── libusb-compat.hash │ └── libusb-compat.mk ├── libusb │ ├── Config.in │ ├── libusb.hash │ └── libusb.mk ├── libusbgx │ ├── 0001-Add-include-of-sys-sysmacro.h.patch │ ├── Config.in │ ├── libusbgx.hash │ └── libusbgx.mk ├── libuv │ ├── Config.in │ ├── libuv.hash │ └── libuv.mk ├── libv4l │ ├── 0001-keymap.h-add-missing-includes-to-fix-musl-build.patch │ ├── Config.in │ ├── libv4l.hash │ └── libv4l.mk ├── libva-intel-driver │ ├── Config.in │ ├── libva-intel-driver.hash │ └── libva-intel-driver.mk ├── libva-utils │ ├── 0001-fix-build-without-x11.patch │ ├── Config.in │ ├── libva-utils.hash │ └── libva-utils.mk ├── libva │ ├── Config.in │ ├── libva.hash │ └── libva.mk ├── libvdpau │ ├── Config.in │ ├── libvdpau.hash │ └── libvdpau.mk ├── libvips │ ├── Config.in │ ├── libvips.hash │ └── libvips.mk ├── libvncserver │ ├── 0001-CMakeLists.txt-fix-build-without-C.patch │ ├── 0002-libvnc-client-server-.pc.cmakein-remove-zlib.patch │ ├── 0003-Limit-lenght-to-INT_MAX-bytes-in-rfbProcessFileTransferReadBuffer.patch │ ├── 0004-rfbserver-don-t-leak-stack-memory-to-the-remote.patch │ ├── 0005-CMakeLists.txt-don-t-build-tight.c-without-png-or-zl.patch │ ├── Config.in │ ├── libvncserver.hash │ └── libvncserver.mk ├── libvorbis │ ├── 0001-CVE-2017-14160-fix-bounds-check-on-very-low-sample-rates.patch │ ├── 0002-Sanity-check-number-of-channels-in-setup.patch │ ├── Config.in │ ├── libvorbis.hash │ └── libvorbis.mk ├── libvpx │ ├── 0001-vpx_mem-vpx_mem.h-Fix-compilation-with-uClibc.patch │ ├── Config.in │ ├── libvpx.hash │ └── libvpx.mk ├── libwebsock │ ├── 0001-Switch-to-use-pkg-config-to-detect-libevent-and-open.patch │ ├── 0002-fix-ssl.patch │ ├── 0003-fix-incorrect-inline.patch │ ├── Config.in │ ├── libwebsock.hash │ └── libwebsock.mk ├── libwebsockets │ ├── 0001-CMakeLists-txt-fix-static-build-with-openssl.patch │ ├── Config.in │ ├── libwebsockets.hash │ └── libwebsockets.mk ├── libwpe │ ├── Config.in │ ├── libwpe.hash │ └── libwpe.mk ├── libxkbcommon │ ├── Config.in │ ├── libxkbcommon.hash │ └── libxkbcommon.mk ├── libxml-parser-perl │ ├── libxml-parser-perl.hash │ └── libxml-parser-perl.mk ├── libxml2 │ ├── 0001-Fix-infinite-loop-in-xmlStringLenDecodeEntities.patch │ ├── 0002-Fix-memory-leak-in-xmlSchemaValidateStream.patch │ ├── Config.in │ ├── libxml2.hash │ └── libxml2.mk ├── libxmlpp │ ├── Config.in │ ├── libxmlpp.hash │ └── libxmlpp.mk ├── libxmlrpc │ ├── 0001-use-correct-curl-config.patch │ ├── Config.in │ ├── libxmlrpc.hash │ └── libxmlrpc.mk ├── libxslt │ ├── Config.in │ ├── libxslt.hash │ └── libxslt.mk ├── libyaml │ ├── Config.in │ ├── libyaml.hash │ └── libyaml.mk ├── libyang │ ├── Config.in │ ├── libyang.hash │ └── libyang.mk ├── libyuv │ ├── 0001-i386-sse2.patch │ ├── Config.in │ ├── libyuv.hash │ └── libyuv.mk ├── libzip │ ├── Config.in │ ├── libzip.hash │ └── libzip.mk ├── libzlib │ ├── libzlib.hash │ └── libzlib.mk ├── lightning │ ├── 0001-include-Makefile.am-don-t-install-lightning.h-twice.patch │ ├── Config.in │ ├── lightning.hash │ └── lightning.mk ├── lighttpd │ ├── 0001-Fix-default-config-file.patch │ ├── Config.in │ ├── S50lighttpd │ ├── lighttpd.hash │ ├── lighttpd.mk │ └── lighttpd_tmpfiles.conf ├── linenoise │ ├── Config.in │ ├── linenoise.hash │ └── linenoise.mk ├── linknx │ ├── 0001-Link-with-libiconv-if-needed.patch │ ├── 0002-configure.ac-always-define-CPPUNIT.patch │ ├── 0003-src-Makefile.am-fix-linking-with-log4cpp.patch │ ├── Config.in │ ├── linknx.hash │ └── linknx.mk ├── links │ ├── Config.in │ ├── links.hash │ └── links.mk ├── linphone │ ├── Config.in │ ├── linphone.hash │ └── linphone.mk ├── linux-backports │ ├── Config.in │ ├── linux-backports.hash │ └── linux-backports.mk ├── linux-firmware │ ├── Config.in │ ├── linux-firmware.hash │ └── linux-firmware.mk ├── linux-fusion │ ├── 0001-fix-for-linux-4-and-above.patch │ ├── 0002-Fix-mismatched-conversion-spec-and-value-in-printk.patch │ ├── 0003-Fix-fusion-Unknown-symbol-tasklist_lock-err-0.patch │ ├── 0004-Port-one-one_udp.c-to-Linux-4.1.patch │ ├── 40-fusion.rules │ ├── Config.in │ ├── linux-fusion.hash │ └── linux-fusion.mk ├── linux-headers │ ├── Config.in │ ├── Config.in.host │ ├── linux-headers.hash │ └── linux-headers.mk ├── linux-pam │ ├── 0001-doc-makefile-am.patch │ ├── 0002-build-ignore-pam_rhosts-if-neither-ruserok-nor-ruserok_af-is-available.patch │ ├── Config.in │ ├── linux-pam.hash │ ├── linux-pam.mk │ ├── login.pam │ └── other.pam ├── linux-serial-test │ ├── Config.in │ ├── linux-serial-test.hash │ └── linux-serial-test.mk ├── linux-syscall-support │ ├── Config.in │ ├── linux-syscall-support.hash │ └── linux-syscall-support.mk ├── linux-tools │ ├── Config.in │ ├── S10hyperv │ ├── hypervfcopyd.service │ ├── hypervkvpd.service │ ├── hypervvssd.service │ ├── linux-tool-cpupower.mk.in │ ├── linux-tool-gpio.mk.in │ ├── linux-tool-hv.mk.in │ ├── linux-tool-iio.mk.in │ ├── linux-tool-pci.mk.in │ ├── linux-tool-perf.mk.in │ ├── linux-tool-selftests.mk.in │ ├── linux-tool-tmon.mk.in │ └── linux-tools.mk ├── linux-zigbee │ ├── 0001-test-serial-Remove-test-serial.patch │ ├── 0002-addrdb-coord-config-parse.y-add-missing-time.h-inclu.patch │ ├── Config.in │ ├── linux-zigbee.hash │ └── linux-zigbee.mk ├── linuxconsoletools │ ├── 0001-conditional-build.patch │ ├── Config.in │ ├── linuxconsoletools.hash │ └── linuxconsoletools.mk ├── linuxptp │ ├── 0001-missing.h-drop-clock_nanosleep-replacement.patch │ ├── 0002-fix-building-with-new-kernel-headers.patch │ ├── Config.in │ ├── S65linuxptp │ ├── linuxptp-system-clock.service │ ├── linuxptp.cfg │ ├── linuxptp.hash │ ├── linuxptp.mk │ └── linuxptp.service ├── liquid-dsp │ ├── Config.in │ ├── liquid-dsp.hash │ └── liquid-dsp.mk ├── lirc-tools │ ├── 0001-Fix-build-without-Python.patch │ ├── 0002-Fix-python-client-cross-compile.patch │ ├── 0003-python-pkg-Fix-lirc-version-detection-when-cross-com.patch │ ├── Config.in │ ├── S25lircd │ ├── lirc-tools.hash │ └── lirc-tools.mk ├── lite │ ├── 0001-dfbspy-stat.patch │ ├── 0002-no-tests.patch │ ├── 0003-pkg-config.patch │ ├── Config.in │ ├── lite.hash │ └── lite.mk ├── live555 │ ├── 0001-Add-a-pkg-config-file-for-the-shared-libraries.patch │ ├── Config.in │ ├── live555.hash │ └── live555.mk ├── ljlinenoise │ ├── Config.in │ ├── ljlinenoise.hash │ └── ljlinenoise.mk ├── ljsyscall │ ├── Config.in │ ├── ljsyscall.hash │ └── ljsyscall.mk ├── lksctp-tools │ ├── Config.in │ ├── lksctp-tools.hash │ └── lksctp-tools.mk ├── lld │ ├── Config.in.host │ ├── lld.hash │ └── lld.mk ├── lldpd │ ├── Config.in │ ├── S60lldpd │ ├── lldpd.hash │ └── lldpd.mk ├── llvm │ ├── Config.in │ ├── llvm.hash │ └── llvm.mk ├── lm-sensors │ ├── 0001-static-build.patch │ ├── 0002-no-host-ldconfig.patch │ ├── Config.in │ ├── lm-sensors.hash │ └── lm-sensors.mk ├── lmbench │ ├── 0001-scripts-build-use-bin-bash-as-shell.patch │ ├── 0002-src-Makefile-add-lmbench-to-list-of-executables.patch │ ├── Config.in │ ├── lmbench.hash │ └── lmbench.mk ├── localedef │ ├── 2.30-20-g50f20fe506abb8853641006a7b90a81af21d7b91 │ │ ├── 0001-HACK-only-build-and-install-localedef.patch │ │ ├── 0002-relax-dependency-on-GCC-to-4.8-and-binutils-to-2.24.patch │ │ ├── 0003-localedef-Use-initializer-for-flexible-array-member-.patch │ │ └── localedef.hash │ ├── localedef.hash │ └── localedef.mk ├── lockdev │ ├── 0001-Makefile-install-static-library-and-headers-separate.patch │ ├── Config.in │ ├── lockdev.hash │ └── lockdev.mk ├── lockfile-progs │ ├── 0001-sus3v-legacy.patch │ ├── Config.in │ ├── lockfile-progs.hash │ └── lockfile-progs.mk ├── log4cplus │ ├── 0001-configure-ac-check-for-libraries-in-C-mode.patch │ ├── Config.in │ ├── log4cplus.hash │ └── log4cplus.mk ├── log4cpp │ ├── Config.in │ ├── log4cpp.hash │ └── log4cpp.mk ├── log4cxx │ ├── 0001-charset-fixes.patch │ ├── 0002-missing-includes.patch │ ├── 0003-missing-includes.patch │ ├── 0004-Applied-patch-for-LOGCXX-400-LOGCXX-404-LOGCXX-402-L.patch │ ├── 0005-domtestcase.cpp-fix-narrowing-conversion-compile-err.patch │ ├── Config.in │ ├── log4cxx.hash │ └── log4cxx.mk ├── logrotate │ ├── Config.in │ ├── logrotate.conf │ ├── logrotate.hash │ └── logrotate.mk ├── logsurfer │ ├── Config.in │ ├── logsurfer.hash │ └── logsurfer.mk ├── lpc3250loader │ ├── Config.in.host │ ├── lpc3250loader.hash │ └── lpc3250loader.mk ├── lpeg │ ├── Config.in │ ├── lpeg.hash │ └── lpeg.mk ├── lpty │ ├── Config.in │ ├── lpty.hash │ └── lpty.mk ├── lrandom │ ├── Config.in │ ├── lrandom.hash │ └── lrandom.mk ├── lrzip │ ├── 0001-missing-stdarg.patch │ ├── Config.in │ ├── lrzip.hash │ └── lrzip.mk ├── lrzsz │ ├── Config.in │ ├── lrzsz.hash │ └── lrzsz.mk ├── lshw │ ├── 0001-Makefile-allow-to-pass-additional-LIBS.patch │ ├── 0002-Fix-musl-build-basename-is-in-libgen.h.patch │ ├── 0003-Fix-use-of-LONG_BIT.patch │ ├── Config.in │ ├── lshw.hash │ └── lshw.mk ├── lsof │ ├── 0001-makefile.patch │ ├── 0002-remove-susvlegacy-funcs.patch │ ├── 0003-override-cflags.patch │ ├── Config.in │ ├── lsof.hash │ └── lsof.mk ├── lsqlite3 │ ├── Config.in │ ├── lsqlite3.hash │ └── lsqlite3.mk ├── lsscsi │ ├── Config.in │ ├── lsscsi.hash │ └── lsscsi.mk ├── lsuio │ ├── Config.in │ ├── lsuio.hash │ └── lsuio.mk ├── ltp-testsuite │ ├── Config.in │ ├── ltp-testsuite.hash │ └── ltp-testsuite.mk ├── ltrace │ ├── 0001-arm-plt.patch │ ├── 0002-sparc-add-missing-library.h-include.patch │ ├── Config.in │ ├── ltrace.hash │ └── ltrace.mk ├── ltris │ ├── 0001-fix-gcc5-build.patch │ ├── Config.in │ ├── ltris.hash │ └── ltris.mk ├── lttng-babeltrace │ ├── 0001-tests-lib-Makefile.am-remove-unneeded-static-flag.patch │ ├── Config.in │ ├── Config.in.host │ ├── lttng-babeltrace.hash │ └── lttng-babeltrace.mk ├── lttng-libust │ ├── Config.in │ ├── lttng-libust.hash │ └── lttng-libust.mk ├── lttng-modules │ ├── Config.in │ ├── lttng-modules.hash │ └── lttng-modules.mk ├── lttng-tools │ ├── Config.in │ ├── lttng-tools.hash │ └── lttng-tools.mk ├── lua-basexx │ ├── Config.in │ ├── lua-basexx.hash │ └── lua-basexx.mk ├── lua-binaryheap │ ├── Config.in │ ├── lua-binaryheap.hash │ └── lua-binaryheap.mk ├── lua-bit32 │ ├── Config.in │ ├── lua-bit32.hash │ └── lua-bit32.mk ├── lua-cjson │ ├── Config.in │ ├── lua-cjson.hash │ └── lua-cjson.mk ├── lua-coat │ ├── Config.in │ ├── lua-coat.hash │ └── lua-coat.mk ├── lua-coatpersistent │ ├── Config.in │ ├── lua-coatpersistent.hash │ └── lua-coatpersistent.mk ├── lua-codegen │ ├── Config.in │ ├── lua-codegen.hash │ └── lua-codegen.mk ├── lua-compat53 │ ├── Config.in │ ├── lua-compat53.hash │ └── lua-compat53.mk ├── lua-cqueues │ ├── Config.in │ ├── lua-cqueues.hash │ └── lua-cqueues.mk ├── lua-csnappy │ ├── Config.in │ ├── lua-csnappy.hash │ └── lua-csnappy.mk ├── lua-curl │ ├── Config.in │ ├── lua-curl.hash │ └── lua-curl.mk ├── lua-datafile │ ├── Config.in │ ├── lua-datafile.hash │ └── lua-datafile.mk ├── lua-ev │ ├── Config.in │ ├── lua-ev.hash │ └── lua-ev.mk ├── lua-fifo │ ├── Config.in │ ├── lua-fifo.hash │ └── lua-fifo.mk ├── lua-flu │ ├── Config.in │ ├── lua-flu.hash │ └── lua-flu.mk ├── lua-gd │ ├── 0001-Protect-declaration-of-LgdImageCreateFromPng-with-GD.patch │ ├── Config.in │ ├── lua-gd.hash │ └── lua-gd.mk ├── lua-http │ ├── Config.in │ ├── lua-http.hash │ └── lua-http.mk ├── lua-iconv │ ├── Config.in │ ├── lua-iconv.hash │ └── lua-iconv.mk ├── lua-livr-extra │ ├── Config.in │ ├── lua-livr-extra.hash │ └── lua-livr-extra.mk ├── lua-livr │ ├── Config.in │ ├── lua-livr.hash │ └── lua-livr.mk ├── lua-lpeg-patterns │ ├── Config.in │ ├── lua-lpeg-patterns.hash │ └── lua-lpeg-patterns.mk ├── lua-lunitx │ ├── Config.in │ ├── lua-lunitx.hash │ └── lua-lunitx.mk ├── lua-markdown │ ├── Config.in │ ├── lua-markdown.hash │ └── lua-markdown.mk ├── lua-messagepack │ ├── Config.in │ ├── lua-messagepack.hash │ └── lua-messagepack.mk ├── lua-msgpack-native │ ├── Config.in │ ├── lua-msgpack-native.hash │ └── lua-msgpack-native.mk ├── lua-periphery │ ├── Config.in │ ├── lua-periphery.hash │ └── lua-periphery.mk ├── lua-resty-http │ ├── Config.in │ ├── lua-resty-http.hash │ └── lua-resty-http.mk ├── lua-rotas │ ├── Config.in │ ├── lua-rotas.hash │ └── lua-rotas.mk ├── lua-sailor │ ├── Config.in │ ├── lua-sailor.hash │ └── lua-sailor.mk ├── lua-sdl2 │ ├── 0001-Do-not-reference-host-directory-for-headers.patch │ ├── 0002-CMakeLists-do-not-require-C.patch │ ├── Config.in │ ├── lua-sdl2.hash │ └── lua-sdl2.mk ├── lua-silva │ ├── Config.in │ ├── lua-silva.hash │ └── lua-silva.mk ├── lua-std-debug │ ├── Config.in │ ├── lua-std-debug.hash │ └── lua-std-debug.mk ├── lua-std-normalize │ ├── Config.in │ ├── lua-std-normalize.hash │ └── lua-std-normalize.mk ├── lua-stdlib │ ├── Config.in │ ├── lua-stdlib.hash │ └── lua-stdlib.mk ├── lua-testmore │ ├── Config.in │ ├── lua-testmore.hash │ └── lua-testmore.mk ├── lua-utf8 │ ├── Config.in │ ├── lua-utf8.hash │ └── lua-utf8.mk ├── lua-valua │ ├── Config.in │ ├── lua-valua.hash │ └── lua-valua.mk ├── lua │ ├── 5.1.5 │ │ ├── 0001-root-path.patch │ │ ├── 0002-shared-libs-for-lua.patch │ │ ├── 0011-linenoise.patch │ │ └── 0012-fix-reader-at-eoz.patch │ ├── 5.3.5 │ │ ├── 0001-root-path.patch │ │ ├── 0002-shared-libs-for-lua.patch │ │ ├── 0003-fix-revision-number.patch │ │ └── 0011-linenoise.patch │ ├── Config.in │ ├── lua.hash │ ├── lua.mk │ └── lua.pc.in ├── luabitop │ ├── Config.in │ ├── luabitop.hash │ └── luabitop.mk ├── luadbi-sqlite3 │ ├── Config.in │ ├── luadbi-sqlite3.hash │ └── luadbi-sqlite3.mk ├── luadbi │ ├── Config.in │ ├── luadbi.hash │ └── luadbi.mk ├── luaexpat │ ├── 0001-restore-getcurrentbytecount.patch │ ├── Config.in │ ├── luaexpat.hash │ └── luaexpat.mk ├── luaexpatutils │ ├── Config.in │ ├── luaexpatutils.hash │ └── luaexpatutils.mk ├── luafilesystem │ ├── Config.in │ ├── luafilesystem.hash │ └── luafilesystem.mk ├── luainterpreter │ ├── Config.in │ └── luainterpreter.mk ├── luajit │ ├── 0001-no-bin-symlink.patch │ ├── 0002-install-inc.patch │ ├── Config.in │ ├── luajit.hash │ └── luajit.mk ├── luajson │ ├── Config.in │ ├── luajson.hash │ └── luajson.mk ├── lualogging │ ├── Config.in │ ├── lualogging.hash │ └── lualogging.mk ├── luaossl │ ├── Config.in │ ├── luaossl.hash │ └── luaossl.mk ├── luaposix │ ├── Config.in │ ├── luaposix.hash │ └── luaposix.mk ├── luarocks │ ├── buildroot.lua │ ├── luarocks-br-config.lua │ ├── luarocks.hash │ └── luarocks.mk ├── luasec │ ├── Config.in │ ├── luasec.hash │ └── luasec.mk ├── luasocket │ ├── Config.in │ ├── luasocket.hash │ └── luasocket.mk ├── luasql-sqlite3 │ ├── Config.in │ ├── luasql-sqlite3.hash │ └── luasql-sqlite3.mk ├── luasyslog │ ├── 0001-compat-Lua-5.3.patch │ ├── Config.in │ ├── luasyslog.hash │ └── luasyslog.mk ├── lugaru │ ├── 0001-ImageIO-fix-invalid-conversion.patch │ ├── 0002-Fix-mismatched-usage-length-build-fail-on-g.patch │ ├── Config.in │ ├── lugaru.hash │ └── lugaru.mk ├── luksmeta │ ├── Config.in │ ├── luksmeta.hash │ └── luksmeta.mk ├── lutok │ ├── Config.in │ ├── lutok.hash │ └── lutok.mk ├── luv │ ├── 0001-src-lreq.c-fix-build-with-gcc-4.8.patch │ ├── Config.in │ ├── luv.hash │ └── luv.mk ├── luvi │ ├── Config.in │ ├── luvi.hash │ └── luvi.mk ├── lvm2 │ ├── 0001-configure-Introduce-enable-symvers-option.patch │ ├── 0002-udev-remove-unsupported-options-event-timeout-rule.patch │ ├── Config.in │ ├── lvm2.hash │ └── lvm2.mk ├── lxc │ ├── 0001-syscall_wrappers-rename-internal-memfd_create-to-mem.patch │ ├── 0002-configure.ac-fix-build-on-toolchain-without-SSP.patch │ ├── 0003-src-lxc-raw_syscalls.c-fix-sparc-assembly.patch │ ├── 0004-cgroups-initialize-cpuset-properly.patch │ ├── Config.in │ ├── lxc.hash │ └── lxc.mk ├── lynx │ ├── Config.in │ ├── lynx.hash │ └── lynx.mk ├── lz4 │ ├── Config.in │ ├── lz4.hash │ └── lz4.mk ├── lzip │ ├── Config.in │ ├── lzip.hash │ └── lzip.mk ├── lzlib │ ├── Config.in │ ├── lzlib.hash │ └── lzlib.mk ├── lzma │ ├── 0001-Remove-static-from-LDFLAGS.patch │ ├── lzma.hash │ └── lzma.mk ├── lzo │ ├── Config.in │ ├── lzo.hash │ └── lzo.mk ├── lzop │ ├── 0001-build-with-gcc6.patch │ ├── 0002-use-static-inlines-as-the-external-inline-definition.patch │ ├── Config.in │ ├── lzop.hash │ └── lzop.mk ├── m4 │ ├── 0001-fflush-adjust-to-glibc-2.28-libio.h-removal.patch │ ├── 0002-fflush-be-more-paranoid-about-libio.h-change.patch │ ├── m4.hash │ └── m4.mk ├── macchanger │ ├── 0001-Fix-missing-include-for-caddr_t.patch │ ├── Config.in │ ├── macchanger.hash │ └── macchanger.mk ├── madplay │ ├── 0001-switch-to-new-alsa-api.patch │ ├── 0002-configure-ac-automake-foreign.patch │ ├── 0003-configure-ac-use-pkg-config-to-find-id3tag.patch │ ├── 0004-configure-ac-call-AM_MKINSTALLDIRS.patch │ ├── Config.in │ ├── madplay.hash │ └── madplay.mk ├── make │ ├── 0001-configure.ac-Support-GLIBC-glob-interface-version-2.patch │ ├── 0001-glob-Do-not-assume-glibc-glob-internals.patch │ ├── Config.in │ ├── make.hash │ └── make.mk ├── makedevs │ ├── README │ ├── makedevs.c │ └── makedevs.mk ├── mali-t76x │ ├── Config.in │ ├── egl.pc │ ├── glesv2.pc │ ├── mali-t76x.hash │ └── mali-t76x.mk ├── mariadb │ ├── 0001-add-extra-check-for-librt.patch │ ├── S97mysqld │ ├── mariadb.hash │ ├── mariadb.mk │ └── mysqld.service ├── matchbox-common │ ├── Config.in │ ├── matchbox-common.hash │ └── matchbox-common.mk ├── matchbox-desktop │ ├── Config.in │ ├── matchbox-desktop.hash │ └── matchbox-desktop.mk ├── matchbox-fakekey │ ├── Config.in │ ├── matchbox-fakekey.hash │ └── matchbox-fakekey.mk ├── matchbox-keyboard │ ├── Config.in │ ├── matchbox-keyboard.hash │ ├── matchbox-keyboard.mk │ └── mb-applet-kbd-wrapper.sh ├── matchbox-lib │ ├── 0001-index-is-legacy.patch │ ├── 0002-libpng15.patch │ ├── 0003-include-setjmp-h.patch │ ├── Config.in │ ├── matchbox-lib.hash │ └── matchbox-lib.mk ├── matchbox-panel │ ├── 0001-index-is-legacy.patch │ ├── 0002-mb-applet-wireless.patch │ ├── 0003-mb-applet-battery.patch │ ├── Config.in │ ├── matchbox-panel.hash │ └── matchbox-panel.mk ├── matchbox-startup-monitor │ ├── 0001-true-false.patch │ ├── Config.in │ ├── matchbox-startup-monitor.hash │ └── matchbox-startup-monitor.mk ├── matchbox │ ├── 0001-defaulttheme.patch │ ├── Config.in │ ├── matchbox.hash │ └── matchbox.mk ├── mbedtls │ ├── 0001-bn_mul.h-fix-x86-PIC-inline-ASM-compilation-with-GCC.patch │ ├── Config.in │ ├── mbedtls.hash │ └── mbedtls.mk ├── mc │ ├── Config.in │ ├── mc.hash │ └── mc.mk ├── mcelog │ ├── Config.in │ ├── mcelog.hash │ └── mcelog.mk ├── mcrypt │ ├── 0001-CVE-2012-4409.patch │ ├── 0002-CVE-2012-4426.patch │ ├── 0003-CVE-2012-4527.patch │ ├── 0004-no-rpath.patch │ ├── Config.in │ ├── mcrypt.hash │ └── mcrypt.mk ├── mdadm │ ├── 0001-add-install-targets-for-mdadm-and-mdmon.patch │ ├── 0002-mdadm.h-include-sysmacros.h-unconditionally.patch │ ├── Config.in │ ├── mdadm.hash │ └── mdadm.mk ├── mdevd │ ├── Config.in │ ├── mdevd.hash │ └── mdevd.mk ├── mediastreamer │ ├── 0001-fix-compilation-issue-with-latest-bctoobox.patch │ ├── 0002-Use-AV_INPUT_BUFFER_PADDING_SIZE-to-determine-paddin.patch │ ├── 0002-m4-fix-local-ffmpeg-and-avcodec-function-conflict.patch │ ├── Config.in │ ├── mediastreamer.hash │ └── mediastreamer.mk ├── memcached │ ├── 0001-configure-Fix-cross-compilation-errors.patch │ ├── 0002-configure-Simplify-pointer-size-check.patch │ ├── Config.in │ ├── memcached.hash │ └── memcached.mk ├── memstat │ ├── 0001-PATH_MAX.patch │ ├── Config.in │ ├── memstat.hash │ └── memstat.mk ├── memtest86 │ ├── Config.in │ ├── memtest86.hash │ └── memtest86.mk ├── memtester │ ├── 0001-makefile-fix.patch │ ├── Config.in │ ├── memtester.hash │ └── memtester.mk ├── memtool │ ├── Config.in │ ├── memtool.hash │ └── memtool.mk ├── mender-artifact │ ├── Config.in.host │ ├── mender-artifact.hash │ └── mender-artifact.mk ├── mender-grubenv │ ├── Config.in │ ├── mender-grubenv.hash │ └── mender-grubenv.mk ├── mender │ ├── Config.in │ ├── S42mender │ ├── artifact_info │ ├── device_type │ ├── mender.conf │ ├── mender.hash │ ├── mender.mk │ ├── mender.service │ ├── readme.txt │ └── server.crt ├── menu-cache │ ├── Config.in │ ├── menu-cache.hash │ └── menu-cache.mk ├── mesa3d-demos │ ├── 0001-demos-makes-opengl-an-optional-component.patch │ ├── Config.in │ ├── mesa3d-demos.hash │ └── mesa3d-demos.mk ├── mesa3d-headers │ ├── Config.in │ ├── mesa3d-headers.hash │ └── mesa3d-headers.mk ├── mesa3d │ ├── 0001-musl.patch │ ├── 0002-meson-use-wayland-scanner-provided-by-wayland-scanne.patch │ ├── 0003-meson-Set-proper-value-for-LIBCLC_INCLUDEDIR.patch │ ├── 0004-c99_math-import-isinf-for-uclibc-based-toolchains.patch │ ├── 0006-util-remove-the-dependency-on-kcmp.h.patch │ ├── 0007-vc4-add-meson-option-to-disable-optional-neon-suppor.patch │ ├── Config.in │ ├── mesa3d.hash │ └── mesa3d.mk ├── meson │ ├── 0001-Only-fix-RPATH-if-install_rpath-is-not-empty.patch │ ├── 0002-Prefer-ext-static-libs-when-default-library-static.patch │ ├── 0003-envconfig-add-pkg_config_libdir-property.patch │ ├── cross-compilation.conf.in │ ├── meson.hash │ └── meson.mk ├── metacity │ ├── 0001-add-libm-reference.patch │ ├── 0002-gconf.patch │ ├── 0003-mag-add-libm-reference.patch │ ├── Config.in │ ├── Xsession │ ├── metacity.hash │ └── metacity.mk ├── mfgtools │ ├── 0001-lnx_def.h-fix-conflicting-declaration-of-__time64_t.patch │ ├── Config.in.host │ ├── mfgtools.hash │ ├── mfgtools.mk │ └── readme.txt ├── mfoc │ ├── Config.in │ ├── mfoc.hash │ └── mfoc.mk ├── micropython-lib │ ├── Config.in │ ├── micropython-lib.hash │ └── micropython-lib.mk ├── micropython │ ├── Config.in │ ├── micropython.hash │ └── micropython.mk ├── midori │ ├── 0001-fix-bug-1492932.patch │ ├── 0002-gcr-for-x11-only.patch │ ├── Config.in │ ├── midori.hash │ └── midori.mk ├── mii-diag │ ├── 0001-strchr.patch │ ├── Config.in │ ├── mii-diag.hash │ └── mii-diag.mk ├── mimic │ ├── Config.in │ ├── mimic.hash │ └── mimic.mk ├── minetest-game │ ├── Config.in │ ├── minetest-game.hash │ └── minetest-game.mk ├── minetest │ ├── Config.in │ ├── minetest.hash │ └── minetest.mk ├── mini-snmpd │ ├── 0001-Prepend-zero-byte-before-unsigned-integers.patch │ ├── 0002-mib.c-allow-unsigned-integers-to-have-an-extra-byte.patch │ ├── Config.in │ ├── mini-snmpd.hash │ ├── mini-snmpd.mk │ └── mini-snmpd.service ├── minicom │ ├── 0001-fix-static-linking-with-ncurses.patch │ ├── Config.in │ ├── minicom.hash │ └── minicom.mk ├── minidlna │ ├── Config.in │ ├── S60minidlnad │ ├── minidlna.hash │ ├── minidlna.mk │ └── minidlnad.service ├── minimodem │ ├── Config.in │ ├── minimodem.hash │ └── minimodem.mk ├── minissdpd │ ├── Config.in │ ├── S50minissdpd │ ├── minissdpd.hash │ ├── minissdpd.mk │ └── minissdpd.service ├── minizip │ ├── Config.in │ ├── minizip.hash │ └── minizip.mk ├── miraclecast │ ├── Config.in │ ├── miraclecast.hash │ └── miraclecast.mk ├── mjpegtools │ ├── 0001-PROGRAM_NOPIC-apparently-causes-problems-on-some-x86_64-systems.patch │ ├── Config.in │ ├── mjpegtools.hash │ └── mjpegtools.mk ├── mjpg-streamer │ ├── Config.in │ ├── mjpg-streamer.hash │ └── mjpg-streamer.mk ├── mkpasswd │ ├── Config.in.host │ ├── config.h │ ├── mkpasswd.c │ ├── mkpasswd.mk │ ├── utils.c │ └── utils.h ├── mkpimage │ ├── mkpimage.c │ └── mkpimage.mk ├── mksh │ ├── Config.in │ ├── mksh.hash │ └── mksh.mk ├── mmc-utils │ ├── 0001-mmc_cmds.c-fix-build-with-gcc-4.9.patch │ ├── Config.in │ ├── mmc-utils.hash │ └── mmc-utils.mk ├── moarvm │ ├── 0001-dynload-dynload_unix.c-don-t-use-RTLD_DI_LINKMAP-wit.patch │ ├── Config.in │ ├── moarvm.hash │ └── moarvm.mk ├── mobile-broadband-provider-info │ ├── Config.in │ ├── mobile-broadband-provider-info.hash │ └── mobile-broadband-provider-info.mk ├── modem-manager │ ├── Config.in │ ├── S44modem-manager │ ├── modem-manager.hash │ └── modem-manager.mk ├── modplugtools │ ├── Config.in │ ├── modplugtools.hash │ └── modplugtools.mk ├── mongodb │ ├── 0001-ssl_manager.cpp-fix-build-with-gcc-7-and-fpermissive.patch │ ├── Config.in │ ├── mongodb.hash │ └── mongodb.mk ├── mongoose │ ├── Config.in │ ├── mongoose.hash │ └── mongoose.mk ├── mongrel2 │ ├── 0002-Do-not-run-tests.patch │ ├── 0003-Fix-Makefiles-for-cross-compilation.patch │ ├── 0004-Rename-symbol-to-prevent-conflict.patch │ ├── Config.in │ ├── mongrel2.hash │ └── mongrel2.mk ├── monit │ ├── 0001-no-force-static.patch │ ├── Config.in │ ├── monit.hash │ └── monit.mk ├── monkey │ ├── Config.in │ ├── monkey.hash │ └── monkey.mk ├── mono-gtksharp3 │ ├── 0001-Fixes-MONO_PROFILE_ENTER_LEAVE-undeclared.patch │ ├── Config.in │ ├── mono-gtksharp3.hash │ └── mono-gtksharp3.mk ├── mono │ ├── 0001-Disable-backtrace-on-not-supported-uclibc.patch │ ├── 0002-Adjust-libc.so-path-depending-on-C-library-being-use.patch │ ├── 0003-configure.ac-checks-for-libunwind.patch │ ├── 0004-ppc32-delete-leftover-code-from-pre-monoctx-area.patch │ ├── Config.in │ ├── mono.hash │ └── mono.mk ├── monolite │ ├── monolite.hash │ └── monolite.mk ├── mosh │ ├── Config.in │ ├── mosh.hash │ └── mosh.mk ├── mosquitto │ ├── Config.in │ ├── S50mosquitto │ ├── mosquitto.hash │ └── mosquitto.mk ├── most │ ├── Config.in │ ├── most.hash │ └── most.mk ├── motion │ ├── Config.in │ ├── S99motion │ ├── motion.hash │ ├── motion.mk │ └── motion.service ├── mp4v2 │ ├── 0001-Fix-GCC7-build.patch │ ├── Config.in │ ├── mp4v2.hash │ └── mp4v2.mk ├── mpc │ ├── Config.in │ ├── mpc.hash │ └── mpc.mk ├── mpd-mpc │ ├── Config.in │ ├── mpd-mpc.hash │ └── mpd-mpc.mk ├── mpd │ ├── 0001-src-event-meson.build-add-atomic-dependency-for-spar.patch │ ├── Config.in │ ├── S95mpd │ ├── mpd.conf │ ├── mpd.hash │ └── mpd.mk ├── mpdecimal │ ├── 0001-Add-minimal-support-for-enable-disable-shared-static.patch │ ├── Config.in │ ├── mpdecimal.hash │ └── mpdecimal.mk ├── mpfr │ ├── Config.in │ ├── mpfr.hash │ └── mpfr.mk ├── mpg123 │ ├── Config.in │ ├── mpg123.hash │ └── mpg123.mk ├── mpir │ ├── 0001-mpn-arm-udiv.asm-workaround-binutils-bug-14887.patch │ ├── Config.in │ ├── mpir.hash │ └── mpir.mk ├── mpv │ ├── 0001-wscript-don-t-check-for-fork-on-POSIX-checks.patch │ ├── 0002-fix-powerpc64-altivec.patch │ ├── Config.in │ ├── mpv.hash │ └── mpv.mk ├── mraa │ ├── Config.in │ ├── mraa.hash │ └── mraa.mk ├── mrouted │ ├── Config.in │ ├── mrouted.hash │ └── mrouted.mk ├── msgpack │ ├── Config.in │ ├── msgpack.hash │ └── msgpack.mk ├── msmtp │ ├── Config.in │ ├── msmtp.hash │ └── msmtp.mk ├── msr-tools │ ├── Config.in │ ├── msr-tools.hash │ └── msr-tools.mk ├── mtd │ ├── Config.in │ ├── Config.in.host │ ├── mtd.hash │ └── mtd.mk ├── mtdev │ ├── Config.in │ ├── mtdev.hash │ └── mtdev.mk ├── mtdev2tuio │ ├── 0001-Fix-build-with-musl-libc.patch │ ├── Config.in │ ├── mtdev2tuio.hash │ └── mtdev2tuio.mk ├── mtools │ ├── Config.in │ ├── Config.in.host │ ├── mtools.hash │ └── mtools.mk ├── mtr │ ├── Config.in │ ├── mtr.hash │ └── mtr.mk ├── multicat │ ├── Config.in │ ├── multicat.hash │ └── multicat.mk ├── murata-cyw-fw │ ├── Config.in │ ├── murata-cyw-fw.hash │ └── murata-cyw-fw.mk ├── musepack │ ├── 0001-shared.patch │ ├── 0002-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch │ ├── 0003-include-fpu-control-with-glibc-only.patch │ ├── 0004-missing-sys-select.patch │ ├── Config.in │ ├── musepack.hash │ └── musepack.mk ├── musl-compat-headers │ ├── Config.in │ ├── cdefs.h │ ├── musl-compat-headers.hash │ └── musl-compat-headers.mk ├── musl-fts │ ├── Config.in │ ├── musl-fts.hash │ └── musl-fts.mk ├── musl │ ├── 0001-avoid-kernel-if_ether.h.patch │ ├── 0002-package-musl-Make-scheduler-functions-Linux-compatib.patch │ ├── 0003-move-riscv64-register-index-constants-to-signal.h.patch │ ├── Config.in │ ├── musl.hash │ └── musl.mk ├── mutt │ ├── 0001-Convert-makedoc-c-to-makedoc-pl.patch │ ├── 0002-Convert-hcachever-sh-in-to-hcachever-pl.patch │ ├── Config.in │ ├── mutt.hash │ └── mutt.mk ├── mxml │ ├── Config.in │ ├── mxml.hash │ └── mxml.mk ├── mxsldr │ ├── Config.in.host │ └── mxsldr.mk ├── mysql │ ├── Config.in │ └── mysql.mk ├── nano │ ├── Config.in │ ├── nano.hash │ └── nano.mk ├── nanocom │ ├── Config.in │ ├── nanocom.hash │ └── nanocom.mk ├── nanomsg │ ├── Config.in │ ├── nanomsg.hash │ └── nanomsg.mk ├── nasm │ ├── nasm.hash │ └── nasm.mk ├── nbd │ ├── 0001-Also-close-the-file-descriptor-before-returning.patch │ ├── Config.in │ ├── nbd.hash │ └── nbd.mk ├── ncdu │ ├── Config.in │ ├── ncdu.hash │ └── ncdu.mk ├── ncftp │ ├── Config.in │ ├── ncftp.hash │ └── ncftp.mk ├── ncmpc │ ├── 0001-meson.build-add-atomic-dependency-for-sparc.patch │ ├── 0002-meson.build-link-with-lintl-if-needed.patch │ ├── Config.in │ ├── ncmpc.hash │ └── ncmpc.mk ├── ncurses │ ├── 0001-gcc-5.x-MKlib_gen.patch │ ├── Config.in │ ├── ncurses.hash │ └── ncurses.mk ├── ndisc6 │ ├── 0001-Fix-musl-build.patch │ ├── Config.in │ ├── ndisc6.hash │ └── ndisc6.mk ├── ne10 │ ├── 0001-CMakeLists-don-t-hard-code-thumb-code-generation.patch │ ├── Config.in │ ├── ne10.hash │ └── ne10.mk ├── neard │ ├── Config.in │ ├── S53neard │ ├── neard.hash │ └── neard.mk ├── neardal │ ├── Config.in │ ├── neardal.hash │ └── neardal.mk ├── neon │ ├── Config.in │ ├── neon.hash │ └── neon.mk ├── net-tools │ ├── Config.in │ ├── net-tools.hash │ └── net-tools.mk ├── netatalk │ ├── 0001-Fix-setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch │ ├── Config.in │ ├── S50netatalk │ ├── netatalk.hash │ └── netatalk.mk ├── netcat-openbsd │ ├── Config.in │ ├── netcat-openbsd.hash │ └── netcat-openbsd.mk ├── netcat │ ├── 0001-signed-bit-counting.patch │ ├── Config.in │ ├── netcat.hash │ └── netcat.mk ├── netifrc │ ├── Config.in │ ├── netifrc.hash │ └── netifrc.mk ├── netperf │ ├── Config.in │ ├── netperf.hash │ └── netperf.mk ├── netplug │ ├── 0001-makefile-flags.patch │ ├── 0002-add-missing-time-include.patch │ ├── 0003-remove-assert-fail.patch │ ├── Config.in │ ├── S29netplug │ ├── netplug-script │ ├── netplug.hash │ ├── netplug.mk │ └── netplug.service ├── netsniff-ng │ ├── Config.in │ ├── netsniff-ng.hash │ └── netsniff-ng.mk ├── netsnmp │ ├── 0001-configure-static-linking-Fix-SSL-checks.patch │ ├── 0002-configure-Fix-lcrypto-lz-test.patch │ ├── 0003-configure-fix-AC_CHECK_FUNCS-EVP_sha224-EVP_sha384-..patch │ ├── 0004-configure-fix-AC_CHECK_FUNCS-TLS_method-TLSv1_method.patch │ ├── Config.in │ ├── S59snmpd │ ├── netsnmp.hash │ └── netsnmp.mk ├── netstat-nat │ ├── Config.in │ ├── netstat-nat.hash │ └── netstat-nat.mk ├── netsurf-buildsystem │ ├── netsurf-buildsystem.hash │ └── netsurf-buildsystem.mk ├── netsurf │ ├── 0001-avoid-system-perl-dependencies.patch │ ├── 0003-do-not-cross-compile-nsgenbind.patch │ ├── 0004-fix-compilation-without-curl.patch │ ├── Config.in │ ├── netsurf.hash │ └── netsurf.mk ├── nettle │ ├── 0001-disable-testsuite-examples.patch │ ├── Config.in │ ├── nettle.hash │ └── nettle.mk ├── network-manager-openvpn │ ├── Config.in │ ├── network-manager-openvpn.hash │ └── network-manager-openvpn.mk ├── network-manager │ ├── Config.in │ ├── S45network-manager │ ├── network-manager.hash │ └── network-manager.mk ├── newt │ ├── Config.in │ ├── newt.hash │ └── newt.mk ├── nfacct │ ├── Config.in │ ├── nfacct.hash │ └── nfacct.mk ├── nfs-utils │ ├── Config.in │ ├── S60nfs │ ├── nfs-utils.hash │ ├── nfs-utils.mk │ ├── nfs-utils_env.sh │ └── nfs-utils_tmpfiles.conf ├── nftables │ ├── Config.in │ ├── nftables.hash │ └── nftables.mk ├── nghttp2 │ ├── Config.in │ ├── nghttp2.hash │ └── nghttp2.mk ├── nginx-dav-ext │ ├── Config.in │ ├── nginx-dav-ext.hash │ └── nginx-dav-ext.mk ├── nginx-modsecurity │ ├── Config.in │ ├── nginx-modsecurity.hash │ └── nginx-modsecurity.mk ├── nginx-naxsi │ ├── Config.in │ ├── nginx-naxsi.hash │ └── nginx-naxsi.mk ├── nginx-upload │ ├── 0001-nginx-upload-module-add-openssl-lib-dependency.patch │ ├── Config.in │ ├── nginx-upload.hash │ └── nginx-upload.mk ├── nginx │ ├── 0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch │ ├── 0002-auto-feature-add-mechanism-allowing-to-force-feature.patch │ ├── 0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch │ ├── 0004-auto-lib-libxslt-conf-use-pkg-config.patch │ ├── 0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch │ ├── 0006-auto-lib-openssl-conf-use-pkg-config.patch │ ├── 0007-auto-lib-libgd-conf-use-pkg-config.patch │ ├── 0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch │ ├── Config.in │ ├── S50nginx │ ├── nginx.hash │ ├── nginx.logrotate │ ├── nginx.mk │ └── nginx.service ├── ngircd │ ├── Config.in │ ├── ngircd.hash │ └── ngircd.mk ├── ngrep │ ├── 0001-Fix-typo-in-configure-in-when-testing-for-use_pcre.patch │ ├── 0002-Check-for-libnet_init-in-configure-in.patch │ ├── 0003-fix-disable-tcpkill.patch │ ├── Config.in │ ├── ngrep.hash │ └── ngrep.mk ├── nilfs-utils │ ├── 0001-nilfs_cleanerd-link-dynamically.patch │ ├── Config.in │ ├── nilfs-utils.hash │ └── nilfs-utils.mk ├── ninja │ ├── 0001-set-minimum-cmake-version-to-3.10.patch │ ├── 0002-remove-fdiagnostics-color-from-make-command.patch │ ├── 0003-CMake-fix-object-library-usage.patch │ ├── ninja.hash │ └── ninja.mk ├── nload │ ├── Config.in │ ├── nload.hash │ └── nload.mk ├── nmap │ ├── 0001-libdnet-wrapper-configure.patch │ ├── Config.in │ ├── nmap.hash │ └── nmap.mk ├── nmon │ ├── Config.in │ ├── nmon.hash │ └── nmon.mk ├── nodejs │ ├── 0001-check-if-uclibc-has-backtrace-support.patch │ ├── Config.in │ ├── nodejs.hash │ └── nodejs.mk ├── nodm │ ├── Config.in │ ├── S90nodm │ ├── nodm.hash │ ├── nodm.mk │ └── nodm.pam ├── noip │ ├── Config.in │ ├── noip.hash │ └── noip.mk ├── norm │ ├── 0001-protolib-drop-linux-version-check.patch │ ├── 0002-Use-print-as-function-call-for-Python3-compatibility.patch │ ├── 0003-Fix-mixed-tabs-spaces-in-protolib-wscript.patch │ ├── Config.in │ ├── norm.hash │ └── norm.mk ├── nss-mdns │ ├── Config.in │ ├── nss-mdns.hash │ └── nss-mdns.mk ├── nss-myhostname │ ├── Config.in │ ├── nss-myhostname.hash │ └── nss-myhostname.mk ├── nss-pam-ldapd │ ├── Config.in │ ├── S45nslcd │ ├── nslcd.service │ ├── nss-pam-ldapd.hash │ └── nss-pam-ldapd.mk ├── ntfs-3g │ ├── 0001-Fixed-reporting-an-error-when-failed-to-build-the-mo.patch │ ├── Config.in │ ├── ntfs-3g.hash │ └── ntfs-3g.mk ├── ntp │ ├── 0001-nano.patch │ ├── 0002-ntp-syscalls-fallback.patch │ ├── 0003-override-shell.patch │ ├── Config.in │ ├── S48sntp │ ├── S49ntp │ ├── ntp.hash │ ├── ntp.mk │ ├── ntpd.etc.conf │ └── ntpd.service ├── numactl │ ├── Config.in │ ├── numactl.hash │ └── numactl.mk ├── nut │ ├── 0001-Allow-to-customize-path-to-gdlib-config-and-net-snmp.patch │ ├── 0002-client-ups-add-missing-include.patch │ ├── 0003-Add-compatibility-with-openssl-1.1.0.patch │ ├── Config.in │ ├── nut.hash │ └── nut.mk ├── nuttcp │ ├── 0001-susv3-legacy.patch │ ├── Config.in │ ├── nuttcp.hash │ └── nuttcp.mk ├── nvidia-driver │ ├── 0001-use-LDFLAGS.patch │ ├── Config.in │ ├── egl.pc │ ├── gl.pc │ ├── nvidia-driver.hash │ └── nvidia-driver.mk ├── nvidia-tegra23 │ ├── Config.in │ ├── nvidia-tegra23-binaries │ │ ├── Config.in │ │ ├── egl.pc │ │ ├── gles.pc │ │ ├── glesv2.pc │ │ ├── nvidia-tegra23-binaries.hash │ │ └── nvidia-tegra23-binaries.mk │ ├── nvidia-tegra23-codecs │ │ ├── Config.in │ │ ├── nvidia-tegra23-codecs.hash │ │ └── nvidia-tegra23-codecs.mk │ └── nvidia-tegra23.mk ├── nvme │ ├── Config.in │ ├── nvme.hash │ └── nvme.mk ├── obsidian-cursors │ ├── Config.in │ ├── obsidian-cursors.hash │ └── obsidian-cursors.mk ├── ocf-linux │ ├── ocf-linux.hash │ └── ocf-linux.mk ├── ocrad │ ├── Config.in │ ├── ocrad.hash │ └── ocrad.mk ├── odhcp6c │ ├── Config.in │ ├── odhcp6c.hash │ └── odhcp6c.mk ├── odhcploc │ ├── Config.in │ ├── odhcploc.hash │ └── odhcploc.mk ├── ofono │ ├── 0001-uclibc-backtrace.patch │ ├── 0002-fix-musl-compile.patch │ ├── Config.in │ ├── S46ofono │ ├── ofono.hash │ └── ofono.mk ├── ogre │ ├── Config.in │ ├── ogre.hash │ └── ogre.mk ├── olsr │ ├── Config.in │ ├── S50olsr │ ├── olsr.hash │ ├── olsr.mk │ └── olsr.service ├── omap-u-boot-utils │ ├── Config.in.host │ ├── omap-u-boot-utils.hash │ └── omap-u-boot-utils.mk ├── omniorb │ ├── Config.in │ ├── omniorb.hash │ └── omniorb.mk ├── omxplayer │ ├── 0001-Update-Makefile-to-be-compatible-with-buildroot.patch │ ├── Config.in │ ├── omxplayer.hash │ └── omxplayer.mk ├── on2-8170-libs │ ├── Config.in │ ├── on2-8170-libs.hash │ └── on2-8170-libs.mk ├── on2-8170-modules │ ├── Config.in │ ├── on2-8170-modules.hash │ └── on2-8170-modules.mk ├── oniguruma │ ├── Config.in │ ├── oniguruma.hash │ └── oniguruma.mk ├── open-lldp │ ├── 0001-vdptool-fixed-compile-error-for-getline.patch │ ├── 0002-get-inline-functions-work-with-both-gnu11-and-gnu89.patch │ ├── 0003-Makefile.am-disable-Werror.patch │ ├── 0004-fixed-unknown-type-pid_t.patch │ ├── Config.in │ ├── open-lldp.hash │ └── open-lldp.mk ├── open-plc-utils │ ├── 0001-Remove-OWNER-and-GROUPS-parameters-to-install.patch │ ├── Config.in │ ├── open-plc-utils.hash │ └── open-plc-utils.mk ├── open2300 │ ├── 0001-fix-makefile.patch │ ├── Config.in │ ├── open2300.hash │ └── open2300.mk ├── openal │ ├── Config.in │ ├── openal.hash │ └── openal.mk ├── openblas │ ├── Config.in │ ├── openblas.hash │ └── openblas.mk ├── openbox │ ├── Config.in │ ├── openbox.hash │ └── openbox.mk ├── opencore-amr │ ├── Config.in │ ├── opencore-amr.hash │ └── opencore-amr.mk ├── opencv │ ├── 0001-atomic.patch │ ├── 0002-CMakeLists.txt-Do-not-add-libdl-to-LINKER_LIBS-for-s.patch │ ├── Config.in │ ├── opencv.hash │ └── opencv.mk ├── opencv3 │ ├── Config.in │ ├── opencv3.hash │ └── opencv3.mk ├── opengl │ ├── Config.in │ ├── libegl │ │ ├── Config.in │ │ └── libegl.mk │ ├── libgl │ │ ├── Config.in │ │ └── libgl.mk │ ├── libgles │ │ ├── Config.in │ │ └── libgles.mk │ ├── libopencl │ │ ├── Config.in │ │ └── libopencl.mk │ ├── libopenmax │ │ ├── Config.in │ │ └── libopenmax.mk │ ├── libopenvg │ │ ├── Config.in │ │ └── libopenvg.mk │ └── opengl.mk ├── openipmi │ ├── 0001-Avoid-searching-host-library-path.patch │ ├── 0002-sample-fix-readline-include-in-ipmi_serial_bmc_emu.c.patch │ ├── Config.in │ ├── openipmi.hash │ └── openipmi.mk ├── openjdk-bin │ ├── openjdk-bin.hash │ └── openjdk-bin.mk ├── openjdk │ ├── Config.in │ ├── openjdk.hash │ └── openjdk.mk ├── openjpeg │ ├── 0001-thirdparty-tiff-append-flags-found-by-pkg-config-if-.patch │ ├── 0002-thirdparty-lcms2-append-flags-found-by-pkg-config-if.patch │ ├── 0003-CMakeLists.txt-Don-t-require-a-C-compiler.patch │ ├── 0004-convertbmp-detect-invalid-file-dimensions-early.patch │ ├── 0005-bmp_read_rle4_data-avoid-potential-infinite-loop.patch │ ├── 0006-opj_j2k_update_image_dimensions-reject-images-whose-coordinates.patch │ ├── 0007-opj_tcd_init_tile-avoid-integer-overflow.patch │ ├── Config.in │ ├── openjpeg.hash │ └── openjpeg.mk ├── openlayers │ ├── Config.in │ ├── openlayers.hash │ └── openlayers.mk ├── openldap │ ├── 0001-fix_cross_strip.patch │ ├── 0002-fix-bignum.patch │ ├── 0003-disable-docs.patch │ ├── 0004-revert-ITS-3977-fix-libtool-static-behavior-to-match.patch │ ├── Config.in │ ├── openldap.hash │ └── openldap.mk ├── openmpi │ ├── Config.in │ ├── openmpi-mips32-fortran.cache │ ├── openmpi-mips64-fortran.cache │ ├── openmpi.hash │ └── openmpi.mk ├── openntpd │ ├── 0001-fix-musl.patch │ ├── Config.in │ ├── S49ntp │ ├── ntpd.service │ ├── openntpd.hash │ └── openntpd.mk ├── openobex │ ├── Config.in │ ├── openobex.hash │ └── openobex.mk ├── openocd │ ├── 0001-configure-enable-build-on-uclinux.patch │ ├── 0002-CVE-2018-5704-Prevent-some-forms-of-Cross-Protocol-S.patch │ ├── Config.in │ ├── Config.in.host │ ├── openocd.hash │ └── openocd.mk ├── openpgm │ ├── 0001-version_generator.py-make-it-python3-compliant.patch │ ├── 0002-cross-compile.patch │ ├── 0003-Rework-headers-includes-to-fix-build-with-musl-libc.patch │ ├── Config.in │ ├── openpgm.hash │ └── openpgm.mk ├── openpowerlink │ ├── 0001-install-the-stack-libraries-to-lib-subdirectory.patch │ ├── 0002-cmake-install-oplk-headers-files.patch │ ├── 0003-Add-top-level-CMakeLists.txt.patch │ ├── Config.in │ ├── openpowerlink.hash │ └── openpowerlink.mk ├── openrc │ ├── 0001-init.d-sysctl.in-add-support-for-busybox-sysctl.patch │ ├── 0002-sh-init.sh.Linux.in-change-run-lock-from-root-uucp-t.patch │ ├── Config.in │ ├── getty │ ├── openrc.hash │ ├── openrc.mk │ └── sysv-rcs ├── openresolv │ ├── Config.in │ ├── openresolv.hash │ └── openresolv.mk ├── openssh │ ├── Config.in │ ├── S50sshd │ ├── openssh.hash │ ├── openssh.mk │ ├── sshd-sysusers.conf │ └── sshd.service ├── openssl │ ├── Config.in │ └── openssl.mk ├── openswan │ ├── Config.in │ ├── openswan.hash │ └── openswan.mk ├── opentracing-cpp │ ├── Config.in │ ├── opentracing-cpp.hash │ └── opentracing-cpp.mk ├── opentyrian-data │ ├── Config.in │ ├── opentyrian-data.hash │ └── opentyrian-data.mk ├── opentyrian │ ├── Config.in │ └── opentyrian.mk ├── openvmtools │ ├── 0001-no_cflags_werror.patch │ ├── 0002-dont-force-cppflags.patch │ ├── 0003-Rename-poll-h-into-vm_poll-h-to-fix-build-failure-on-musl.patch │ ├── 0004-Remove-assumptions-about-glibc-being-only-libc-imple.patch │ ├── 0005-Use-configure-test-for-struct-timespec.patch │ ├── 0006-Fix-definition-of-ALLPERMS-and-ACCESSPERMS.patch │ ├── 0007-Use-configure-to-test-for-feature-instead-of-platfor.patch │ ├── 0008-Use-configure-test-for-sys-stat.h-include.patch │ ├── 0009-Set-permissions-on-rules-file.patch │ ├── 0010-Change-DEVPATH-to-devpath.patch │ ├── 0011-open-vm-tools-vmhgfs-fuse-fsutils.h-fix-build-on-mus.patch │ ├── Config.in │ ├── S10vmtoolsd │ ├── openvmtools.hash │ ├── openvmtools.mk │ ├── shutdown │ └── vmtoolsd.service ├── openvpn │ ├── Config.in │ ├── S60openvpn │ ├── openvpn.hash │ └── openvpn.mk ├── openzwave │ ├── 0001-Fix-issue-1783-Most-Compilers-Get-it-Some-need-a-little-help.patch │ ├── 0002-update-spec-files.patch │ ├── Config.in │ ├── openzwave.hash │ └── openzwave.mk ├── opkg-utils │ ├── Config.in.host │ ├── opkg-utils.hash │ └── opkg-utils.mk ├── opkg │ ├── Config.in │ ├── opkg.hash │ └── opkg.mk ├── oprofile │ ├── 0001-musl.patch │ ├── 0002-configure.ac-add-foreign-option-to-AM_INIT_AUTOMAKE.patch │ ├── 0003-Macro-wrappers-to-handle-the-binutils-2.34-api-chang.patch │ ├── Config.in │ ├── oprofile.hash │ └── oprofile.mk ├── optee-benchmark │ ├── Config.in │ ├── optee-benchmark.hash │ └── optee-benchmark.mk ├── optee-client │ ├── Config.in │ ├── S30optee │ ├── optee-client.hash │ └── optee-client.mk ├── optee-examples │ ├── Config.in │ ├── optee-examples.hash │ └── optee-examples.mk ├── optee-test │ ├── 0001-use-python3-instead-of-python.patch │ ├── Config.in │ ├── optee-test.hash │ └── optee-test.mk ├── opus-tools │ ├── Config.in │ ├── opus-tools.hash │ └── opus-tools.mk ├── opus │ ├── Config.in │ ├── opus.hash │ └── opus.mk ├── opusfile │ ├── Config.in │ ├── opusfile.hash │ └── opusfile.mk ├── oracle-mysql │ ├── 0000-ac_cache_check.patch │ ├── 0001-configure-ps-cache-check.patch │ ├── 0002-use-new-readline-iface.patch │ ├── 0003-ac_stack_direction-is-unset.patch │ ├── 0004-Fix-gen_lex_hash-execution.patch │ ├── 0005-bison_3_breaks_mysql_server_build.patch │ ├── 0006-no-force-static-build.patch │ ├── 0007-dont-install-in-mysql-directory.patch │ ├── 0008-fix-type-conversion.patch │ ├── 0008-gcc7.patch │ ├── S97mysqld │ ├── mysqld.service │ ├── oracle-mysql.hash │ └── oracle-mysql.mk ├── orbit │ ├── Config.in │ ├── orbit.hash │ └── orbit.mk ├── orc │ ├── Config.in │ ├── orc.hash │ └── orc.mk ├── ortp │ ├── Config.in │ ├── ortp.hash │ └── ortp.mk ├── owfs │ ├── Config.in │ ├── S55owserver │ ├── S60owfs │ ├── owfs.hash │ └── owfs.mk ├── owl-linux │ ├── 0001-fix-for-linux-3.3.x.patch │ ├── Config.in │ ├── owl-linux.hash │ └── owl-linux.mk ├── p11-kit │ ├── Config.in │ ├── p11-kit.hash │ └── p11-kit.mk ├── p7zip │ ├── Config.in │ ├── p7zip.hash │ └── p7zip.mk ├── p910nd │ ├── Config.in │ ├── p910nd.hash │ └── p910nd.mk ├── paho-mqtt-c │ ├── Config.in │ ├── paho-mqtt-c.hash │ └── paho-mqtt-c.mk ├── paho-mqtt-cpp │ ├── Config.in │ ├── paho-mqtt-cpp.hash │ └── paho-mqtt-cpp.mk ├── pamtester │ ├── Config.in │ ├── pamtester.hash │ └── pamtester.mk ├── pango │ ├── Config.in │ ├── pango.hash │ └── pango.mk ├── pangomm │ ├── Config.in │ ├── pangomm.hash │ └── pangomm.mk ├── parted │ ├── Config.in │ ├── Config.in.host │ ├── parted.hash │ └── parted.mk ├── patch │ ├── 0001-Fix-segfault-with-mangled-rename-patch.patch │ ├── 0002-Allow-input-files-to-be-missing-for-ed-style-patches.patch │ ├── 0003-Fix-arbitrary-command-execution-in-ed-style-patches-.patch │ ├── 0004-Invoke-ed-directly-instead-of-using-the-shell.patch │ ├── 0005-Don-t-follow-symlinks-unless--follow-symlinks-is-given.patch │ ├── Config.in │ ├── patch.hash │ └── patch.mk ├── patchelf │ ├── 0001-Remove-apparently-incorrect-usage-of-static.patch │ ├── 0002-Extract-a-function-for-splitting-a-colon-separated-s.patch │ ├── 0003-Add-option-to-make-the-rpath-relative-under-a-specif.patch │ ├── 0004-patchelf-Check-ELF-endianness-before-writing-new-run.patch │ ├── Config.in.host │ ├── patchelf.hash │ └── patchelf.mk ├── pax-utils │ ├── Config.in │ ├── pax-utils.hash │ └── pax-utils.mk ├── paxtest │ ├── 0001-genpaxtest-move-log-location.patch │ ├── 0002-paxtest-page-alignment-ARM-and-NIOS2-arch.patch │ ├── Config.in │ ├── paxtest.hash │ └── paxtest.mk ├── pciutils │ ├── Config.in │ ├── pciutils.hash │ └── pciutils.mk ├── pcm-tools │ ├── 0001-Look-for-pcm-core-at-the-default-path.patch │ ├── Config.in │ ├── pcm-tools.hash │ └── pcm-tools.mk ├── pcmanfm │ ├── Config.in │ ├── pcmanfm.hash │ └── pcmanfm.mk ├── pcre │ ├── 0001-Kill-compatibility-bits.patch │ ├── 0002-Disable-C-unit-tests.patch │ ├── Config.in │ ├── pcre.hash │ └── pcre.mk ├── pcre2 │ ├── Config.in │ ├── pcre2.hash │ └── pcre2.mk ├── pcsc-lite │ ├── Config.in │ ├── pcsc-lite.hash │ └── pcsc-lite.mk ├── pdbg │ ├── Config.in │ ├── pdbg.hash │ └── pdbg.mk ├── pdmenu │ ├── 0001-autoconf-makeinfo.in-link-with-INTLLIBS-if-needed.patch │ ├── 0002-Makefile-autoconf-makeinfo.in-support-build-install-.patch │ ├── Config.in │ ├── pdmenu.hash │ └── pdmenu.mk ├── perl-apache-logformat-compiler │ ├── Config.in │ ├── perl-apache-logformat-compiler.hash │ └── perl-apache-logformat-compiler.mk ├── perl-appconfig │ ├── Config.in │ ├── perl-appconfig.hash │ └── perl-appconfig.mk ├── perl-astro-suntime │ ├── Config.in │ ├── perl-astro-suntime.hash │ └── perl-astro-suntime.mk ├── perl-class-inspector │ ├── Config.in │ ├── perl-class-inspector.hash │ └── perl-class-inspector.mk ├── perl-class-load │ ├── Config.in │ ├── perl-class-load.hash │ └── perl-class-load.mk ├── perl-class-method-modifiers │ ├── Config.in │ ├── perl-class-method-modifiers.hash │ └── perl-class-method-modifiers.mk ├── perl-class-std-fast │ ├── Config.in │ ├── perl-class-std-fast.hash │ └── perl-class-std-fast.mk ├── perl-class-std │ ├── Config.in │ ├── perl-class-std.hash │ └── perl-class-std.mk ├── perl-convert-asn1 │ ├── Config.in │ ├── perl-convert-asn1.hash │ └── perl-convert-asn1.mk ├── perl-cookie-baker │ ├── Config.in │ ├── perl-cookie-baker.hash │ └── perl-cookie-baker.mk ├── perl-crypt-blowfish │ ├── Config.in │ ├── perl-crypt-blowfish.hash │ └── perl-crypt-blowfish.mk ├── perl-crypt-cbc │ ├── Config.in │ ├── perl-crypt-cbc.hash │ └── perl-crypt-cbc.mk ├── perl-crypt-openssl-aes │ ├── Config.in │ ├── perl-crypt-openssl-aes.hash │ └── perl-crypt-openssl-aes.mk ├── perl-crypt-openssl-guess │ ├── perl-crypt-openssl-guess.hash │ └── perl-crypt-openssl-guess.mk ├── perl-crypt-openssl-random │ ├── Config.in │ ├── perl-crypt-openssl-random.hash │ └── perl-crypt-openssl-random.mk ├── perl-crypt-openssl-rsa │ ├── Config.in │ ├── perl-crypt-openssl-rsa.hash │ └── perl-crypt-openssl-rsa.mk ├── perl-data-dump │ ├── Config.in │ ├── perl-data-dump.hash │ └── perl-data-dump.mk ├── perl-data-optlist │ ├── Config.in │ ├── perl-data-optlist.hash │ └── perl-data-optlist.mk ├── perl-data-uuid │ ├── Config.in │ ├── perl-data-uuid.hash │ └── perl-data-uuid.mk ├── perl-date-manip │ ├── Config.in │ ├── perl-date-manip.hash │ └── perl-date-manip.mk ├── perl-datetime-tiny │ ├── Config.in │ ├── perl-datetime-tiny.hash │ └── perl-datetime-tiny.mk ├── perl-dbd-mysql │ ├── Config.in │ ├── perl-dbd-mysql.hash │ └── perl-dbd-mysql.mk ├── perl-dbi │ ├── Config.in │ ├── perl-dbi.hash │ └── perl-dbi.mk ├── perl-devel-globaldestruction │ ├── Config.in │ ├── perl-devel-globaldestruction.hash │ └── perl-devel-globaldestruction.mk ├── perl-devel-stacktrace-ashtml │ ├── Config.in │ ├── perl-devel-stacktrace-ashtml.hash │ └── perl-devel-stacktrace-ashtml.mk ├── perl-devel-stacktrace │ ├── Config.in │ ├── perl-devel-stacktrace.hash │ └── perl-devel-stacktrace.mk ├── perl-device-serialport │ ├── Config.in │ ├── perl-device-serialport.hash │ └── perl-device-serialport.mk ├── perl-digest-hmac │ ├── Config.in │ ├── perl-digest-hmac.hash │ └── perl-digest-hmac.mk ├── perl-digest-sha1 │ ├── Config.in │ ├── perl-digest-sha1.hash │ └── perl-digest-sha1.mk ├── perl-dist-checkconflicts │ ├── Config.in │ ├── perl-dist-checkconflicts.hash │ └── perl-dist-checkconflicts.mk ├── perl-encode-detect │ ├── Config.in │ ├── perl-encode-detect.hash │ └── perl-encode-detect.mk ├── perl-encode-locale │ ├── Config.in │ ├── perl-encode-locale.hash │ └── perl-encode-locale.mk ├── perl-exporter-tiny │ ├── Config.in │ ├── perl-exporter-tiny.hash │ └── perl-exporter-tiny.mk ├── perl-extutils-config │ ├── perl-extutils-config.hash │ └── perl-extutils-config.mk ├── perl-extutils-helpers │ ├── perl-extutils-helpers.hash │ └── perl-extutils-helpers.mk ├── perl-extutils-installpaths │ ├── perl-extutils-installpaths.hash │ └── perl-extutils-installpaths.mk ├── perl-file-listing │ ├── Config.in │ ├── perl-file-listing.hash │ └── perl-file-listing.mk ├── perl-file-sharedir-install │ ├── perl-file-sharedir-install.hash │ └── perl-file-sharedir-install.mk ├── perl-file-sharedir │ ├── Config.in │ ├── perl-file-sharedir.hash │ └── perl-file-sharedir.mk ├── perl-file-slurp │ ├── Config.in │ ├── perl-file-slurp.hash │ └── perl-file-slurp.mk ├── perl-file-util │ ├── Config.in │ ├── perl-file-util.hash │ └── perl-file-util.mk ├── perl-filesys-notify-simple │ ├── Config.in │ ├── perl-filesys-notify-simple.hash │ └── perl-filesys-notify-simple.mk ├── perl-gd │ ├── Config.in │ ├── perl-gd.hash │ └── perl-gd.mk ├── perl-gdgraph │ ├── Config.in │ ├── perl-gdgraph.hash │ └── perl-gdgraph.mk ├── perl-gdtextutil │ ├── Config.in │ ├── perl-gdtextutil.hash │ └── perl-gdtextutil.mk ├── perl-hash-multivalue │ ├── Config.in │ ├── perl-hash-multivalue.hash │ └── perl-hash-multivalue.mk ├── perl-html-parser │ ├── Config.in │ ├── perl-html-parser.hash │ └── perl-html-parser.mk ├── perl-html-tagset │ ├── Config.in │ ├── perl-html-tagset.hash │ └── perl-html-tagset.mk ├── perl-http-cookies │ ├── Config.in │ ├── perl-http-cookies.hash │ └── perl-http-cookies.mk ├── perl-http-daemon │ ├── Config.in │ ├── perl-http-daemon.hash │ └── perl-http-daemon.mk ├── perl-http-date │ ├── Config.in │ ├── perl-http-date.hash │ └── perl-http-date.mk ├── perl-http-entity-parser │ ├── Config.in │ ├── perl-http-entity-parser.hash │ └── perl-http-entity-parser.mk ├── perl-http-headers-fast │ ├── Config.in │ ├── perl-http-headers-fast.hash │ └── perl-http-headers-fast.mk ├── perl-http-message │ ├── Config.in │ ├── perl-http-message.hash │ └── perl-http-message.mk ├── perl-http-multipartparser │ ├── Config.in │ ├── perl-http-multipartparser.hash │ └── perl-http-multipartparser.mk ├── perl-http-negotiate │ ├── Config.in │ ├── perl-http-negotiate.hash │ └── perl-http-negotiate.mk ├── perl-io-html │ ├── Config.in │ ├── perl-io-html.hash │ └── perl-io-html.mk ├── perl-io-interface │ ├── Config.in │ ├── perl-io-interface.hash │ └── perl-io-interface.mk ├── perl-io-socket-multicast │ ├── Config.in │ ├── perl-io-socket-multicast.hash │ └── perl-io-socket-multicast.mk ├── perl-io-socket-ssl │ ├── Config.in │ ├── perl-io-socket-ssl.hash │ └── perl-io-socket-ssl.mk ├── perl-json-maybexs │ ├── Config.in │ ├── perl-json-maybexs.hash │ └── perl-json-maybexs.mk ├── perl-json-tiny │ ├── Config.in │ ├── perl-json-tiny.hash │ └── perl-json-tiny.mk ├── perl-libwww-perl │ ├── Config.in │ ├── perl-libwww-perl.hash │ └── perl-libwww-perl.mk ├── perl-lwp-mediatypes │ ├── Config.in │ ├── perl-lwp-mediatypes.hash │ └── perl-lwp-mediatypes.mk ├── perl-mail-dkim │ ├── Config.in │ ├── perl-mail-dkim.hash │ └── perl-mail-dkim.mk ├── perl-mailtools │ ├── Config.in │ ├── perl-mailtools.hash │ └── perl-mailtools.mk ├── perl-math-prime-util │ ├── Config.in │ ├── perl-math-prime-util.hash │ └── perl-math-prime-util.mk ├── perl-mime-base64-urlsafe │ ├── Config.in │ ├── perl-mime-base64-urlsafe.hash │ └── perl-mime-base64-urlsafe.mk ├── perl-mime-tools │ ├── Config.in │ ├── perl-mime-tools.hash │ └── perl-mime-tools.mk ├── perl-module-build-tiny │ ├── perl-module-build-tiny.hash │ └── perl-module-build-tiny.mk ├── perl-module-build │ ├── perl-module-build.hash │ └── perl-module-build.mk ├── perl-module-implementation │ ├── Config.in │ ├── perl-module-implementation.hash │ └── perl-module-implementation.mk ├── perl-module-runtime │ ├── Config.in │ ├── perl-module-runtime.hash │ └── perl-module-runtime.mk ├── perl-mojolicious-plugin-authentication │ ├── Config.in │ ├── perl-mojolicious-plugin-authentication.hash │ └── perl-mojolicious-plugin-authentication.mk ├── perl-mojolicious │ ├── Config.in │ ├── perl-mojolicious.hash │ └── perl-mojolicious.mk ├── perl-moo │ ├── Config.in │ ├── perl-moo.hash │ └── perl-moo.mk ├── perl-net-dns │ ├── Config.in │ ├── perl-net-dns.hash │ └── perl-net-dns.mk ├── perl-net-http │ ├── Config.in │ ├── perl-net-http.hash │ └── perl-net-http.mk ├── perl-net-snmp │ ├── Config.in │ ├── perl-net-snmp.hash │ └── perl-net-snmp.mk ├── perl-net-ssh2 │ ├── Config.in │ ├── perl-net-ssh2.hash │ └── perl-net-ssh2.mk ├── perl-net-ssleay │ ├── 0001-fix-build-system.patch │ ├── Config.in │ ├── perl-net-ssleay.hash │ └── perl-net-ssleay.mk ├── perl-net-telnet │ ├── Config.in │ ├── perl-net-telnet.hash │ └── perl-net-telnet.mk ├── perl-netaddr-ip │ ├── Config.in │ ├── perl-netaddr-ip.hash │ └── perl-netaddr-ip.mk ├── perl-number-bytes-human │ ├── Config.in │ ├── perl-number-bytes-human.hash │ └── perl-number-bytes-human.mk ├── perl-package-stash │ ├── Config.in │ ├── perl-package-stash.hash │ └── perl-package-stash.mk ├── perl-params-util │ ├── Config.in │ ├── perl-params-util.hash │ └── perl-params-util.mk ├── perl-path-tiny │ ├── Config.in │ ├── perl-path-tiny.hash │ └── perl-path-tiny.mk ├── perl-plack │ ├── Config.in │ ├── perl-plack.hash │ └── perl-plack.mk ├── perl-posix-strftime-compiler │ ├── Config.in │ ├── perl-posix-strftime-compiler.hash │ └── perl-posix-strftime-compiler.mk ├── perl-role-tiny │ ├── Config.in │ ├── perl-role-tiny.hash │ └── perl-role-tiny.mk ├── perl-stream-buffered │ ├── Config.in │ ├── perl-stream-buffered.hash │ └── perl-stream-buffered.mk ├── perl-sub-exporter-progressive │ ├── Config.in │ ├── perl-sub-exporter-progressive.hash │ └── perl-sub-exporter-progressive.mk ├── perl-sub-install │ ├── Config.in │ ├── perl-sub-install.hash │ └── perl-sub-install.mk ├── perl-sub-quote │ ├── Config.in │ ├── perl-sub-quote.hash │ └── perl-sub-quote.mk ├── perl-sys-cpu │ ├── 0001-remove-extraneous-include.patch │ ├── Config.in │ ├── perl-sys-cpu.hash │ └── perl-sys-cpu.mk ├── perl-sys-meminfo │ ├── Config.in │ ├── perl-sys-meminfo.hash │ └── perl-sys-meminfo.mk ├── perl-sys-mmap │ ├── Config.in │ ├── perl-sys-mmap.hash │ └── perl-sys-mmap.mk ├── perl-time-parsedate │ ├── Config.in │ ├── perl-time-parsedate.hash │ └── perl-time-parsedate.mk ├── perl-timedate │ ├── Config.in │ ├── perl-timedate.hash │ └── perl-timedate.mk ├── perl-try-tiny │ ├── Config.in │ ├── perl-try-tiny.hash │ └── perl-try-tiny.mk ├── perl-type-tiny │ ├── Config.in │ ├── perl-type-tiny.hash │ └── perl-type-tiny.mk ├── perl-uri │ ├── Config.in │ ├── perl-uri.hash │ └── perl-uri.mk ├── perl-www-form-urlencoded │ ├── Config.in │ ├── perl-www-form-urlencoded.hash │ └── perl-www-form-urlencoded.mk ├── perl-www-robotrules │ ├── Config.in │ ├── perl-www-robotrules.hash │ └── perl-www-robotrules.mk ├── perl-x10 │ ├── Config.in │ ├── perl-x10.hash │ └── perl-x10.mk ├── perl-xml-libxml │ ├── 0001-Makefile-PL.patch │ ├── Config.in │ ├── perl-xml-libxml.hash │ └── perl-xml-libxml.mk ├── perl-xml-namespacesupport │ ├── Config.in │ ├── perl-xml-namespacesupport.hash │ └── perl-xml-namespacesupport.mk ├── perl-xml-sax-base │ ├── Config.in │ ├── perl-xml-sax-base.hash │ └── perl-xml-sax-base.mk ├── perl-xml-sax │ ├── Config.in │ ├── perl-xml-sax.hash │ └── perl-xml-sax.mk ├── perl │ ├── 0001-fix-the-generated-subdirectory-Makefiles.patch │ ├── Config.in │ ├── perl.hash │ └── perl.mk ├── petitboot │ ├── 63-md-raid-arrays.rules │ ├── 65-md-incremental.rules │ ├── 66-add-sg-module.rules │ ├── Config.in │ ├── S14silence-console │ ├── S15pb-discover │ ├── fs-overlay │ │ ├── etc │ │ │ ├── inittab │ │ │ ├── locale │ │ │ ├── profile.d │ │ │ │ └── ps3.sh │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 61-ps3disk.rules │ │ └── usr │ │ │ └── sbin │ │ │ └── kexec │ ├── kexec-restart │ ├── petitboot-console-ui.rules │ ├── petitboot.hash │ ├── petitboot.mk │ ├── removable-event-poll.rules │ ├── shell_config │ └── shell_profile ├── phidgetwebservice │ ├── Config.in │ ├── phidgetwebservice.hash │ └── phidgetwebservice.mk ├── php-amqp │ ├── Config.in │ ├── php-amqp.hash │ └── php-amqp.mk ├── php-geoip │ ├── Config.in │ ├── php-geoip.hash │ └── php-geoip.mk ├── php-gnupg │ ├── Config.in │ ├── php-gnupg.hash │ └── php-gnupg.mk ├── php-imagick │ ├── Config.in │ ├── php-imagick.hash │ └── php-imagick.mk ├── php-memcached │ ├── Config.in │ ├── php-memcached.hash │ └── php-memcached.mk ├── php-ssh2 │ ├── 0001-fix-php_url-fields-usage-for-PHP-7-3.patch │ ├── 0002-dstogov-Fixed-PHP7-port-Restored-commented-reference-counting.patch │ ├── Config.in │ ├── php-ssh2.hash │ └── php-ssh2.mk ├── php-yaml │ ├── Config.in │ ├── php-yaml.hash │ └── php-yaml.mk ├── php-zmq │ ├── 0001-PHP-7.3-compatibility-and-bugfixes.patch │ ├── Config.in │ ├── php-zmq.hash │ └── php-zmq.mk ├── php │ ├── 0001-acinclude.m4-don-t-unset-variables.patch │ ├── 0002-iconv-tweak-iconv-detection.patch │ ├── 0003-configure-disable-the-phar-tool.patch │ ├── 0004-Call-apxs-with-correct-prefix.patch │ ├── 0005-Check-for-sys-auxv.h-before-using-it.patch │ ├── Config.ext │ ├── Config.in │ ├── php-fpm.conf │ ├── php.hash │ └── php.mk ├── physfs │ ├── Config.in │ ├── physfs.hash │ └── physfs.mk ├── phytool │ ├── Config.in │ ├── phytool.hash │ └── phytool.mk ├── picocom │ ├── 0001-Compile-with-libc-s-without-cispeed-cospeed.patch │ ├── Config.in │ ├── picocom.hash │ └── picocom.mk ├── pifmrds │ ├── 0001-Makefile-cross-compile-friendly.patch │ ├── 0002-Makefile-use-LDFLAGS.patch │ ├── 0003-Makefile-fix-static-link.patch │ ├── Config.in │ ├── pifmrds.hash │ └── pifmrds.mk ├── piglit │ ├── 0001-tests-fix-test-build-requiring-gles3.patch │ ├── Config.in │ ├── piglit.hash │ └── piglit.mk ├── pigpio │ ├── Config.in │ ├── pigpio.hash │ └── pigpio.mk ├── pigz │ ├── Config.in │ ├── pigz.hash │ └── pigz.mk ├── pimd │ ├── Config.in │ ├── pimd.hash │ └── pimd.mk ├── pinentry │ ├── Config.in │ ├── pinentry.hash │ └── pinentry.mk ├── pipewire │ ├── Config.in │ ├── pipewire.hash │ └── pipewire.mk ├── pixiewps │ ├── Config.in │ ├── pixiewps.hash │ └── pixiewps.mk ├── pixman │ ├── 0001-Disable-tests.patch │ ├── Config.in │ ├── pixman.hash │ └── pixman.mk ├── pixz │ ├── Config.in │ ├── pixz.hash │ └── pixz.mk ├── pkg-autotools.mk ├── pkg-cmake.mk ├── pkg-download.mk ├── pkg-generic.mk ├── pkg-golang.mk ├── pkg-kconfig.mk ├── pkg-kernel-module.mk ├── pkg-luarocks.mk ├── pkg-meson.mk ├── pkg-perl.mk ├── pkg-python.mk ├── pkg-rebar.mk ├── pkg-utils.mk ├── pkg-virtual.mk ├── pkg-waf.mk ├── pkgconf │ ├── 0001-Only-prefix-with-the-sysroot-a-subset-of-variables.patch │ ├── 0002-Revert-main-assume-modversion-insted-of-version-if-o.patch │ ├── Config.in │ ├── Config.in.host │ ├── pkg-config.in │ ├── pkgconf.hash │ └── pkgconf.mk ├── pngquant │ ├── Config.in │ ├── pngquant.hash │ └── pngquant.mk ├── poco │ ├── 0001-poco-add-the-staging-path-to-search-path.patch │ ├── 0002-Add-support-for-m68000-1856.patch │ ├── 0003-Foundation-src-utils.h-backport-double-conversion-ch.patch │ ├── Config.in │ ├── poco.hash │ └── poco.mk ├── policycoreutils │ ├── 0001-Add-DESTDIR-to-all-paths-that-use-an-absolute-path.patch │ ├── 0002-Add-PREFIX-to-host-paths.patch │ ├── Config.in │ ├── policycoreutils.hash │ └── policycoreutils.mk ├── polkit │ ├── 0001-make-netgroup-support-optional.patch │ ├── Config.in │ ├── polkit.hash │ └── polkit.mk ├── poppler │ ├── Config.in │ ├── poppler.hash │ └── poppler.mk ├── popt │ ├── 0001-no-wchar.patch │ ├── 0002-fix-autoreconf.patch │ ├── 0003-glob-detection.patch │ ├── 0004-add-libiconv-to-popt.pc.patch │ ├── Config.in │ ├── popt.hash │ └── popt.mk ├── portaudio │ ├── Config.in │ ├── portaudio.hash │ └── portaudio.mk ├── postgresql │ ├── Config.in │ ├── S50postgresql │ ├── pg_config │ ├── postgresql.hash │ ├── postgresql.mk │ └── postgresql.service ├── pound │ ├── 0001-fix-openssl-1.0.2.patch │ ├── 0002-fix-openssl-1.1.0.patch │ ├── 0003-Support-for-libressl-coexisting-with-openssl-1.1.x.patch │ ├── Config.in │ ├── pound.hash │ └── pound.mk ├── powerpc-utils │ ├── Config.in │ ├── powerpc-utils.hash │ └── powerpc-utils.mk ├── powertop │ ├── 0001-dont-force-stack-smashing-protection.patch │ ├── Config.in │ ├── powertop.hash │ └── powertop.mk ├── powervr │ ├── Config.in │ └── powervr.mk ├── pppd │ ├── 0001-pppd-Fix-bounds-check.patch │ ├── Config.in │ ├── pppd.hash │ └── pppd.mk ├── pps-tools │ ├── Config.in │ ├── pps-tools.hash │ └── pps-tools.mk ├── pptp-linux │ ├── 0001-susv3-legacy.patch │ ├── 0002-fix-parallel-build.patch │ ├── Config.in │ ├── pptp-linux.hash │ └── pptp-linux.mk ├── prboom │ ├── 0001-libpng-1.4.patch │ ├── 0002-configure-remove-predefined-O2-optimization-flag.patch │ ├── Config.in │ ├── prboom.hash │ └── prboom.mk ├── privoxy │ ├── Config.in │ ├── privoxy.hash │ └── privoxy.mk ├── procps-ng │ ├── Config.in │ ├── S02sysctl │ ├── procps-ng.hash │ └── procps-ng.mk ├── procrank_linux │ ├── Config.in │ ├── procrank_linux.hash │ └── procrank_linux.mk ├── proftpd │ ├── Config.in │ ├── S50proftpd │ ├── proftpd.hash │ ├── proftpd.mk │ └── proftpd.service ├── proj │ ├── Config.in │ ├── proj.hash │ └── proj.mk ├── prosody │ ├── 0001-enable-syslog.patch │ ├── 0002-add-pidfile.patch │ ├── Config.in │ ├── S50prosody │ ├── prosody.hash │ └── prosody.mk ├── protobuf-c │ ├── Config.in │ ├── protobuf-c.hash │ └── protobuf-c.mk ├── protobuf │ ├── Config.in │ ├── protobuf.hash │ └── protobuf.mk ├── proxychains-ng │ ├── Config.in │ ├── proxychains-ng.hash │ └── proxychains-ng.mk ├── pru-software-support │ ├── Config.in │ ├── Config.in.host │ ├── pru-software-support.hash │ ├── pru-software-support.mk │ └── readme.txt ├── ps3-utils │ ├── Config.in │ └── ps3-utils.mk ├── psmisc │ ├── Config.in │ ├── psmisc.hash │ └── psmisc.mk ├── psplash │ ├── Config.in │ ├── psplash-quit.service │ ├── psplash-start.service │ ├── psplash.hash │ └── psplash.mk ├── ptm2human │ ├── Config.in │ ├── ptm2human.hash │ └── ptm2human.mk ├── ptpd │ ├── Config.in │ ├── S65ptpd │ ├── ptpd.hash │ ├── ptpd.mk │ └── ptpd.service ├── ptpd2 │ ├── 0001-musl.patch │ ├── 0002-ntp_isc_md5-rename-EVP_MD_CTX-into-PTPD_EVP_MD_CTX.patch │ ├── 0003-Solve-issue-25-Removing-type-U64-from-net-snmp-relat.patch │ ├── Config.in │ ├── S65ptpd2 │ ├── ptpd2.hash │ ├── ptpd2.mk │ └── ptpd2.service ├── pugixml │ ├── Config.in │ ├── pugixml.hash │ └── pugixml.mk ├── pulseaudio │ ├── Config.in │ ├── S50pulseaudio │ ├── pulseaudio.hash │ ├── pulseaudio.mk │ └── pulseaudio.service ├── pulseview │ ├── 0001-mainbar-fix-build-without-libsigrokdecode.patch │ ├── Config.in │ ├── pulseview.hash │ └── pulseview.mk ├── pure-ftpd │ ├── 0001-listdir-reuse-a-single-buffer-to-store-every-file-name-to-display.patch │ ├── 0002-pure_strcmp-len-s2-can-be-len-s1.patch │ ├── 0003-diraliases-always-set-the-tail-of-the-list-to-NULL.patch │ ├── Config.in │ ├── pure-ftpd.hash │ └── pure-ftpd.mk ├── putty │ ├── Config.in │ ├── putty.hash │ └── putty.mk ├── pv │ ├── 0001-configure.in-tighten-AIX-test.patch │ ├── Config.in │ ├── pv.hash │ └── pv.mk ├── pwgen │ ├── Config.in │ ├── Config.in.host │ ├── pwgen.hash │ └── pwgen.mk ├── python-aenum │ ├── Config.in │ ├── python-aenum.hash │ └── python-aenum.mk ├── python-aioblescan │ ├── Config.in │ ├── python-aioblescan.hash │ └── python-aioblescan.mk ├── python-aiocoap │ ├── Config.in │ ├── python-aiocoap.hash │ └── python-aiocoap.mk ├── python-aioconsole │ ├── Config.in │ ├── python-aioconsole.hash │ └── python-aioconsole.mk ├── python-aiodns │ ├── Config.in │ ├── python-aiodns.hash │ └── python-aiodns.mk ├── python-aiohttp-cors │ ├── Config.in │ ├── python-aiohttp-cors.hash │ └── python-aiohttp-cors.mk ├── python-aiohttp-debugtoolbar │ ├── Config.in │ ├── python-aiohttp-debugtoolbar.hash │ └── python-aiohttp-debugtoolbar.mk ├── python-aiohttp-jinja2 │ ├── Config.in │ ├── python-aiohttp-jinja2.hash │ └── python-aiohttp-jinja2.mk ├── python-aiohttp-mako │ ├── Config.in │ ├── python-aiohttp-mako.hash │ └── python-aiohttp-mako.mk ├── python-aiohttp-remotes │ ├── Config.in │ ├── python-aiohttp-remotes.hash │ └── python-aiohttp-remotes.mk ├── python-aiohttp-security │ ├── Config.in │ ├── python-aiohttp-security.hash │ └── python-aiohttp-security.mk ├── python-aiohttp-session │ ├── Config.in │ ├── python-aiohttp-session.hash │ └── python-aiohttp-session.mk ├── python-aiohttp-sse │ ├── Config.in │ ├── python-aiohttp-sse.hash │ └── python-aiohttp-sse.mk ├── python-aiohttp │ ├── Config.in │ ├── python-aiohttp.hash │ └── python-aiohttp.mk ├── python-aiojobs │ ├── Config.in │ ├── python-aiojobs.hash │ └── python-aiojobs.mk ├── python-aiologstash │ ├── Config.in │ ├── python-aiologstash.hash │ └── python-aiologstash.mk ├── python-aiomonitor │ ├── Config.in │ ├── python-aiomonitor.hash │ └── python-aiomonitor.mk ├── python-aioredis │ ├── Config.in │ ├── python-aioredis.hash │ └── python-aioredis.mk ├── python-aiorwlock │ ├── Config.in │ ├── python-aiorwlock.hash │ └── python-aiorwlock.mk ├── python-aiosignal │ ├── Config.in │ ├── python-aiosignal.hash │ └── python-aiosignal.mk ├── python-aiozipkin │ ├── Config.in │ ├── python-aiozipkin.hash │ └── python-aiozipkin.mk ├── python-alsaaudio │ ├── Config.in │ ├── python-alsaaudio.hash │ └── python-alsaaudio.mk ├── python-argh │ ├── Config.in │ ├── python-argh.hash │ └── python-argh.mk ├── python-arrow │ ├── Config.in │ ├── python-arrow.hash │ └── python-arrow.mk ├── python-asgiref │ ├── Config.in │ ├── python-asgiref.hash │ └── python-asgiref.mk ├── python-asn1crypto │ ├── Config.in │ ├── python-asn1crypto.hash │ └── python-asn1crypto.mk ├── python-async-lru │ ├── Config.in │ ├── python-async-lru.hash │ └── python-async-lru.mk ├── python-async-timeout │ ├── Config.in │ ├── python-async-timeout.hash │ └── python-async-timeout.mk ├── python-attrs │ ├── Config.in │ ├── python-attrs.hash │ └── python-attrs.mk ├── python-autobahn │ ├── Config.in │ ├── python-autobahn.hash │ └── python-autobahn.mk ├── python-automat │ ├── Config.in │ ├── python-automat.hash │ └── python-automat.mk ├── python-avro │ ├── Config.in │ ├── python-avro.hash │ └── python-avro.mk ├── python-babel │ ├── Config.in │ ├── python-babel.hash │ └── python-babel.mk ├── python-backcall │ ├── Config.in │ ├── python-backcall.hash │ └── python-backcall.mk ├── python-backports-abc │ ├── Config.in │ ├── python-backports-abc.hash │ └── python-backports-abc.mk ├── python-backports-functools-lru-cache │ ├── Config.in │ ├── python-backports-functools-lru-cache.hash │ └── python-backports-functools-lru-cache.mk ├── python-backports-shutil-get-terminal-size │ ├── Config.in │ ├── python-backports-shutil-get-terminal-size.hash │ └── python-backports-shutil-get-terminal-size.mk ├── python-backports-ssl-match-hostname │ ├── Config.in │ ├── python-backports-ssl-match-hostname.hash │ └── python-backports-ssl-match-hostname.mk ├── python-bcrypt │ ├── Config.in │ ├── python-bcrypt.hash │ └── python-bcrypt.mk ├── python-beautifulsoup4 │ ├── Config.in │ ├── python-beautifulsoup4.hash │ └── python-beautifulsoup4.mk ├── python-bitstring │ ├── Config.in │ ├── python-bitstring.hash │ └── python-bitstring.mk ├── python-bluezero │ ├── Config.in │ ├── python-bluezero.hash │ └── python-bluezero.mk ├── python-bottle │ ├── Config.in │ ├── python-bottle.hash │ └── python-bottle.mk ├── python-brotli │ ├── Config.in │ ├── python-brotli.hash │ └── python-brotli.mk ├── python-bunch │ ├── Config.in │ ├── python-bunch.hash │ └── python-bunch.mk ├── python-cached-property │ ├── Config.in │ ├── python-cached-property.hash │ └── python-cached-property.mk ├── python-can │ ├── Config.in │ ├── python-can.hash │ └── python-can.mk ├── python-cbor │ ├── Config.in │ ├── python-cbor.hash │ └── python-cbor.mk ├── python-cchardet │ ├── Config.in │ ├── python-cchardet.hash │ └── python-cchardet.mk ├── python-certifi │ ├── Config.in │ ├── python-certifi.hash │ └── python-certifi.mk ├── python-cffi │ ├── Config.in │ ├── python-cffi.hash │ └── python-cffi.mk ├── python-channels-redis │ ├── Config.in │ ├── python-channels-redis.hash │ └── python-channels-redis.mk ├── python-channels │ ├── Config.in │ ├── python-channels.hash │ └── python-channels.mk ├── python-characteristic │ ├── Config.in │ ├── python-characteristic.hash │ └── python-characteristic.mk ├── python-chardet │ ├── Config.in │ ├── python-chardet.hash │ └── python-chardet.mk ├── python-cheetah │ ├── Config.in │ ├── python-cheetah.hash │ └── python-cheetah.mk ├── python-cheroot │ ├── Config.in │ ├── python-cheroot.hash │ └── python-cheroot.mk ├── python-cherrypy │ ├── Config.in │ ├── python-cherrypy.hash │ └── python-cherrypy.mk ├── python-click │ ├── Config.in │ ├── python-click.hash │ └── python-click.mk ├── python-coherence │ ├── 0001-Fix-twisted-detection.patch │ ├── Config.in │ ├── python-coherence.hash │ └── python-coherence.mk ├── python-colorama │ ├── Config.in │ ├── python-colorama.hash │ └── python-colorama.mk ├── python-colorlog │ ├── Config.in │ ├── python-colorlog.hash │ └── python-colorlog.mk ├── python-configobj │ ├── Config.in │ ├── python-configobj.hash │ └── python-configobj.mk ├── python-configshell-fb │ ├── Config.in │ ├── python-configshell-fb.hash │ └── python-configshell-fb.mk ├── python-constantly │ ├── Config.in │ ├── python-constantly.hash │ └── python-constantly.mk ├── python-couchdb │ ├── Config.in │ ├── python-couchdb.hash │ └── python-couchdb.mk ├── python-crc16 │ ├── Config.in │ ├── python-crc16.hash │ └── python-crc16.mk ├── python-crcmod │ ├── Config.in │ ├── python-crcmod.hash │ └── python-crcmod.mk ├── python-crontab │ ├── Config.in │ ├── python-crontab.hash │ └── python-crontab.mk ├── python-crossbar │ ├── 0001-Avoid-intentional-syntax-error.patch │ ├── 0002-Remove-idna-requirement.patch │ ├── Config.in │ ├── python-crossbar.hash │ └── python-crossbar.mk ├── python-cryptography │ ├── Config.in │ ├── python-cryptography.hash │ └── python-cryptography.mk ├── python-cssselect │ ├── Config.in │ ├── python-cssselect.hash │ └── python-cssselect.mk ├── python-cssutils │ ├── Config.in │ ├── python-cssutils.hash │ └── python-cssutils.mk ├── python-cycler │ ├── Config.in │ ├── python-cycler.hash │ └── python-cycler.mk ├── python-cython │ ├── Config.in.host │ ├── python-cython.hash │ └── python-cython.mk ├── python-daemon │ ├── Config.in │ ├── python-daemon.hash │ └── python-daemon.mk ├── python-daemonize │ ├── Config.in │ ├── python-daemonize.hash │ └── python-daemonize.mk ├── python-daphne │ ├── 0001-remove-pytest-runner-requirement.patch │ ├── Config.in │ ├── python-daphne.hash │ └── python-daphne.mk ├── python-dataproperty │ ├── Config.in │ ├── python-dataproperty.hash │ └── python-dataproperty.mk ├── python-dateutil │ ├── Config.in │ ├── python-dateutil.hash │ └── python-dateutil.mk ├── python-decorator │ ├── Config.in │ ├── python-decorator.hash │ └── python-decorator.mk ├── python-dialog │ ├── Config.in │ ├── python-dialog.hash │ └── python-dialog.mk ├── python-dialog3 │ ├── Config.in │ ├── python-dialog3.hash │ └── python-dialog3.mk ├── python-dicttoxml │ ├── Config.in │ ├── python-dicttoxml.hash │ └── python-dicttoxml.mk ├── python-django-enumfields │ ├── Config.in │ ├── python-django-enumfields.hash │ └── python-django-enumfields.mk ├── python-django │ ├── Config.in │ ├── python-django.hash │ └── python-django.mk ├── python-dnspython │ ├── Config.in │ ├── python-dnspython.hash │ └── python-dnspython.mk ├── python-docker-pycreds │ ├── Config.in │ ├── python-docker-pycreds.hash │ └── python-docker-pycreds.mk ├── python-docker │ ├── Config.in │ ├── python-docker.hash │ └── python-docker.mk ├── python-dockerpty │ ├── Config.in │ ├── python-dockerpty.hash │ └── python-dockerpty.mk ├── python-docopt │ ├── Config.in │ ├── python-docopt.hash │ └── python-docopt.mk ├── python-docutils │ ├── 0001-Update-setup.py.patch │ ├── Config.in │ ├── python-docutils.hash │ └── python-docutils.mk ├── python-dominate │ ├── Config.in │ ├── python-dominate.hash │ └── python-dominate.mk ├── python-dpkt │ ├── Config.in │ ├── python-dpkt.hash │ └── python-dpkt.mk ├── python-ecdsa │ ├── Config.in │ ├── python-ecdsa.hash │ └── python-ecdsa.mk ├── python-engineio │ ├── Config.in │ ├── python-engineio.hash │ └── python-engineio.mk ├── python-entrypoints │ ├── Config.in │ ├── python-entrypoints.hash │ └── python-entrypoints.mk ├── python-enum │ ├── Config.in │ ├── python-enum.hash │ └── python-enum.mk ├── python-enum34 │ ├── Config.in │ ├── python-enum34.hash │ └── python-enum34.mk ├── python-esptool │ ├── Config.in │ ├── python-esptool.hash │ └── python-esptool.mk ├── python-falcon │ ├── Config.in │ ├── python-falcon.hash │ └── python-falcon.mk ├── python-fastentrypoints │ ├── Config.in.host │ ├── python-fastentrypoints.hash │ └── python-fastentrypoints.mk ├── python-fire │ ├── Config.in │ ├── python-fire.hash │ └── python-fire.mk ├── python-flask-babel │ ├── Config.in │ ├── python-flask-babel.hash │ └── python-flask-babel.mk ├── python-flask-cors │ ├── Config.in │ ├── python-flask-cors.hash │ └── python-flask-cors.mk ├── python-flask-jsonrpc │ ├── Config.in │ ├── python-flask-jsonrpc.hash │ └── python-flask-jsonrpc.mk ├── python-flask-login │ ├── Config.in │ ├── python-flask-login.hash │ └── python-flask-login.mk ├── python-flask-sqlalchemy │ ├── Config.in │ ├── python-flask-sqlalchemy.hash │ └── python-flask-sqlalchemy.mk ├── python-flask │ ├── Config.in │ ├── python-flask.hash │ └── python-flask.mk ├── python-flup │ ├── Config.in │ ├── python-flup.hash │ └── python-flup.mk ├── python-frozenlist │ ├── Config.in │ ├── python-frozenlist.hash │ └── python-frozenlist.mk ├── python-functools32 │ ├── Config.in │ ├── python-functools32.hash │ └── python-functools32.mk ├── python-future │ ├── Config.in │ ├── python-future.hash │ └── python-future.mk ├── python-futures │ ├── Config.in │ ├── python-futures.hash │ └── python-futures.mk ├── python-gitdb2 │ ├── Config.in │ ├── python-gitdb2.hash │ └── python-gitdb2.mk ├── python-gobject │ ├── 0001-add-PYTHON_INCLUDES-override.patch │ ├── Config.in │ ├── python-gobject.hash │ └── python-gobject.mk ├── python-gunicorn │ ├── Config.in │ ├── python-gunicorn.hash │ └── python-gunicorn.mk ├── python-h2 │ ├── Config.in │ ├── python-h2.hash │ └── python-h2.mk ├── python-hiredis │ ├── Config.in │ ├── python-hiredis.hash │ └── python-hiredis.mk ├── python-hpack │ ├── 0001-Convert-HISTORY.rst-from-UTF-8-format-to-ASCII.patch │ ├── Config.in │ ├── python-hpack.hash │ └── python-hpack.mk ├── python-html5lib │ ├── Config.in │ ├── python-html5lib.hash │ └── python-html5lib.mk ├── python-httplib2 │ ├── Config.in │ ├── python-httplib2.hash │ └── python-httplib2.mk ├── python-huepy │ ├── 0001-fix-import-with-python3.patch │ ├── Config.in │ ├── python-huepy.hash │ └── python-huepy.mk ├── python-humanize │ ├── Config.in │ ├── python-humanize.hash │ └── python-humanize.mk ├── python-hyperframe │ ├── Config.in │ ├── python-hyperframe.hash │ └── python-hyperframe.mk ├── python-hyperlink │ ├── Config.in │ ├── python-hyperlink.hash │ └── python-hyperlink.mk ├── python-ibmiotf │ ├── Config.in │ ├── python-ibmiotf.hash │ └── python-ibmiotf.mk ├── python-id3 │ ├── Config.in │ ├── python-id3.hash │ └── python-id3.mk ├── python-idna │ ├── Config.in │ ├── python-idna.hash │ └── python-idna.mk ├── python-ifaddr │ ├── Config.in │ ├── python-ifaddr.hash │ └── python-ifaddr.mk ├── python-incremental │ ├── Config.in │ ├── python-incremental.hash │ └── python-incremental.mk ├── python-inflection │ ├── Config.in │ ├── python-inflection.hash │ └── python-inflection.mk ├── python-influxdb │ ├── Config.in │ ├── python-influxdb.hash │ └── python-influxdb.mk ├── python-iniparse │ ├── Config.in │ ├── python-iniparse.hash │ └── python-iniparse.mk ├── python-iowait │ ├── Config.in │ ├── python-iowait.hash │ └── python-iowait.mk ├── python-ipaddr │ ├── Config.in │ ├── python-ipaddr.hash │ └── python-ipaddr.mk ├── python-ipaddress │ ├── Config.in │ ├── python-ipaddress.hash │ └── python-ipaddress.mk ├── python-iptables │ ├── Config.in │ ├── python-iptables.hash │ └── python-iptables.mk ├── python-ipy │ ├── Config.in │ ├── python-ipy.hash │ └── python-ipy.mk ├── python-ipython-genutils │ ├── Config.in │ ├── python-ipython-genutils.hash │ └── python-ipython-genutils.mk ├── python-ipython │ ├── 0001-set-correct-python-executable-path.patch │ ├── Config.in │ ├── python-ipython.hash │ └── python-ipython.mk ├── python-iso8601 │ ├── Config.in │ ├── python-iso8601.hash │ └── python-iso8601.mk ├── python-itsdangerous │ ├── Config.in │ ├── python-itsdangerous.hash │ └── python-itsdangerous.mk ├── python-janus │ ├── Config.in │ ├── python-janus.hash │ └── python-janus.mk ├── python-jaraco-classes │ ├── Config.in │ ├── python-jaraco-classes.hash │ └── python-jaraco-classes.mk ├── python-jaraco-functools │ ├── Config.in │ ├── python-jaraco-functools.hash │ └── python-jaraco-functools.mk ├── python-jedi │ ├── Config.in │ ├── python-jedi.hash │ └── python-jedi.mk ├── python-jinja2 │ ├── Config.in │ ├── python-jinja2.hash │ └── python-jinja2.mk ├── python-json-schema-validator │ ├── Config.in │ ├── python-json-schema-validator.hash │ └── python-json-schema-validator.mk ├── python-jsonmodels │ ├── Config.in │ ├── python-jsonmodels.hash │ └── python-jsonmodels.mk ├── python-jsonschema │ ├── Config.in │ ├── python-jsonschema.hash │ └── python-jsonschema.mk ├── python-keyring │ ├── Config.in │ ├── python-keyring.hash │ └── python-keyring.mk ├── python-kiwisolver │ ├── Config.in │ ├── python-kiwisolver.hash │ └── python-kiwisolver.mk ├── python-libconfig │ ├── Config.in │ ├── python-libconfig.hash │ └── python-libconfig.mk ├── python-libusb1 │ ├── Config.in │ ├── python-libusb1.hash │ └── python-libusb1.mk ├── python-lmdb │ ├── Config.in │ ├── python-lmdb.hash │ └── python-lmdb.mk ├── python-lockfile │ ├── Config.in │ ├── python-lockfile.hash │ └── python-lockfile.mk ├── python-logbook │ ├── Config.in │ ├── python-logbook.hash │ └── python-logbook.mk ├── python-logstash │ ├── Config.in │ ├── python-logstash.hash │ └── python-logstash.mk ├── python-lxml │ ├── Config.in │ ├── Config.in.host │ ├── python-lxml.hash │ └── python-lxml.mk ├── python-m2r │ ├── Config.in │ ├── python-m2r.hash │ └── python-m2r.mk ├── python-mad │ ├── Config.in │ ├── python-mad.hash │ └── python-mad.mk ├── python-mako │ ├── Config.in │ ├── python-mako.hash │ └── python-mako.mk ├── python-markdown │ ├── Config.in │ ├── python-markdown.hash │ └── python-markdown.mk ├── python-markdown2 │ ├── Config.in │ ├── python-markdown2.hash │ └── python-markdown2.mk ├── python-markupsafe │ ├── Config.in │ ├── python-markupsafe.hash │ └── python-markupsafe.mk ├── python-matplotlib │ ├── 0001-Fix-invalid-inclusion-headers.patch │ ├── Config.in │ ├── python-matplotlib.hash │ └── python-matplotlib.mk ├── python-mbstrdecoder │ ├── Config.in │ ├── python-mbstrdecoder.hash │ └── python-mbstrdecoder.mk ├── python-meld3 │ ├── Config.in │ ├── python-meld3.hash │ └── python-meld3.mk ├── python-mimeparse │ ├── Config.in │ ├── python-mimeparse.hash │ └── python-mimeparse.mk ├── python-mistune │ ├── Config.in │ ├── python-mistune.hash │ └── python-mistune.mk ├── python-more-itertools │ ├── Config.in │ ├── python-more-itertools.hash │ └── python-more-itertools.mk ├── python-msgfy │ ├── Config.in │ ├── python-msgfy.hash │ └── python-msgfy.mk ├── python-msgpack │ ├── Config.in │ ├── python-msgpack.hash │ └── python-msgpack.mk ├── python-multidict │ ├── Config.in │ ├── python-multidict.hash │ └── python-multidict.mk ├── python-mutagen │ ├── Config.in │ ├── python-mutagen.hash │ └── python-mutagen.mk ├── python-mwclient │ ├── Config.in │ ├── python-mwclient.hash │ └── python-mwclient.mk ├── python-mwscrape │ ├── Config.in │ ├── python-mwscrape.hash │ └── python-mwscrape.mk ├── python-mwscrape2slob │ ├── Config.in │ ├── python-mwscrape2slob.hash │ └── python-mwscrape2slob.mk ├── python-nested-dict │ ├── Config.in │ ├── python-nested-dict.hash │ └── python-nested-dict.mk ├── python-netaddr │ ├── Config.in │ ├── python-netaddr.hash │ └── python-netaddr.mk ├── python-netifaces │ ├── Config.in │ ├── python-netifaces.hash │ └── python-netifaces.mk ├── python-networkmanager │ ├── Config.in │ ├── python-networkmanager.hash │ └── python-networkmanager.mk ├── python-networkx │ ├── Config.in │ ├── python-networkx.hash │ └── python-networkx.mk ├── python-nfc │ ├── Config.in │ ├── python-nfc.hash │ └── python-nfc.mk ├── python-numpy │ ├── Config.in │ ├── python-numpy.hash │ └── python-numpy.mk ├── python-oauthlib │ ├── Config.in │ ├── python-oauthlib.hash │ └── python-oauthlib.mk ├── python-paho-mqtt │ ├── Config.in │ ├── python-paho-mqtt.hash │ └── python-paho-mqtt.mk ├── python-pam │ ├── 0001-dealloc.patch │ ├── 0002-nofree.patch │ ├── 0003-memory-errors-CVE2012-1502.patch │ ├── Config.in │ ├── python-pam.hash │ └── python-pam.mk ├── python-paramiko │ ├── Config.in │ ├── python-paramiko.hash │ └── python-paramiko.mk ├── python-parso │ ├── Config.in │ ├── python-parso.hash │ └── python-parso.mk ├── python-passlib │ ├── Config.in │ ├── python-passlib.hash │ └── python-passlib.mk ├── python-pathlib2 │ ├── Config.in │ ├── python-pathlib2.hash │ └── python-pathlib2.mk ├── python-pathpy │ ├── Config.in │ ├── python-pathpy.hash │ └── python-pathpy.mk ├── python-pathtools │ ├── Config.in │ ├── python-pathtools.hash │ └── python-pathtools.mk ├── python-pathvalidate │ ├── Config.in │ ├── python-pathvalidate.hash │ └── python-pathvalidate.mk ├── python-pbr │ ├── python-pbr.hash │ └── python-pbr.mk ├── python-periphery │ ├── Config.in │ ├── python-periphery.hash │ └── python-periphery.mk ├── python-pexpect │ ├── Config.in │ ├── python-pexpect.hash │ └── python-pexpect.mk ├── python-pickleshare │ ├── Config.in │ ├── python-pickleshare.hash │ └── python-pickleshare.mk ├── python-pigpio │ ├── Config.in │ ├── python-pigpio.hash │ └── python-pigpio.mk ├── python-pillow │ ├── Config.in │ ├── python-pillow.hash │ └── python-pillow.mk ├── python-pip │ ├── Config.in │ ├── python-pip.hash │ └── python-pip.mk ├── python-ply │ ├── Config.in │ ├── python-ply.hash │ └── python-ply.mk ├── python-portend │ ├── Config.in │ ├── python-portend.hash │ └── python-portend.mk ├── python-posix-ipc │ ├── Config.in │ ├── python-posix-ipc.hash │ └── python-posix-ipc.mk ├── python-priority │ ├── Config.in │ ├── python-priority.hash │ └── python-priority.mk ├── python-prompt-toolkit │ ├── Config.in │ ├── python-prompt-toolkit.hash │ └── python-prompt-toolkit.mk ├── python-protobuf │ ├── Config.in │ ├── python-protobuf.hash │ └── python-protobuf.mk ├── python-psutil │ ├── Config.in │ ├── python-psutil.hash │ └── python-psutil.mk ├── python-psycopg2 │ ├── Config.in │ ├── python-psycopg2.hash │ └── python-psycopg2.mk ├── python-ptyprocess │ ├── Config.in │ ├── python-ptyprocess.hash │ └── python-ptyprocess.mk ├── python-pudb │ ├── Config.in │ ├── python-pudb.hash │ └── python-pudb.mk ├── python-py │ ├── Config.in │ ├── python-py.hash │ └── python-py.mk ├── python-pyaes │ ├── Config.in │ ├── python-pyaes.hash │ └── python-pyaes.mk ├── python-pyasn-modules │ ├── Config.in │ ├── python-pyasn-modules.hash │ └── python-pyasn-modules.mk ├── python-pyasn │ ├── Config.in │ ├── python-pyasn.hash │ └── python-pyasn.mk ├── python-pyasn1-modules │ ├── Config.in │ ├── python-pyasn1-modules.hash │ └── python-pyasn1-modules.mk ├── python-pyasn1 │ ├── Config.in │ ├── python-pyasn1.hash │ └── python-pyasn1.mk ├── python-pycairo │ ├── Config.in │ ├── python-pycairo.hash │ └── python-pycairo.mk ├── python-pycares │ ├── Config.in │ ├── python-pycares.hash │ └── python-pycares.mk ├── python-pycli │ ├── Config.in │ ├── python-pycli.hash │ └── python-pycli.mk ├── python-pycparser │ ├── Config.in │ ├── python-pycparser.hash │ └── python-pycparser.mk ├── python-pycrypto │ ├── 0001-remove-incorrect-header-path.patch │ ├── Config.in │ ├── python-pycrypto.hash │ └── python-pycrypto.mk ├── python-pycryptodomex │ ├── Config.in │ ├── python-pycryptodomex.hash │ └── python-pycryptodomex.mk ├── python-pydal │ ├── Config.in │ ├── python-pydal.hash │ └── python-pydal.mk ├── python-pydantic │ ├── Config.in │ ├── python-pydantic.hash │ └── python-pydantic.mk ├── python-pyelftools │ ├── Config.in │ ├── python-pyelftools.hash │ └── python-pyelftools.mk ├── python-pyftpdlib │ ├── Config.in │ ├── python-pyftpdlib.hash │ └── python-pyftpdlib.mk ├── python-pygame │ ├── Config.in │ ├── python-pygame.hash │ └── python-pygame.mk ├── python-pygments │ ├── Config.in │ ├── python-pygments.hash │ └── python-pygments.mk ├── python-pyhamcrest │ ├── Config.in │ ├── python-pyhamcrest.hash │ └── python-pyhamcrest.mk ├── python-pyicu │ ├── Config.in │ ├── python-pyicu.hash │ └── python-pyicu.mk ├── python-pyinotify │ ├── Config.in │ ├── python-pyinotify.hash │ └── python-pyinotify.mk ├── python-pyjwt │ ├── Config.in │ ├── python-pyjwt.hash │ └── python-pyjwt.mk ├── python-pylibftdi │ ├── 0001-do-not-use-find-library.patch │ ├── Config.in │ ├── python-pylibftdi.hash │ └── python-pylibftdi.mk ├── python-pylru │ ├── Config.in │ ├── python-pylru.hash │ └── python-pylru.mk ├── python-pymodbus │ ├── Config.in │ ├── python-pymodbus.hash │ └── python-pymodbus.mk ├── python-pymysql │ ├── Config.in │ ├── python-pymysql.hash │ └── python-pymysql.mk ├── python-pynacl │ ├── Config.in │ ├── python-pynacl.hash │ └── python-pynacl.mk ├── python-pyopenssl │ ├── Config.in │ ├── python-pyopenssl.hash │ └── python-pyopenssl.mk ├── python-pyparsing │ ├── Config.in │ ├── python-pyparsing.hash │ └── python-pyparsing.mk ├── python-pyparted │ ├── Config.in │ ├── python-pyparted.hash │ └── python-pyparted.mk ├── python-pypcap │ ├── Config.in │ ├── python-pypcap.hash │ └── python-pypcap.mk ├── python-pyqrcode │ ├── Config.in │ ├── python-pyqrcode.hash │ └── python-pyqrcode.mk ├── python-pyqt5 │ ├── 0001-configure-skip-qtdetail.patch │ ├── 0002-fix-qt-5.6.2.patch │ ├── 0003-remove-WindowOkButtonHint-and-WindowCancelButtonHint.patch │ ├── 0004-drop-qttest-qtestmouse-waitforevents.patch │ ├── Config.in │ ├── python-pyqt5.hash │ └── python-pyqt5.mk ├── python-pyratemp │ ├── Config.in │ ├── python-pyratemp.hash │ └── python-pyratemp.mk ├── python-pyrex │ ├── python-pyrex.hash │ └── python-pyrex.mk ├── python-pyro │ ├── Config.in │ ├── python-pyro.hash │ └── python-pyro.mk ├── python-pyroute2 │ ├── Config.in │ ├── python-pyroute2.hash │ └── python-pyroute2.mk ├── python-pysendfile │ ├── Config.in │ ├── python-pysendfile.hash │ └── python-pysendfile.mk ├── python-pysmb │ ├── Config.in │ ├── python-pysmb.hash │ └── python-pysmb.mk ├── python-pysmi │ ├── Config.in │ ├── python-pysmi.hash │ └── python-pysmi.mk ├── python-pysnmp-mibs │ ├── Config.in │ ├── python-pysnmp-mibs.hash │ └── python-pysnmp-mibs.mk ├── python-pysnmp │ ├── Config.in │ ├── python-pysnmp.hash │ └── python-pysnmp.mk ├── python-pysocks │ ├── Config.in │ ├── python-pysocks.hash │ └── python-pysocks.mk ├── python-pytablereader │ ├── Config.in │ ├── python-pytablereader.hash │ └── python-pytablereader.mk ├── python-pytablewriter │ ├── Config.in │ ├── python-pytablewriter.hash │ └── python-pytablewriter.mk ├── python-pytrie │ ├── Config.in │ ├── python-pytrie.hash │ └── python-pytrie.mk ├── python-pytz │ ├── Config.in │ ├── python-pytz.hash │ └── python-pytz.mk ├── python-pyudev │ ├── 0001-Workaround-finding-libudev-on-systems-without-ldconf.patch │ ├── Config.in │ ├── python-pyudev.hash │ └── python-pyudev.mk ├── python-pyusb │ ├── Config.in │ ├── python-pyusb.hash │ └── python-pyusb.mk ├── python-pyxb │ ├── Config.in │ ├── python-pyxb.hash │ └── python-pyxb.mk ├── python-pyyaml │ ├── Config.in │ ├── python-pyyaml.hash │ └── python-pyyaml.mk ├── python-pyzmq │ ├── 0001-use-buildroot-zmq-version-instead-of-detect.patch │ ├── Config.in │ ├── python-pyzmq.hash │ └── python-pyzmq.mk ├── python-raven │ ├── Config.in │ ├── python-raven.hash │ └── python-raven.mk ├── python-redis │ ├── Config.in │ ├── python-redis.hash │ └── python-redis.mk ├── python-reentry │ ├── Config.in │ ├── python-reentry.hash │ └── python-reentry.mk ├── python-remi │ ├── Config.in │ ├── python-remi.hash │ └── python-remi.mk ├── python-request-id │ ├── Config.in │ ├── python-request-id.hash │ └── python-request-id.mk ├── python-requests-oauthlib │ ├── Config.in │ ├── python-requests-oauthlib.hash │ └── python-requests-oauthlib.mk ├── python-requests-toolbelt │ ├── Config.in │ ├── python-requests-toolbelt.hash │ └── python-requests-toolbelt.mk ├── python-requests │ ├── Config.in │ ├── python-requests.hash │ └── python-requests.mk ├── python-rpi-gpio │ ├── Config.in │ ├── python-rpi-gpio.hash │ └── python-rpi-gpio.mk ├── python-rpi-ws281x │ ├── 0001-Fix-cross-compilation.patch │ ├── Config.in │ ├── python-rpi-ws281x.hash │ └── python-rpi-ws281x.mk ├── python-rtslib-fb │ ├── Config.in │ ├── python-rtslib-fb.hash │ └── python-rtslib-fb.mk ├── python-scandir │ ├── Config.in │ ├── python-scandir.hash │ └── python-scandir.mk ├── python-scapy │ ├── Config.in │ ├── python-scapy.hash │ └── python-scapy.mk ├── python-schedule │ ├── Config.in │ ├── python-schedule.hash │ └── python-schedule.mk ├── python-sdnotify │ ├── Config.in │ ├── python-sdnotify.hash │ └── python-sdnotify.mk ├── python-secretstorage │ ├── Config.in │ ├── python-secretstorage.hash │ └── python-secretstorage.mk ├── python-see │ ├── Config.in │ ├── python-see.hash │ └── python-see.mk ├── python-semver │ ├── Config.in │ ├── python-semver.hash │ └── python-semver.mk ├── python-sentry-sdk │ ├── Config.in │ ├── python-sentry-sdk.hash │ └── python-sentry-sdk.mk ├── python-serial-asyncio │ ├── Config.in │ ├── python-serial-asyncio.hash │ └── python-serial-asyncio.mk ├── python-serial │ ├── Config.in │ ├── python-serial.hash │ └── python-serial.mk ├── python-service-identity │ ├── Config.in │ ├── python-service-identity.hash │ └── python-service-identity.mk ├── python-setproctitle │ ├── Config.in │ ├── python-setproctitle.hash │ └── python-setproctitle.mk ├── python-setuptools-scm-git-archive │ ├── python-setuptools-scm-git-archive.hash │ └── python-setuptools-scm-git-archive.mk ├── python-setuptools-scm │ ├── python-setuptools-scm.hash │ └── python-setuptools-scm.mk ├── python-setuptools │ ├── 0001-add-executable.patch │ ├── Config.in │ ├── python-setuptools.hash │ └── python-setuptools.mk ├── python-sh │ ├── Config.in │ ├── python-sh.hash │ └── python-sh.mk ├── python-shutilwhich │ ├── Config.in │ ├── python-shutilwhich.hash │ └── python-shutilwhich.mk ├── python-simpleaudio │ ├── Config.in │ ├── python-simpleaudio.hash │ └── python-simpleaudio.mk ├── python-simplegeneric │ ├── Config.in │ ├── python-simplegeneric.hash │ └── python-simplegeneric.mk ├── python-simplejson │ ├── Config.in │ ├── python-simplejson.hash │ └── python-simplejson.mk ├── python-simplelogging │ ├── Config.in │ ├── python-simplelogging.hash │ └── python-simplelogging.mk ├── python-simplesqlite │ ├── Config.in │ ├── python-simplesqlite.hash │ └── python-simplesqlite.mk ├── python-singledispatch │ ├── Config.in │ ├── python-singledispatch.hash │ └── python-singledispatch.mk ├── python-sip │ ├── Config.in │ ├── python-sip.hash │ └── python-sip.mk ├── python-six │ ├── Config.in │ ├── Config.in.host │ ├── python-six.hash │ └── python-six.mk ├── python-slob │ ├── Config.in │ ├── python-slob.hash │ └── python-slob.mk ├── python-smbus-cffi │ ├── Config.in │ ├── python-smbus-cffi.hash │ └── python-smbus-cffi.mk ├── python-smmap2 │ ├── Config.in │ ├── python-smmap2.hash │ └── python-smmap2.mk ├── python-socketio │ ├── Config.in │ ├── python-socketio.hash │ └── python-socketio.mk ├── python-sockjs │ ├── Config.in │ ├── python-sockjs.hash │ └── python-sockjs.mk ├── python-sortedcontainers │ ├── Config.in │ ├── python-sortedcontainers.hash │ └── python-sortedcontainers.mk ├── python-soupsieve │ ├── Config.in │ ├── python-soupsieve.hash │ └── python-soupsieve.mk ├── python-spidev │ ├── Config.in │ ├── python-spidev.hash │ └── python-spidev.mk ├── python-sqlalchemy │ ├── Config.in │ ├── python-sqlalchemy.hash │ └── python-sqlalchemy.mk ├── python-sqliteschema │ ├── Config.in │ ├── python-sqliteschema.hash │ └── python-sqliteschema.mk ├── python-sqlparse │ ├── Config.in │ ├── python-sqlparse.hash │ └── python-sqlparse.mk ├── python-subprocess32 │ ├── Config.in │ ├── python-subprocess32.hash │ └── python-subprocess32.mk ├── python-systemd │ ├── Config.in │ ├── python-systemd.hash │ └── python-systemd.mk ├── python-tabledata │ ├── Config.in │ ├── python-tabledata.hash │ └── python-tabledata.mk ├── python-tempora │ ├── Config.in │ ├── python-tempora.hash │ └── python-tempora.mk ├── python-termcolor │ ├── Config.in │ ├── python-termcolor.hash │ └── python-termcolor.mk ├── python-terminaltables │ ├── Config.in │ ├── python-terminaltables.hash │ └── python-terminaltables.mk ├── python-texttable │ ├── Config.in │ ├── python-texttable.hash │ └── python-texttable.mk ├── python-thrift │ ├── Config.in │ ├── python-thrift.hash │ └── python-thrift.mk ├── python-tinyrpc │ ├── Config.in │ ├── python-tinyrpc.hash │ └── python-tinyrpc.mk ├── python-tomako │ ├── Config.in │ ├── python-tomako.hash │ └── python-tomako.mk ├── python-toml │ ├── Config.in │ ├── python-toml.hash │ └── python-toml.mk ├── python-tornado │ ├── Config.in │ ├── python-tornado.hash │ └── python-tornado.mk ├── python-tqdm │ ├── Config.in │ ├── python-tqdm.hash │ └── python-tqdm.mk ├── python-traitlets │ ├── Config.in │ ├── python-traitlets.hash │ └── python-traitlets.mk ├── python-treq │ ├── Config.in │ ├── python-treq.hash │ └── python-treq.mk ├── python-twisted │ ├── Config.in │ ├── python-twisted.hash │ └── python-twisted.mk ├── python-txaio │ ├── Config.in │ ├── python-txaio.hash │ └── python-txaio.mk ├── python-txdbus │ ├── Config.in │ ├── python-txdbus.hash │ └── python-txdbus.mk ├── python-txtorcon │ ├── Config.in │ ├── python-txtorcon.hash │ └── python-txtorcon.mk ├── python-typepy │ ├── Config.in │ ├── python-typepy.hash │ └── python-typepy.mk ├── python-typing │ ├── Config.in │ ├── python-typing.hash │ └── python-typing.mk ├── python-u-msgpack │ ├── Config.in │ ├── python-u-msgpack.hash │ └── python-u-msgpack.mk ├── python-ubjson │ ├── Config.in │ ├── python-ubjson.hash │ └── python-ubjson.mk ├── python-ujson │ ├── Config.in │ ├── python-ujson.hash │ └── python-ujson.mk ├── python-urllib3 │ ├── Config.in │ ├── python-urllib3.hash │ └── python-urllib3.mk ├── python-urwid │ ├── Config.in │ ├── python-urwid.hash │ └── python-urwid.mk ├── python-uvloop │ ├── Config.in │ ├── python-uvloop.hash │ └── python-uvloop.mk ├── python-validators │ ├── Config.in │ ├── python-validators.hash │ └── python-validators.mk ├── python-vcversioner │ ├── python-vcversioner.hash │ └── python-vcversioner.mk ├── python-versiontools │ ├── Config.in │ ├── python-versiontools.hash │ └── python-versiontools.mk ├── python-visitor │ ├── Config.in │ ├── python-visitor.hash │ └── python-visitor.mk ├── python-watchdog │ ├── Config.in │ ├── python-watchdog.hash │ └── python-watchdog.mk ├── python-wcwidth │ ├── Config.in │ ├── python-wcwidth.hash │ └── python-wcwidth.mk ├── python-web2py │ ├── 0001-gluon-languages.py-import-escape-from-html-instead-o.patch │ ├── Config.in │ ├── S51web2py │ ├── python-web2py.hash │ ├── python-web2py.mk │ └── web2py.service ├── python-webencodings │ ├── Config.in │ ├── python-webencodings.hash │ └── python-webencodings.mk ├── python-webob │ ├── Config.in │ ├── python-webob.hash │ └── python-webob.mk ├── python-webpy │ ├── Config.in │ ├── python-webpy.hash │ └── python-webpy.mk ├── python-websocket-client │ ├── Config.in │ ├── python-websocket-client.hash │ └── python-websocket-client.mk ├── python-websockets │ ├── Config.in │ ├── python-websockets.hash │ └── python-websockets.mk ├── python-werkzeug │ ├── Config.in │ ├── python-werkzeug.hash │ └── python-werkzeug.mk ├── python-whoosh │ ├── Config.in │ ├── python-whoosh.hash │ └── python-whoosh.mk ├── python-wrapt │ ├── Config.in │ ├── python-wrapt.hash │ └── python-wrapt.mk ├── python-ws4py │ ├── 0001-Adjust-ws4py-for-Python-3.7-syntax.patch │ ├── Config.in │ ├── python-ws4py.hash │ └── python-ws4py.mk ├── python-wsaccel │ ├── Config.in │ ├── python-wsaccel.hash │ └── python-wsaccel.mk ├── python-wtforms │ ├── Config.in │ ├── python-wtforms.hash │ └── python-wtforms.mk ├── python-xlib │ ├── Config.in │ ├── python-xlib.hash │ └── python-xlib.mk ├── python-xlrd │ ├── Config.in │ ├── Config.in.host │ ├── python-xlrd.hash │ └── python-xlrd.mk ├── python-xlsxwriter │ ├── Config.in │ ├── python-xlsxwriter.hash │ └── python-xlsxwriter.mk ├── python-xlutils │ ├── Config.in │ ├── python-xlutils.hash │ └── python-xlutils.mk ├── python-xlwt │ ├── Config.in │ ├── python-xlwt.hash │ └── python-xlwt.mk ├── python-xmltodict │ ├── Config.in │ ├── python-xmltodict.hash │ └── python-xmltodict.mk ├── python-yarl │ ├── Config.in │ ├── python-yarl.hash │ └── python-yarl.mk ├── python-yieldfrom │ ├── Config.in │ ├── python-yieldfrom.hash │ └── python-yieldfrom.mk ├── python-zc-lockfile │ ├── Config.in │ ├── python-zc-lockfile.hash │ └── python-zc-lockfile.mk ├── python-zeroconf │ ├── Config.in │ ├── python-zeroconf.hash │ └── python-zeroconf.mk ├── python-zope-interface │ ├── Config.in │ ├── python-zope-interface.hash │ └── python-zope-interface.mk ├── python │ ├── 0001-setup.py-do-not-add-invalid-header-locations.patch │ ├── 0002-Fix-get_python_inc-for-cross-compilation.patch │ ├── 0003-Change-the-install-location-of-_sysconfigdata.py.patch │ ├── 0004-Make-the-compilation-of-.pyc-and-.pyo-conditional.patch │ ├── 0005-Adjust-getaddrinfo-test-for-cross-compilation.patch │ ├── 0006-Add-minimal-infrastructure-to-be-able-to-disable-ext.patch │ ├── 0007-Adjust-library-header-paths-for-cross-compilation.patch │ ├── 0008-Don-t-look-in-usr-lib-termcap-for-libraries.patch │ ├── 0009-Fix-python-config-for-cross-builds.patch │ ├── 0010-Remove-the-python-symlink-install-rules.patch │ ├── 0011-Don-t-add-multiarch-paths.patch │ ├── 0012-Abort-on-failed-module-build.patch │ ├── 0013-sqlite3-fix-build-when-threads-are-not-used-availabl.patch │ ├── 0014-Serial-ioctl-workaround.patch │ ├── 0015-Do-not-adjust-the-shebang-of-Python-scripts-for-cros.patch │ ├── 0016-Add-an-option-to-disable-installation-of-test-module.patch │ ├── 0017-Add-an-option-to-disable-pydoc.patch │ ├── 0018-Add-an-option-to-disable-lib2to3.patch │ ├── 0019-Add-option-to-disable-the-sqlite3-module.patch │ ├── 0020-Add-an-option-to-disable-the-tk-module.patch │ ├── 0021-Add-an-option-to-disable-the-curses-module.patch │ ├── 0022-Add-an-option-to-disable-expat.patch │ ├── 0023-Add-an-option-to-disable-CJK-codecs.patch │ ├── 0024-Add-an-option-to-disable-NIS.patch │ ├── 0025-Add-an-option-to-disable-unicodedata.patch │ ├── 0026-Add-an-option-to-disable-bsddb.patch │ ├── 0027-Add-an-option-to-disable-the-ssl-module.patch │ ├── 0028-Add-an-option-to-disable-the-bz2-module.patch │ ├── 0029-Add-an-option-to-disable-the-zlib-module.patch │ ├── 0030-Do-not-install-the-idle-editor.patch │ ├── 0031-Add-an-option-to-disable-the-ossaudiodev-module.patch │ ├── 0032-Add-option-to-disable-the-hashlib-module.patch │ ├── 0033-Add-an-option-to-disable-readline-module.patch │ ├── 0034-Override-system-locale-and-set-to-default-when-addin.patch │ ├── Config.in │ ├── Config.in.host │ ├── python.hash │ └── python.mk ├── python3-mako │ ├── python3-mako.hash │ └── python3-mako.mk ├── python3-setuptools │ ├── 0001-add-executable.patch │ ├── python3-setuptools.hash │ └── python3-setuptools.mk ├── python3 │ ├── 0001-Make-the-build-of-pyc-files-conditional.patch │ ├── 0002-Disable-buggy_getaddrinfo-configure-test-when-cross-.patch │ ├── 0003-Add-infrastructure-to-disable-the-build-of-certain-e.patch │ ├── 0004-Adjust-library-header-paths-for-cross-compilation.patch │ ├── 0005-Don-t-look-in-usr-lib-termcap-for-libraries.patch │ ├── 0006-Don-t-add-multiarch-paths.patch │ ├── 0007-Abort-on-failed-module-build.patch │ ├── 0008-Serial-ioctl-workaround.patch │ ├── 0009-Do-not-adjust-the-shebang-of-Python-scripts-for-cros.patch │ ├── 0010-Misc-python-config.sh.in-ensure-sed-invocations-only.patch │ ├── 0011-Override-system-locale-and-set-to-default-when-addin.patch │ ├── 0012-Add-importlib-fix-for-PEP-3147-issue.patch │ ├── 0013-Add-an-option-to-disable-installation-of-test-module.patch │ ├── 0014-Add-an-option-to-disable-pydoc.patch │ ├── 0015-Add-an-option-to-disable-lib2to3.patch │ ├── 0016-Add-option-to-disable-the-sqlite3-module.patch │ ├── 0017-Add-an-option-to-disable-the-tk-module.patch │ ├── 0018-Add-an-option-to-disable-the-curses-module.patch │ ├── 0019-Add-an-option-to-disable-expat.patch │ ├── 0020-Add-an-option-to-disable-CJK-codecs.patch │ ├── 0021-Add-an-option-to-disable-NIS.patch │ ├── 0022-Add-an-option-to-disable-unicodedata.patch │ ├── 0023-Add-an-option-to-disable-IDLE.patch │ ├── 0024-Add-an-option-to-disable-decimal.patch │ ├── 0025-Add-an-option-to-disable-the-ossaudiodev-module.patch │ ├── 0026-Add-an-option-to-disable-openssl-support.patch │ ├── 0027-Add-an-option-to-disable-the-readline-module.patch │ ├── 0028-Add-options-to-disable-zlib-bzip2-and-xz-modules.patch │ ├── 0029-python-config.sh-don-t-reassign-prefix.patch │ ├── 0030-Fix-cross-compiling-the-uuid-module.patch │ ├── 0031-Add-an-option-to-disable-uuid-module.patch │ ├── 0032-fix-building-on-older-distributions.patch │ ├── 0033-configure.ac-fixup-CC-print-multiarch-output-for-mus.patch │ ├── Config.in │ ├── Config.in.host │ ├── python3.hash │ └── python3.mk ├── qdecoder │ ├── Config.in │ ├── qdecoder.hash │ └── qdecoder.mk ├── qemu │ ├── 4.2.0 │ │ ├── 0001-user-exec-fix-usage-of-mcontext-structure-on-ARM-uCl.patch │ │ ├── 0002-util-cacheinfo-fix-crash-when-compiling-with-uClibc.patch │ │ └── 0003-target-arm-arm-semi-fix-SYS_OPEN-to-return-nonzero-f.patch │ ├── Config.in │ ├── Config.in.host │ ├── qemu.hash │ └── qemu.mk ├── qextserialport │ ├── 0001-Create-a-main-include-file-QExtSerialPort.patch │ ├── 0002-Tell-qmake-to-add-a-pkgconfig-file-to-ease-usage-wit.patch │ ├── Config.in │ ├── qextserialport.hash │ └── qextserialport.mk ├── qhull │ ├── Config.in │ ├── qhull.hash │ └── qhull.mk ├── qjson │ ├── Config.in │ ├── qjson.hash │ └── qjson.mk ├── qlibc │ ├── Config.in │ ├── qlibc.hash │ └── qlibc.mk ├── qpdf │ ├── 0001-libtests-cxx11.cc-fix-build-with-gcc-4.8.patch │ ├── Config.in │ ├── qpdf.hash │ └── qpdf.mk ├── qpid-proton │ ├── 0001-PROTON-1381-PROTON-1326-Modify-openssl-DH-code-to-wo.patch │ ├── 0002-PROTON-1326-restore-anonymous-cyphers-by-lowering-Op.patch │ ├── 0003-PROTON-1587-fix-openssl-error-handling-causing-spuri.patch │ ├── 0004-src-ssl-openssl-add-libressl-compatibility.patch │ ├── Config.in │ ├── qpid-proton.hash │ └── qpid-proton.mk ├── qt-webkit-kiosk │ ├── Config.in │ ├── qt-webkit-kiosk.hash │ └── qt-webkit-kiosk.mk ├── qt5 │ ├── Config.in │ ├── qt5.mk │ ├── qt53d │ │ ├── Config.in │ │ ├── qt53d.hash │ │ └── qt53d.mk │ ├── qt5base │ │ ├── 0004-double-conversion-enable-for-xtensa.patch │ │ ├── 5.12.7 │ │ │ ├── 0001-qtbase-Fix-build-error-when-using-EGL.patch │ │ │ ├── 0002-double-conversion-enable-for-microblaze.patch │ │ │ ├── 0003-double-conversion-enable-for-nios2.patch │ │ │ └── qt5base.hash │ │ ├── 5.6.3 │ │ │ ├── 0001-eglfs-rasp-pi-header-inclusion.patch │ │ │ ├── 0002-qtbase-Fix-build-error-when-using-EGL.patch │ │ │ ├── 0003-libressl-add-fpermissive-gcc-flag-to-allow-compilati.patch │ │ │ ├── 0004-fix-icu-build-for-qt5webkit.patch │ │ │ ├── 0005-Do-not-load-plugin-from-the-PWD.patch │ │ │ └── qt5base.hash │ │ ├── Config.in │ │ ├── qmake.conf.in │ │ ├── qplatformdefs.h │ │ ├── qt.conf.in │ │ ├── qt5base.hash │ │ └── qt5base.mk │ ├── qt5canvas3d │ │ ├── Config.in │ │ ├── qt5canvas3d.hash │ │ └── qt5canvas3d.mk │ ├── qt5charts │ │ ├── Config.in │ │ ├── qt5charts.hash │ │ └── qt5charts.mk │ ├── qt5connectivity │ │ ├── 5.12.7 │ │ │ └── qt5connectivity.hash │ │ ├── 5.6.3 │ │ │ └── qt5connectivity.hash │ │ ├── Config.in │ │ ├── qt5connectivity.hash │ │ └── qt5connectivity.mk │ ├── qt5declarative │ │ ├── 5.12.7 │ │ │ └── 0001-qsgtexture-fix-debug-build-with-uclibc.patch │ │ ├── 5.6.3 │ │ │ ├── 0001-examples-photoviewer-needs-widgets-support.patch │ │ │ └── 0002-examples-qquickviewcomparison-and-quickwidget-needs-.patch │ │ ├── Config.in │ │ ├── qt5declarative.hash │ │ └── qt5declarative.mk │ ├── qt5enginio │ │ ├── Config.in │ │ ├── qt5enginio.hash │ │ └── qt5enginio.mk │ ├── qt5graphicaleffects │ │ ├── Config.in │ │ ├── qt5graphicaleffects.hash │ │ └── qt5graphicaleffects.mk │ ├── qt5imageformats │ │ ├── Config.in │ │ ├── qt5imageformats.hash │ │ └── qt5imageformats.mk │ ├── qt5location │ │ ├── Config.in │ │ ├── qt5location.hash │ │ └── qt5location.mk │ ├── qt5multimedia │ │ ├── Config.in │ │ ├── qt5multimedia.hash │ │ └── qt5multimedia.mk │ ├── qt5quickcontrols │ │ ├── Config.in │ │ ├── qt5quickcontrols.hash │ │ └── qt5quickcontrols.mk │ ├── qt5quickcontrols2 │ │ ├── 5.12.7 │ │ │ └── qt5quickcontrols2.hash │ │ ├── 5.6.3 │ │ │ └── qt5quickcontrols2.hash │ │ ├── Config.in │ │ ├── qt5quickcontrols2.hash │ │ └── qt5quickcontrols2.mk │ ├── qt5script │ │ ├── 0001-Detect-32-bits-armv8-a-architecture.patch │ │ ├── Config.in │ │ ├── qt5script.hash │ │ └── qt5script.mk │ ├── qt5scxml │ │ ├── Config.in │ │ ├── qt5scxml.hash │ │ └── qt5scxml.mk │ ├── qt5sensors │ │ ├── Config.in │ │ ├── qt5sensors.hash │ │ └── qt5sensors.mk │ ├── qt5serialbus │ │ ├── 5.12.7 │ │ │ └── qt5serialbus.hash │ │ ├── 5.6.3 │ │ │ ├── 0001-SocketCAN-Fix-compiler-error-SIOCGSTAMP-was-not-declared.patch │ │ │ └── qt5serialbus.hash │ │ ├── Config.in │ │ ├── qt5serialbus.hash │ │ └── qt5serialbus.mk │ ├── qt5serialport │ │ ├── 5.12.7 │ │ │ └── qt5serialport.hash │ │ ├── 5.6.3 │ │ │ └── qt5serialport.hash │ │ ├── Config.in │ │ ├── qt5serialport.hash │ │ └── qt5serialport.mk │ ├── qt5svg │ │ ├── Config.in │ │ ├── qt5svg.hash │ │ └── qt5svg.mk │ ├── qt5tools │ │ ├── Config.in │ │ ├── qt5tools.hash │ │ └── qt5tools.mk │ ├── qt5virtualkeyboard │ │ ├── 2.0 │ │ │ ├── 0001-remove-weird-install-path-for-example.patch │ │ │ └── qt5virtualkeyboard.hash │ │ ├── 5.12.7 │ │ │ └── qt5virtualkeyboard.hash │ │ ├── Config.in │ │ ├── qt5virtualkeyboard.hash │ │ └── qt5virtualkeyboard.mk │ ├── qt5wayland │ │ ├── Config.in │ │ ├── qt5wayland.hash │ │ └── qt5wayland.mk │ ├── qt5webchannel │ │ ├── Config.in │ │ ├── qt5webchannel.hash │ │ └── qt5webchannel.mk │ ├── qt5webengine │ │ ├── 5.12.7 │ │ │ ├── 0001-pkg_config-Fixes-when-use_sysroot-false.patch │ │ │ └── qt5webengine.hash │ │ ├── 5.6.3 │ │ │ ├── 0001-Change-default-SSL-directory.patch │ │ │ ├── 0002-Load-libEGL-and-libGLES2-symbols-implicitly.patch │ │ │ └── qt5webengine.hash │ │ ├── Config.in │ │ ├── chromium-latest.inc │ │ ├── chromium-lts.inc │ │ ├── host-pkg-config.in │ │ └── qt5webengine.mk │ ├── qt5webkit-examples │ │ ├── 0001-Build-examples.patch │ │ ├── 0002-Fix-QWebView-path.patch │ │ ├── Config.in │ │ ├── qt5webkit-examples.hash │ │ └── qt5webkit-examples.mk │ ├── qt5webkit │ │ ├── 5.6.3 │ │ │ ├── 0001-qtwebkit-fix-QA-issue-bad-RPATH.patch │ │ │ ├── 0002-Remove-TEXTREL-tag-in-x86.patch │ │ │ ├── 0003-Exclude-backtrace-API-for-non-glibc-libraries.patch │ │ │ ├── 0004-Fix-compilation-with-ICU-59.patch │ │ │ └── 0005-Detect-32-bits-armv8-a-architecture.patch │ │ ├── 5.9.1 │ │ │ ├── 0001-qtwebkit-fix-QA-issue-bad-RPATH.patch │ │ │ ├── 0002-Exclude-backtrace-API-for-non-glibc-libraries.patch │ │ │ ├── 0003-Detect-32-bits-armv8-a-architecture.patch │ │ │ ├── 0004-Fix-installation-of-class-headers.patch │ │ │ └── 0005-Fix-ICU-related-compile-failures.patch │ │ ├── Config.in │ │ ├── qt5webkit.hash │ │ └── qt5webkit.mk │ ├── qt5websockets │ │ ├── Config.in │ │ ├── qt5websockets.hash │ │ └── qt5websockets.mk │ ├── qt5webview │ │ ├── Config.in │ │ ├── qt5webview.hash │ │ └── qt5webview.mk │ ├── qt5x11extras │ │ ├── 5.12.7 │ │ │ └── qt5x11extras.hash │ │ ├── 5.6.3 │ │ │ └── qt5x11extras.hash │ │ ├── Config.in │ │ └── qt5x11extras.mk │ └── qt5xmlpatterns │ │ ├── Config.in │ │ ├── qt5xmlpatterns.hash │ │ └── qt5xmlpatterns.mk ├── qt5cinex │ ├── 0001-Fix-execution-problem-with-Qt5.3.patch │ ├── CinematicExperience-demo │ ├── Config.in │ ├── qt5cinex.hash │ └── qt5cinex.mk ├── quagga │ ├── 0001-fix-ipctl-forwarding.patch │ ├── Config.in │ ├── quagga.hash │ ├── quagga.mk │ ├── quagga@.service │ └── quagga_tmpfiles.conf ├── quazip │ ├── 0001-fix-qztest-build-error.patch │ ├── Config.in │ ├── quazip.hash │ └── quazip.mk ├── quota │ ├── 0001-configure.ac-add-disable-pie-option.patch │ ├── Config.in │ ├── quota.hash │ └── quota.mk ├── quotatool │ ├── 0001-fix-missing-__P-definition-for-musl-compile.patch │ ├── Config.in │ ├── quotatool.hash │ └── quotatool.mk ├── qwt │ ├── Config.in │ ├── qwt.hash │ └── qwt.mk ├── rabbitmq-c │ ├── Config.in │ ├── rabbitmq-c.hash │ └── rabbitmq-c.mk ├── rabbitmq-server │ ├── Config.in │ ├── S50rabbitmq-server │ ├── rabbitmq-server.hash │ ├── rabbitmq-server.mk │ └── rabbitmq-server.service ├── racehound │ ├── 0001-Fix-module-install-path-lib-instead-of-usr-lib-prefi.patch │ ├── Config.in │ ├── racehound.hash │ └── racehound.mk ├── radvd │ ├── 0002-Don-t-force-fstack-protector-the-toolchain-might-lac.patch │ ├── 50-radvd.preset │ ├── Config.in │ ├── S50radvd │ ├── radvd.hash │ └── radvd.mk ├── ramsmp │ ├── Config.in │ ├── Makefile │ ├── ramsmp.hash │ └── ramsmp.mk ├── ramspeed │ ├── Config.in │ ├── Makefile │ ├── ramspeed.hash │ └── ramspeed.mk ├── ranger │ ├── 0001-colorscheme-check-for-compiled-python-files.patch │ ├── Config.in │ ├── ranger.hash │ └── ranger.mk ├── rapidjson │ ├── Config.in │ ├── rapidjson.hash │ └── rapidjson.mk ├── rapidxml │ ├── 0001-ensure-internal-print-operations-are-declared-before.patch │ ├── Config.in │ ├── rapidxml.hash │ └── rapidxml.mk ├── raptor │ ├── 0001-configure.ac-remove-conditional-lib-inclusion.patch │ ├── Config.in │ ├── raptor.hash │ └── raptor.mk ├── raspberrypi-usbboot │ ├── 0001-Makefile-allow-passing-CFLAGS-LDFLAGS.patch │ ├── 0002-Makefile-add-DESTDIR-support.patch │ ├── 0003-main.c-rework-logic-to-find-def1-def2-and-def3-files.patch │ ├── Config.in.host │ ├── raspberrypi-usbboot.hash │ └── raspberrypi-usbboot.mk ├── raspi-gpio │ ├── Config.in │ ├── raspi-gpio.hash │ └── raspi-gpio.mk ├── ratpoison │ ├── Config.in │ ├── ratpoison.hash │ └── ratpoison.mk ├── rauc │ ├── Config.in │ ├── Config.in.host │ ├── rauc.hash │ └── rauc.mk ├── rcw │ ├── Config.in.host │ ├── rcw.hash │ └── rcw.mk ├── rdesktop │ ├── 0001-8bit-colors.patch │ ├── Config.in │ ├── rdesktop.hash │ └── rdesktop.mk ├── read-edid │ ├── 0001-Fix-install-file-list.patch │ ├── 0002-Fix-compiler-check.patch │ ├── Config.in │ ├── read-edid.hash │ └── read-edid.mk ├── readline │ ├── 0000-curses-link.patch │ ├── Config.in │ ├── inputrc │ ├── readline.hash │ └── readline.mk ├── reaver │ ├── 0001-fix-271.patch │ ├── Config.in │ ├── reaver.hash │ └── reaver.mk ├── redis │ ├── 0001-uclibc.patch │ ├── 0002-largefile-conditional-define.patch │ ├── 0003-redis.conf-adjust-defauts-for-buildroot.patch │ ├── Config.in │ ├── S50redis │ ├── redis.hash │ ├── redis.mk │ └── redis.service ├── refpolicy │ ├── Config.in │ ├── config │ ├── refpolicy.hash │ └── refpolicy.mk ├── restclient-cpp │ ├── Config.in │ ├── restclient-cpp.hash │ └── restclient-cpp.mk ├── restorecond │ ├── Config.in │ ├── restorecond.hash │ └── restorecond.mk ├── rhash │ ├── Config.in │ ├── rhash.hash │ └── rhash.mk ├── riemann-c-client │ ├── Config.in │ ├── riemann-c-client.hash │ └── riemann-c-client.mk ├── rings │ ├── Config.in │ ├── rings.hash │ └── rings.mk ├── ripgrep │ ├── Config.in │ ├── ripgrep.hash │ └── ripgrep.mk ├── rng-tools │ ├── Config.in │ ├── S21rngd │ ├── rng-tools.hash │ ├── rng-tools.mk │ └── rngd.service ├── rocksdb │ ├── 0001-Check-for-sys-auxv.h.patch │ ├── 0002-build_tools-build_detect_platform-fix-C-tests.patch │ ├── Config.in │ ├── rocksdb.hash │ └── rocksdb.mk ├── rp-pppoe │ ├── 0002-krn-plugin.patch │ ├── Config.in │ ├── rp-pppoe.hash │ └── rp-pppoe.mk ├── rpcbind │ ├── 0001-Remove-yellow-pages-support.patch │ ├── Config.in │ ├── S30rpcbind │ ├── rpcbind.hash │ ├── rpcbind.mk │ ├── rpcbind.service │ └── rpcbind.socket ├── rpi-bt-firmware │ ├── Config.in │ ├── rpi-bt-firmware.hash │ └── rpi-bt-firmware.mk ├── rpi-firmware │ ├── Config.in │ ├── cmdline.txt │ ├── config.txt │ ├── rpi-firmware.hash │ └── rpi-firmware.mk ├── rpi-userland │ ├── 0001-Add-.pc-files-for-the-OpenGLESv2-EGL-and-bcm_host-li.patch │ ├── 0002-interface-remove-faulty-assert-to-make-weston-happy-.patch │ ├── 0003-Disable-Werror-everywhere.patch │ ├── 0004-host-applications-disable-missing-applications.patch │ ├── 0005-dtmerge-add-missing-include-for-va_list.patch │ ├── Config.in │ ├── rpi-userland.hash │ └── rpi-userland.mk ├── rpi-wifi-firmware │ ├── Config.in │ ├── rpi-wifi-firmware.hash │ └── rpi-wifi-firmware.mk ├── rpm │ ├── 0001-configure-ac-prefer-pkg-config-to-find-libgcrypt.patch │ ├── Config.in │ ├── rpm.hash │ └── rpm.mk ├── rrdtool │ ├── Config.in │ ├── rrdtool.hash │ └── rrdtool.mk ├── rs485conf │ ├── Config.in │ ├── rs485conf.hash │ └── rs485conf.mk ├── rsh-redone │ ├── Config.in │ ├── rsh-redone.hash │ └── rsh-redone.mk ├── rsync │ ├── Config.in │ ├── rsync.hash │ └── rsync.mk ├── rsyslog │ ├── Config.in │ ├── S01rsyslogd │ ├── rsyslog.hash │ └── rsyslog.mk ├── rt-tests │ ├── 0001-Fix-various-minor-issues-with-rt-tests-build-system.patch │ ├── 0002-Fix-a-build-issue-with-uClibc-ng.patch │ ├── 0003-Add-syscall-number-for-sched_-gs-etattr-for-SH4.patch │ ├── Config.in │ ├── rt-tests.hash │ └── rt-tests.mk ├── rtai │ ├── Config.in │ ├── rtai.hash │ └── rtai.mk ├── rtc-tools │ ├── Config.in │ ├── rtc-tools.hash │ └── rtc-tools.mk ├── rtl8188eu │ ├── Config.in │ ├── rtl8188eu.hash │ └── rtl8188eu.mk ├── rtl8189fs │ ├── Config.in │ ├── rtl8189fs.hash │ └── rtl8189fs.mk ├── rtl8723bs │ ├── 0001-rtl8723bs-add-debug-level-modparam.patch │ ├── Config.in │ └── rtl8723bs.mk ├── rtl8723bu │ ├── Config.in │ ├── rtl8723bu.hash │ └── rtl8723bu.mk ├── rtl8821au │ ├── Config.in │ ├── rtl8821au.hash │ └── rtl8821au.mk ├── rtmpdump │ ├── 0001-include-limits.h.patch │ ├── Config.in │ ├── rtmpdump.hash │ └── rtmpdump.mk ├── rtorrent │ ├── Config.in │ ├── rtorrent.hash │ └── rtorrent.mk ├── rtptools │ ├── Config.in │ ├── rtptools.hash │ └── rtptools.mk ├── rubix │ ├── 0001-dont-use-legacy-functions.patch │ ├── 0002-misc-fixes.patch │ ├── Config.in │ ├── rubix.hash │ └── rubix.mk ├── ruby │ ├── Config.in │ ├── ruby.hash │ └── ruby.mk ├── runc │ ├── Config.in │ ├── runc.hash │ └── runc.mk ├── rust-bin │ ├── rust-bin.hash │ └── rust-bin.mk ├── rust │ ├── 0001-Workaround-presence-of-LLVM-library-in-stage0-lib.patch │ ├── rust.hash │ └── rust.mk ├── rustc │ ├── Config.in.host │ └── rustc.mk ├── rygel │ ├── Config.in │ ├── S99rygel │ ├── rygel.hash │ ├── rygel.mk │ └── rygel.service ├── s6-dns │ ├── Config.in │ ├── s6-dns.hash │ └── s6-dns.mk ├── s6-linux-init │ ├── Config.in │ ├── s6-linux-init.hash │ └── s6-linux-init.mk ├── s6-linux-utils │ ├── Config.in │ ├── s6-linux-utils.hash │ └── s6-linux-utils.mk ├── s6-networking │ ├── Config.in │ ├── s6-networking.hash │ └── s6-networking.mk ├── s6-portable-utils │ ├── Config.in │ ├── s6-portable-utils.hash │ └── s6-portable-utils.mk ├── s6-rc │ ├── Config.in │ ├── Config.in.host │ ├── s6-rc.hash │ └── s6-rc.mk ├── s6 │ ├── Config.in │ ├── s6.hash │ └── s6.mk ├── safeclib │ ├── Config.in │ ├── safeclib.hash │ └── safeclib.mk ├── sam-ba │ ├── Config.in.host │ ├── sam-ba.hash │ └── sam-ba.mk ├── samba4 │ ├── 0001-libreplace-disable-libbsd-support.patch │ ├── 0002-build-find-pre-built-heimdal-build-tools-in-case-of-.patch │ ├── 0003-Fix-unistd.h-include.patch │ ├── Config.in │ ├── S91smb │ ├── samba4-cache.txt │ ├── samba4.hash │ └── samba4.mk ├── sane-backends │ ├── 0001-sane_backend-add-missing-config.h.patch │ ├── Config.in │ ├── sane-backends.hash │ ├── sane-backends.mk │ ├── saned.socket │ └── saned@.service ├── sbc │ ├── Config.in │ ├── sbc.hash │ └── sbc.mk ├── sconeserver │ ├── Config.in │ ├── sconeserver.hash │ └── sconeserver.mk ├── scons │ ├── scons.hash │ └── scons.mk ├── screen │ ├── 0001-no-memcpy-fallback.patch │ ├── 0002-install-no-backup-binary.patch │ ├── 0003-install-always-chmod.patch │ ├── 0004-install-nonversioned-binary.patch │ ├── 0005-rename-sched_h.patch │ ├── 0006-comm-h-now-depends-on-term-h.patch │ ├── 0007-comm.h-needed-for-list_-display-generic-.o.patch │ ├── Config.in │ ├── screen.hash │ └── screen.mk ├── scrub │ ├── 0001-configure-ac-make-sure-m4-macros-are-included-in-the-build.patch │ ├── Config.in │ ├── scrub.hash │ └── scrub.mk ├── scrypt │ ├── Config.in │ ├── scrypt.hash │ └── scrypt.mk ├── sdbusplus │ ├── Config.in │ ├── Config.in.host │ ├── sdbusplus.hash │ └── sdbusplus.mk ├── sdl │ ├── 0001-use-correct-directfb-config.patch │ ├── 0002-fix-compilation-with-libx11.patch │ ├── Config.in │ ├── sdl.hash │ └── sdl.mk ├── sdl2 │ ├── 0001-src-core-linux-SDL_threadprio.c-fix-build-without-th.patch │ ├── 0002-fix-busy-loop-in-dlopen.patch │ ├── Config.in │ ├── sdl2.hash │ └── sdl2.mk ├── sdl2_gfx │ ├── Config.in │ ├── sdl2_gfx.hash │ └── sdl2_gfx.mk ├── sdl2_image │ ├── Config.in │ ├── sdl2_image.hash │ └── sdl2_image.mk ├── sdl2_mixer │ ├── Config.in │ ├── sdl2_mixer.hash │ └── sdl2_mixer.mk ├── sdl2_net │ ├── Config.in │ ├── sdl2_net.hash │ └── sdl2_net.mk ├── sdl2_ttf │ ├── Config.in │ ├── sdl2_ttf.hash │ └── sdl2_ttf.mk ├── sdl_gfx │ ├── Config.in │ ├── sdl_gfx.hash │ └── sdl_gfx.mk ├── sdl_image │ ├── Config.in │ ├── sdl_image.hash │ └── sdl_image.mk ├── sdl_mixer │ ├── 0001-Add-Libs.private-field-to-pkg-config-file.patch │ ├── 0002-add-LDFLAGS-while-linking.patch │ ├── 0003-Fix-include-of-modplug.h.patch │ ├── 0004-configure__set_macro_directory.patch │ ├── Config.in │ ├── sdl_mixer.hash │ └── sdl_mixer.mk ├── sdl_net │ ├── Config.in │ ├── sdl_net.hash │ └── sdl_net.mk ├── sdl_sound │ ├── 0001-fix-constness.patch │ ├── 0002-remove-werror.patch │ ├── 0003-renamed-physfs-export.patch │ ├── Config.in │ ├── sdl_sound.hash │ └── sdl_sound.mk ├── sdl_ttf │ ├── Config.in │ ├── sdl_ttf.hash │ └── sdl_ttf.mk ├── sdparm │ ├── Config.in │ ├── sdparm.hash │ └── sdparm.mk ├── sed │ ├── Config.in │ ├── sed.hash │ └── sed.mk ├── sedutil │ ├── 0001-Common-log.h-time-2-needs-time.h.patch │ ├── Config.in │ ├── sedutil.hash │ └── sedutil.mk ├── selinux-python │ ├── Config.in │ ├── selinux-python.hash │ └── selinux-python.mk ├── semodule-utils │ ├── Config.in │ ├── semodule-utils.hash │ └── semodule-utils.mk ├── ser2net │ ├── Config.in │ ├── S50ser2net │ ├── ser2net.hash │ └── ser2net.mk ├── setools │ ├── 0001-remove-werror-flag-from-setup.patch │ ├── 0002-Do-not-export-use-setools.InfoFlowAnalysis-and-setoo.patch │ ├── 0003-setup.py-drop-path-prefix-from-man-install.patch │ ├── Config.in │ ├── setools.hash │ └── setools.mk ├── setserial │ ├── 0001-build-system-fix.patch │ ├── 0002-tiocghayesesp-build-fix.patch │ ├── Config.in │ ├── setserial.hash │ └── setserial.mk ├── sg3_utils │ ├── 0001-support-uclinux-as-a-linux.patch │ ├── 0002-src-Makefile.am-add-missing-RT_LIB-for-sg_turs.patch │ ├── Config.in │ ├── sg3_utils.hash │ └── sg3_utils.mk ├── shadowsocks-libev │ ├── Config.in │ ├── shadowsocks-libev.hash │ └── shadowsocks-libev.mk ├── shairport-sync │ ├── Config.in │ ├── S99shairport-sync │ ├── shairport-sync.hash │ └── shairport-sync.mk ├── shapelib │ ├── Config.in │ ├── shapelib.hash │ └── shapelib.mk ├── shared-mime-info │ ├── 0001-Remove-incorrect-dependency-from-install-data-hook.patch │ ├── Config.in │ ├── shared-mime-info.hash │ └── shared-mime-info.mk ├── shellinabox │ ├── 0001-Makefile-disable-always-building-statically.patch │ ├── 0002-CVE-2018-16789-fix-for-broken-multipart-form-data.patch │ ├── Config.in │ ├── shellinabox.hash │ └── shellinabox.mk ├── sigrok-cli │ ├── Config.in │ ├── sigrok-cli.hash │ └── sigrok-cli.mk ├── sispmctl │ ├── Config.in │ ├── sispmctl.hash │ └── sispmctl.mk ├── skalibs │ ├── 0001-Make-linker-use-dummy-file-when-testing-libs.patch │ ├── Config.in │ ├── skalibs.hash │ └── skalibs.mk ├── skeleton-custom │ ├── Config.in │ └── skeleton-custom.mk ├── skeleton-init-common │ ├── Config.in │ └── skeleton-init-common.mk ├── skeleton-init-none │ ├── Config.in │ └── skeleton-init-none.mk ├── skeleton-init-openrc │ ├── Config.in │ ├── skeleton-init-openrc.mk │ └── skeleton │ │ ├── dev │ │ └── log │ │ ├── etc │ │ ├── conf.d │ │ │ └── .empty │ │ ├── fstab │ │ └── runlevels │ │ │ └── default │ │ │ ├── .empty │ │ │ └── sysv-rcs │ │ └── var │ │ ├── cache │ │ ├── lib │ │ └── misc │ │ ├── lock │ │ ├── log │ │ ├── run │ │ ├── spool │ │ └── tmp ├── skeleton-init-systemd │ ├── Config.in │ └── skeleton-init-systemd.mk ├── skeleton-init-sysv │ ├── Config.in │ ├── skeleton-init-sysv.mk │ └── skeleton │ │ ├── dev │ │ ├── log │ │ ├── pts │ │ │ └── .empty │ │ └── shm │ │ │ └── .empty │ │ ├── etc │ │ └── fstab │ │ └── var │ │ ├── cache │ │ ├── lib │ │ └── misc │ │ ├── lock │ │ ├── log │ │ ├── run │ │ ├── spool │ │ └── tmp ├── skeleton │ ├── Config.in │ └── skeleton.mk ├── sl │ ├── Config.in │ ├── sl.hash │ └── sl.mk ├── slang │ ├── 0001-slsh-libs.patch │ ├── Config.in │ ├── slang.hash │ └── slang.mk ├── slirp │ ├── Config.in │ └── slirp.mk ├── smack │ ├── Config.in │ ├── smack.hash │ └── smack.mk ├── smartmontools │ ├── Config.in │ ├── smartmontools.hash │ └── smartmontools.mk ├── smcroute │ ├── Config.in │ ├── smcroute.hash │ └── smcroute.mk ├── smstools3 │ ├── 0001-fix-Makefile.patch │ ├── Config.in │ ├── S50smsd │ ├── smstools3.hash │ └── smstools3.mk ├── snappy │ ├── Config.in │ ├── snappy.hash │ └── snappy.mk ├── sngrep │ ├── 0001-capture-fix-typo-in-FILE-object.patch │ ├── Config.in │ ├── sngrep.hash │ └── sngrep.mk ├── snmpclitools │ ├── Config.in │ ├── snmpclitools.hash │ └── snmpclitools.mk ├── snmppp │ ├── Config.in │ ├── snmppp.hash │ └── snmppp.mk ├── snort │ ├── 0001-configure.in-Avoid-path-poisoning-with-libpcap.patch │ ├── 0002-configure.in-Allow-to-override-the-INADDR_NONE-check.patch │ ├── 0003-configure.in-convert-AC_RUN_IFELSE-to-AC_CHECK_MEMBE.patch │ ├── 0004-configure.in-convert-AC_RUN_IFELSE-to-AC_COMPILE_IFE.patch │ ├── 0005-fix-sparc.patch │ ├── 0006-Fix-compile-error-when-building-against-uclibc-or-mu.patch │ ├── 0007-Fix-error-when-building-on-a-Fedora-host-machine.patch │ ├── Config.in │ ├── snort.hash │ └── snort.mk ├── socat │ ├── 0001-no-documentation.patch │ ├── 0002-compat-set-NETDB_INTERNAL.patch │ ├── Config.in │ ├── socat.hash │ └── socat.mk ├── socketcand │ ├── Config.in │ ├── socketcand.hash │ └── socketcand.mk ├── sofia-sip │ ├── 0001-soa_tag.h-reintroduce-soatag_local_sdp_str_ref.patch │ ├── Config.in │ ├── sofia-sip.hash │ └── sofia-sip.mk ├── softether │ ├── 0001-Create-autotools-plumbing-for-SoftEther.patch │ ├── 0002-Create-libsoftether.so-and-dynamically-link.patch │ ├── 0003-use-fhs-install-directories.patch │ ├── 0004-create-non-forking-softetherd-for-upstart-and-systemd.patch │ ├── 0005-change-GetExeDir-to-GetStateDir-in-Cedar-and-Mayaqua.patch │ ├── 0006-cross-compile.patch │ ├── 0007-iconv.patch │ ├── 0008-librt.patch │ ├── 0009-uclibc-ai-addrconfig.patch │ ├── Config.in │ ├── softether.hash │ └── softether.mk ├── solarus │ ├── 0001-cmake-remove-Werror.patch │ ├── Config.in │ ├── solarus.hash │ └── solarus.mk ├── sound-theme-borealis │ ├── Config.in │ ├── sound-theme-borealis.hash │ └── sound-theme-borealis.mk ├── sound-theme-freedesktop │ ├── Config.in │ ├── sound-theme-freedesktop.hash │ └── sound-theme-freedesktop.mk ├── sox │ ├── 0001-uclibc.patch │ ├── Config.in │ ├── sox.hash │ └── sox.mk ├── sp-oops-extract │ ├── 0001-Make-the-Makefile-more-cross-compiler-friendly.patch │ ├── 0002-stdint-cleanup.patch │ ├── Config.in │ ├── sp-oops-extract.hash │ └── sp-oops-extract.mk ├── spandsp │ ├── Config.in │ ├── spandsp.hash │ └── spandsp.mk ├── spawn-fcgi │ ├── Config.in │ ├── spawn-fcgi.hash │ └── spawn-fcgi.mk ├── spdlog │ ├── Config.in │ ├── spdlog.hash │ └── spdlog.mk ├── speex │ ├── 0001-thumb2-support.patch │ ├── Config.in │ ├── speex.hash │ └── speex.mk ├── speexdsp │ ├── Config.in │ ├── speexdsp.hash │ └── speexdsp.mk ├── sphinxbase │ ├── Config.in │ ├── sphinxbase.hash │ └── sphinxbase.mk ├── spi-tools │ ├── Config.in │ ├── spi-tools.hash │ └── spi-tools.mk ├── spice-protocol │ ├── Config.in │ ├── spice-protocol.hash │ └── spice-protocol.mk ├── spice │ ├── 0001-configure.ac-add-enable-tests.patch │ ├── Config.in │ ├── spice.hash │ └── spice.mk ├── spidermonkey │ ├── 0001-allow-newer-autoconf-versions.patch │ ├── 0002-allow-building-in-tree.patch │ ├── 0003-allow-unknown-configuration-options.patch │ ├── 0004-fix-building-with-musl.patch │ ├── 0005-add-riscv-support.patch │ ├── 0006-copy-headers-on-install-instead-of-symlinking.patch │ ├── 0007-ensure-proper-running-on-64-bit-and-32-bit-be-platforms.patch │ ├── 0008-save-and-restore-non-volatile-x28-on-ARM64-for-generated-unboxed-obje.patch │ ├── 0009-save-x28-before-clobbering-it-in-the-regex-compiler.patch │ ├── 0010-always-use-the-equivalent-year-to-determine-the-time-zone.patch │ ├── 0011-js-src-Makefile.in-install-shell-only-if-it-s-built.patch │ ├── Config.in │ ├── spidermonkey.hash │ └── spidermonkey.mk ├── spidev_test │ ├── Config.in │ ├── spidev_test.hash │ └── spidev_test.mk ├── sqlcipher │ ├── Config.in │ ├── sqlcipher.hash │ └── sqlcipher.mk ├── sqlite │ ├── Config.in │ ├── sqlite.hash │ └── sqlite.mk ├── squashfs │ ├── Config.in │ ├── Config.in.host │ ├── squashfs.hash │ └── squashfs.mk ├── squeezelite │ ├── Config.in │ ├── squeezelite.hash │ └── squeezelite.mk ├── squid │ ├── Config.in │ ├── S97squid │ ├── squid.hash │ └── squid.mk ├── sredird │ ├── 0001-termio.patch │ ├── Config.in │ ├── sredird.hash │ └── sredird.mk ├── sshfs │ ├── Config.in │ ├── sshfs.hash │ └── sshfs.mk ├── sshguard │ ├── Config.in │ ├── S49sshguard │ ├── sshguard.hash │ └── sshguard.mk ├── sshpass │ ├── Config.in │ ├── sshpass.hash │ └── sshpass.mk ├── sslh │ ├── 0001-secure-version-while-building-sslh-in-a-larger-git-t.patch │ ├── Config.in │ ├── S35sslh │ ├── sslh.hash │ └── sslh.mk ├── start-stop-daemon │ ├── 0001-add-uclibc-alias-and-musl.patch │ ├── 0002-just-warn-on-missing-arch.patch │ ├── Config.in │ ├── start-stop-daemon.hash │ └── start-stop-daemon.mk ├── startup-notification │ ├── Config.in │ ├── startup-notification.hash │ └── startup-notification.mk ├── statserial │ ├── 0001-ncurses-link.patch │ ├── Config.in │ ├── statserial.hash │ └── statserial.mk ├── stella │ ├── 0001-Add-cross-compilation-support.patch │ ├── 0002-Do-not-strip-when-installing.patch │ ├── 0003-undef-PAGE_SIZE.patch │ ├── Config.in │ ├── stella.hash │ └── stella.mk ├── stellarium │ ├── Config.in │ ├── stellarium.hash │ └── stellarium.mk ├── stm32flash │ ├── Config.in │ ├── stm32flash.hash │ └── stm32flash.mk ├── strace │ ├── 0001-filter_seccomp-fix-no-MMU-build.patch │ ├── Config.in │ ├── strace.hash │ └── strace.mk ├── stress-ng │ ├── Config.in │ ├── stress-ng.hash │ └── stress-ng.mk ├── stress │ ├── Config.in │ ├── stress.hash │ └── stress.mk ├── strongswan │ ├── Config.in │ ├── strongswan.hash │ └── strongswan.mk ├── stunnel │ ├── Config.in │ ├── S50stunnel │ ├── stunnel.hash │ └── stunnel.mk ├── subversion │ ├── 0001-dont-mangle-cflags.patch │ ├── 0002-workaround-ac-run-ifelse.patch │ ├── Config.in │ ├── subversion.hash │ └── subversion.mk ├── sudo │ ├── Config.in │ ├── sudo.hash │ ├── sudo.mk │ └── sudo.pam ├── sunwait │ ├── Config.in │ ├── sunwait.hash │ └── sunwait.mk ├── sunxi-boards │ ├── Config.in │ ├── sunxi-boards.hash │ └── sunxi-boards.mk ├── sunxi-cedarx │ ├── Config.in │ ├── sunxi-cedarx.hash │ └── sunxi-cedarx.mk ├── sunxi-mali-mainline-driver │ ├── Config.in │ ├── sunxi-mali-mainline-driver.hash │ └── sunxi-mali-mainline-driver.mk ├── sunxi-mali-mainline │ ├── Config.in │ ├── egl.pc │ ├── glesv2.pc │ ├── sunxi-mali-mainline.hash │ └── sunxi-mali-mainline.mk ├── sunxi-tools │ ├── 0001-meminfo-Access-to-io-memory-via-pointers.patch │ ├── Config.in │ ├── Config.in.host │ ├── sunxi-tools.hash │ └── sunxi-tools.mk ├── supertux │ ├── 0001-Fix-build-on-PowerPC.patch │ ├── Config.in │ ├── supertux.hash │ └── supertux.mk ├── supertuxkart │ ├── Config.in │ ├── supertuxkart.hash │ └── supertuxkart.mk ├── supervisor │ ├── Config.in │ ├── S99supervisord │ ├── supervisor.hash │ ├── supervisor.mk │ ├── supervisord.conf │ └── supervisord.service ├── suricata │ ├── 0001-configure.ac-fix-static-build-with-pcap.patch │ ├── 0002-configure.ac-fix-disable-geoip.patch │ ├── 0003-python-ensure-proper-shabang-on-python-scripts.patch │ ├── 0004-stream-reject-broken-ACK-packets.patch │ ├── Config.in │ ├── S99suricata │ ├── suricata.hash │ ├── suricata.mk │ └── suricata.service ├── swig │ ├── Config.in.host │ ├── swig.hash │ └── swig.mk ├── swupdate │ ├── Config.in │ ├── swupdate.config │ ├── swupdate.hash │ └── swupdate.mk ├── sylpheed │ ├── Config.in │ ├── sylpheed.hash │ └── sylpheed.mk ├── synergy │ ├── Config.in │ ├── synergy.hash │ └── synergy.mk ├── sysdig │ ├── Config.in │ ├── sysdig.hash │ └── sysdig.mk ├── sysklogd │ ├── Config.in │ ├── S01syslogd │ ├── S02klogd │ ├── klogd.service │ ├── sysklogd.hash │ ├── sysklogd.mk │ ├── syslog.conf │ └── syslogd.service ├── syslog-ng │ ├── 0001-fix-build-on-uclibc.patch │ ├── 0002-configure.ac-fix-with-netsnmp.patch │ ├── Config.in │ ├── S01syslog-ng │ ├── syslog-ng.conf │ ├── syslog-ng.hash │ ├── syslog-ng.mk │ └── syslog-ng@default ├── sysprof │ ├── 0001-define-NT_GNU_BUILD_ID.patch │ ├── Config.in │ ├── sysprof.hash │ └── sysprof.mk ├── sysrepo │ ├── 0001-sysrepo-plugind-CHANGE-create-plugins-dir-if-it-does.patch │ ├── 0002-sysrpeo-plugind-BUGFIX-create-plugins-dir-recursivel.patch │ ├── Config.in │ ├── S51sysrepo-plugind │ ├── sysrepo.hash │ └── sysrepo.mk ├── sysstat │ ├── Config.in │ ├── sysstat.hash │ └── sysstat.mk ├── systemd-bootchart │ ├── Config.in │ ├── systemd-bootchart.hash │ └── systemd-bootchart.mk ├── systemd │ ├── 0001-random-seed-add-missing-header-for-GRND_NONBLOCK.patch │ ├── 80-buildroot.preset │ ├── Config.in │ ├── Config.in.host │ ├── boot-files │ │ ├── buildroot.conf │ │ └── loader.conf │ ├── dhcp.network │ ├── systemd.hash │ └── systemd.mk ├── sysvinit │ ├── Config.in │ ├── inittab │ ├── sysvinit.hash │ └── sysvinit.mk ├── szip │ ├── Config.in │ ├── szip.hash │ └── szip.mk ├── taglib │ ├── 0001-fix-taglib-config-file-for-cross-compiling-906.patch │ ├── 0002-Don-t-assume-TDRC-is-an-instance-of-TextIdentificationFrame.patch │ ├── 0003-Fixed-OOB-read-when-loading-invalid-ogg-flac-file.patch │ ├── Config.in │ ├── taglib.hash │ └── taglib.mk ├── tar │ ├── Config.in │ ├── tar.hash │ └── tar.mk ├── targetcli-fb │ ├── Config.in │ ├── S50target │ ├── target.service │ ├── targetcli-fb.hash │ └── targetcli-fb.mk ├── taskd │ ├── 0001-Fix-missing-cmakedefine-HAVE_GET_CURRENT_DIR_NAME.patch │ ├── 0002-Use-correct-variables-for-GnuTLS-detection.patch │ ├── 0003-CMakeLists-use-pkg-config-uuid-detection.patch │ ├── Config.in │ ├── taskd.hash │ └── taskd.mk ├── tcf-agent │ ├── Config.in │ ├── S55tcf-agent │ ├── tcf-agent.hash │ ├── tcf-agent.mk │ └── tcf-agent.service ├── tcl │ ├── 0001-dont-build-compat.patch │ ├── Config.in │ ├── tcl.hash │ └── tcl.mk ├── tclap │ ├── Config.in │ ├── tclap.hash │ └── tclap.mk ├── tcllib │ ├── Config.in │ ├── tcllib.hash │ └── tcllib.mk ├── tcpdump │ ├── Config.in │ ├── tcpdump.hash │ └── tcpdump.mk ├── tcping │ ├── Config.in │ ├── tcping.hash │ └── tcping.mk ├── tcpreplay │ ├── 0001-configure-ac-fix-without-libdnet.patch │ ├── Config.in │ ├── tcpreplay.hash │ └── tcpreplay.mk ├── tegrarcm │ ├── Config.in.host │ ├── tegrarcm.hash │ └── tegrarcm.mk ├── tekui │ ├── Config.in │ ├── tekui.hash │ └── tekui.mk ├── terminology │ ├── Config.in │ ├── terminology.hash │ └── terminology.mk ├── tesseract-ocr │ ├── 0001-Fix-timeval-structure-build-failure.patch │ ├── Config.in │ ├── tesseract-ocr.hash │ └── tesseract-ocr.mk ├── tftpd │ ├── Config.in │ ├── S80tftpd-hpa │ ├── tftpd.hash │ └── tftpd.mk ├── thermald │ ├── Config.in │ ├── thermald.hash │ └── thermald.mk ├── thrift │ ├── 0001-Force-to-keep-TPipedTransport-peek-to-avoid-linker-e.patch │ ├── Config.in │ ├── thrift.hash │ └── thrift.mk ├── thttpd │ ├── Config.in │ ├── S90thttpd │ ├── thttpd.hash │ ├── thttpd.mk │ └── thttpd.service ├── ti-cgt-pru │ ├── Config.in.host │ ├── ti-cgt-pru.hash │ └── ti-cgt-pru.mk ├── ti-gfx │ ├── 0001-newclkapi.patch │ ├── 0002-fix-build-omaplfb-linux.patch │ ├── 0003-km_install_modules.patch │ ├── Config.in │ ├── S80ti-gfx │ ├── egl.pc │ ├── esrev.sh │ ├── glesv2.pc │ ├── powervr.ini │ ├── ti-gfx.hash │ ├── ti-gfx.mk │ └── ti-gfx.service ├── ti-sgx-demos │ ├── Config.in │ ├── ti-sgx-demos.hash │ └── ti-sgx-demos.mk ├── ti-sgx-km │ ├── Config.in │ ├── ti-sgx-km.hash │ └── ti-sgx-km.mk ├── ti-sgx-libgbm │ ├── 0001-Add-missing-sys-sysmacros.h-include.patch │ ├── Config.in │ ├── ti-sgx-libgbm.hash │ └── ti-sgx-libgbm.mk ├── ti-sgx-um │ ├── 0001-Makefile-do-not-install-init-script.patch │ ├── Config.in │ ├── S80ti-sgx │ ├── ti-sgx-um.hash │ └── ti-sgx-um.mk ├── ti-uim │ ├── Config.in │ ├── ti-uim.hash │ └── ti-uim.mk ├── ti-utils │ ├── Config.in │ ├── ti-utils.hash │ └── ti-utils.mk ├── tiff │ ├── Config.in │ ├── tiff.hash │ └── tiff.mk ├── time │ ├── Config.in │ ├── time.hash │ └── time.mk ├── tinc │ ├── Config.in │ ├── tinc.hash │ └── tinc.mk ├── tini │ ├── Config.in │ ├── tini.hash │ └── tini.mk ├── tinyalsa │ ├── 0001-disable-doxygen-usage.patch │ ├── 0002-interval.h-add-missing-header.patch │ ├── Config.in │ ├── tinyalsa.hash │ └── tinyalsa.mk ├── tinycbor │ ├── Config.in │ ├── tinycbor.hash │ └── tinycbor.mk ├── tinydtls │ ├── 0001-Update-Makefile.in-to-allow-cross-compilation.patch │ ├── 0002-Fix-compilation-of-tests-directory.patch │ ├── Config.in │ ├── tinydtls.hash │ └── tinydtls.mk ├── tinyhttpd │ ├── 0001-misc-fixes.patch │ ├── Config.in │ ├── S85tinyhttpd │ ├── tinyhttpd.hash │ ├── tinyhttpd.mk │ └── tinyhttpd.service ├── tinymembench │ ├── 0001-arm-fix-build-on-Thumb-only-architectures.patch │ ├── Config.in │ ├── tinymembench.hash │ └── tinymembench.mk ├── tinyssh │ ├── Config.in │ ├── tinyssh.hash │ └── tinyssh.mk ├── tinyxml │ ├── Config.in │ ├── tinyxml.hash │ └── tinyxml.mk ├── tinyxml2 │ ├── Config.in │ ├── tinyxml2.hash │ └── tinyxml2.mk ├── tio │ ├── Config.in │ ├── tio.hash │ └── tio.mk ├── tk │ ├── Config.in │ ├── tk.hash │ └── tk.mk ├── tmux │ ├── Config.in │ ├── tmux.hash │ └── tmux.mk ├── tor │ ├── 0001-Fix-static-linking-with-OpenSSL.patch │ ├── Config.in │ ├── tor.hash │ └── tor.mk ├── tovid │ ├── 0001-manpage.patch │ ├── Config.in │ ├── tovid.hash │ └── tovid.mk ├── tpm-tools │ ├── Config.in │ ├── tpm-tools.hash │ └── tpm-tools.mk ├── tpm2-abrmd │ ├── Config.in │ ├── S80tpm2-abrmd │ ├── tpm2-abrmd.hash │ └── tpm2-abrmd.mk ├── tpm2-tools │ ├── Config.in │ ├── tpm2-tools.hash │ └── tpm2-tools.mk ├── tpm2-totp │ ├── Config.in │ ├── tpm2-totp.hash │ └── tpm2-totp.mk ├── tpm2-tss │ ├── 0001-Temporary-fix-for-build-without-C.patch │ ├── Config.in │ ├── tpm2-tss.hash │ └── tpm2-tss.mk ├── trace-cmd │ ├── 0001-trace-listen-add-missing-header.patch │ ├── Config.in │ ├── trace-cmd.hash │ └── trace-cmd.mk ├── traceroute │ ├── Config.in │ ├── traceroute.hash │ └── traceroute.mk ├── transmission │ ├── 0001-fix-utypes.patch │ ├── 0002-musl-missing-header.patch │ ├── 0003-fix-utp-include.patch │ ├── 0004-uClibc-ng-since-1.0.18-has-sys-quota.h-synced-with-G.patch │ ├── 0005-libsystemd.patch │ ├── Config.in │ ├── S92transmission │ ├── transmission.hash │ └── transmission.mk ├── tree │ ├── Config.in │ ├── tree.hash │ └── tree.mk ├── tremor │ ├── Config.in │ ├── tremor.hash │ └── tremor.mk ├── triggerhappy │ ├── Config.in │ ├── S10triggerhappy │ ├── triggerhappy.hash │ ├── triggerhappy.mk │ └── triggerhappy.service ├── trinity │ ├── Config.in │ ├── trinity.hash │ └── trinity.mk ├── trousers │ ├── 0001-Check-if-the-compiler-understands-pie-and-relro-options.patch │ ├── 0002-Check-that-getpwent_r-is-available-before-using-it.patch │ ├── Config.in │ ├── trousers.hash │ └── trousers.mk ├── ts4900-fpga │ ├── Config.in │ ├── ts4900-fpga.hash │ └── ts4900-fpga.mk ├── tslib │ ├── 0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch │ ├── 0002-Fix-build-error-with-input_event_sec-for-old-kernel.patch │ ├── Config.in │ ├── tslib.hash │ └── tslib.mk ├── tstools │ ├── 0001-build-get-along-with-buildroot.patch │ ├── Config.in │ ├── tstools.hash │ └── tstools.mk ├── tunctl │ ├── Config.in │ ├── tunctl.hash │ └── tunctl.mk ├── turbolua │ ├── Config.in │ ├── turbolua.hash │ └── turbolua.mk ├── tvheadend │ ├── 0001-no-check_config.patch │ ├── Config.in │ ├── S99tvheadend │ ├── etc.default.tvheadend │ ├── tvheadend.hash │ └── tvheadend.mk ├── twolame │ ├── Config.in │ ├── twolame.hash │ └── twolame.mk ├── tz │ ├── Config.in │ └── tz.mk ├── tzdata │ ├── Config.in │ ├── tzdata.hash │ └── tzdata.mk ├── tzdump │ ├── tzdump.hash │ └── tzdump.mk ├── uacme │ ├── Config.in │ ├── uacme.hash │ └── uacme.mk ├── uboot-tools │ ├── 0001-drop-configh-from-tools.patch │ ├── 0002-tools-only-in-no-dot-config-targets.patch │ ├── 0003-drop-autoconf.h-from-tools.patch │ ├── Config.in │ ├── Config.in.host │ ├── uboot-tools.hash │ └── uboot-tools.mk ├── ubus │ ├── 0001-Install-server-and-client-examples.patch │ ├── Config.in │ ├── ubus.hash │ └── ubus.mk ├── uccp420wlan │ ├── Config.in │ ├── uccp420wlan.hash │ └── uccp420wlan.mk ├── ucl │ ├── ucl.hash │ └── ucl.mk ├── uclibc-ng-test │ ├── 0001-misc-tst-syscall6-fix-build-with-musl-and-older-kenr.patch │ ├── 0002-Add-NO_CRYPT-to-fix-build-with-glibc-2.28.patch │ ├── 0003-test-misc-test-nftw.c-fix-build-with-latest-glibc.patch │ ├── 0004-test-nptl-tst-mqueue4.c-fix-build-with-latest-glibc.patch │ ├── Config.in │ └── uclibc-ng-test.mk ├── uclibc │ ├── 0001-include-ctype.h-drop-is-_l-macro-definitions.patch │ ├── 0002-include-ctype.h-restore-__isctype_l-definition.patch │ ├── Config.in │ ├── uClibc-ng.config │ ├── uclibc.hash │ └── uclibc.mk ├── udev │ ├── Config.in │ └── udev.mk ├── udftools │ ├── Config.in │ ├── udftools.hash │ └── udftools.mk ├── udisks │ ├── 0001-fix-build-with-newer-glibc-versions.patch │ ├── 0002-Fix-systemd-service-file.patch │ ├── 0003-Fix-compilation-issue-with-missing-sys-sysmacros.h-i.patch │ ├── Config.in │ ├── udisks.hash │ └── udisks.mk ├── udpcast │ ├── 0001-select-h.patch │ ├── Config.in │ ├── udpcast.hash │ └── udpcast.mk ├── udpxy │ ├── Config.in │ ├── udpxy.hash │ └── udpxy.mk ├── uemacs │ ├── 01-clear-ixon-termios-flag.patch │ ├── Config.in │ ├── uemacs.hash │ └── uemacs.mk ├── uftp │ ├── Config.in │ ├── uftp.hash │ └── uftp.mk ├── uhttpd │ ├── 0001-Remove-Werror.patch │ ├── 0002-Fix-TCP_FASTOPEN-related-compile-error.patch │ ├── Config.in │ ├── uhttpd.hash │ └── uhttpd.mk ├── uhubctl │ ├── Config.in │ ├── uhubctl.hash │ └── uhubctl.mk ├── ulogd │ ├── 0001-ulogd-fix-build-with-musl-libc.patch │ ├── Config.in │ ├── ulogd.hash │ └── ulogd.mk ├── umtprd │ ├── Config.in │ ├── umtprd.hash │ └── umtprd.mk ├── unionfs │ ├── 0001-include-asm-ioctl.h-for-_IOC_SIZE.patch │ ├── Config.in │ ├── unionfs.hash │ └── unionfs.mk ├── unixodbc │ ├── 0001-fix-nopthread.patch │ ├── Config.in │ ├── unixodbc.hash │ └── unixodbc.mk ├── unrar │ ├── Config.in │ ├── unrar.hash │ └── unrar.mk ├── unscd │ ├── Config.in │ ├── S46unscd │ ├── nscd.conf │ ├── unscd.hash │ └── unscd.mk ├── unzip │ ├── 0001-Add-a-CMakeFile.txt-to-ease-cross-compilation.patch │ ├── Config.in │ ├── unzip.hash │ └── unzip.mk ├── upmpdcli │ ├── Config.in │ ├── S99upmpdcli │ ├── upmpdcli.hash │ └── upmpdcli.mk ├── upower │ ├── Config.in │ ├── upower.hash │ └── upower.mk ├── upx │ ├── upx.hash │ └── upx.mk ├── urg │ ├── 0001-select-h.patch │ ├── 0002-urg-gcc6-fix-narrowing-conversion.patch │ ├── Config.in │ ├── urg.hash │ └── urg.mk ├── usb_modeswitch │ ├── Config.in │ ├── usb_modeswitch.hash │ └── usb_modeswitch.mk ├── usb_modeswitch_data │ ├── Config.in │ ├── usb_modeswitch_data.hash │ └── usb_modeswitch_data.mk ├── usbmount │ ├── 0001-rules-fix.patch │ ├── 0002-use-udev-environment-instead-of-blkid.patch │ ├── Config.in │ ├── usbmount.hash │ └── usbmount.mk ├── usbredir │ ├── Config.in │ ├── usbredir.hash │ └── usbredir.mk ├── usbutils │ ├── Config.in │ ├── usbutils.hash │ └── usbutils.mk ├── ushare │ ├── 0001-compile-fixes.patch │ ├── 0002-ushare-fix-building-with-gcc-5.x.patch │ ├── 0003-ushare-c-include-config-h-before-checking-for-CONFIG-NLS.patch │ ├── Config.in │ ├── ushare.hash │ └── ushare.mk ├── ussp-push │ ├── 0001-fix-build-against-bluez-4.patch │ ├── 0002-fix-build-again-obex-bluez.patch │ ├── 0003-add-OBEX_CharToUnicode.patch │ ├── Config.in │ ├── ussp-push.hash │ └── ussp-push.mk ├── ustream-ssl │ ├── Config.in │ ├── ustream-ssl.hash │ └── ustream-ssl.mk ├── utf8proc │ ├── Config.in │ ├── utf8proc.hash │ └── utf8proc.mk ├── util-linux │ ├── 0003-blkdiscard-use-O_EXCL-add-force.patch │ ├── 0004-libfdisk-add-fdisk_set_disklabel_id_from_string.patch │ ├── 0005-sfdisk-add-disk-id-to-change-disk-UUID-ID.patch │ ├── 0006-kill-include-sys-types.h-before-checking-SYS_pidfd_s.patch │ ├── 0007-include-cleanup-pidfd-inckudes.patch │ ├── Config.in │ ├── Config.in.host │ ├── su.pam │ ├── util-linux.hash │ └── util-linux.mk ├── utp_com │ ├── Config.in.host │ ├── utp_com.hash │ └── utp_com.mk ├── uvw │ ├── Config.in │ ├── uvw.hash │ └── uvw.mk ├── ux500-firmware │ ├── Config.in │ ├── ux500-firmware.hash │ └── ux500-firmware.mk ├── v4l2grab │ ├── Config.in │ ├── v4l2grab.hash │ └── v4l2grab.mk ├── v4l2loopback │ ├── Config.in │ ├── v4l2loopback.hash │ └── v4l2loopback.mk ├── vala │ ├── 0001-dont-add-dirty-to-valac-version.patch │ ├── vala-wrapper │ ├── vala.hash │ └── vala.mk ├── valgrind │ ├── 0001-workaround-SIGSEGV-on-PPC.patch │ ├── 0002-Define-PTRACE_GETSIGINFO-on-PowerPC-when-not-availab.patch │ ├── 0003-mips-fix-mips32r6-and-mips64r6-compilation-issue.patch │ ├── Config.in │ ├── uclibc.supp │ ├── valgrind.hash │ └── valgrind.mk ├── valijson │ ├── Config.in │ ├── valijson.hash │ └── valijson.mk ├── vboot-utils │ ├── 0001-Add-missing-definition-of-MTD_CHAR_MAJOR.patch │ ├── 0002-Add-missing-header-include-for-ssize_t.patch │ ├── 0003-Avoid-RSA-type-redefinition.patch │ ├── 0004-Disable-static-futility.patch │ ├── 0005-include-sys-sysmacros.h-for-major.patch │ ├── 0006-Update-for-openssl-1.1.patch │ ├── Config.in.host │ ├── vboot-utils.hash │ └── vboot-utils.mk ├── vde2 │ ├── 0001-no-cxx.patch │ ├── 0002-fstp-Add-static-to-inline-functions.patch │ ├── Config.in │ ├── vde2.hash │ └── vde2.mk ├── vdr-plugin-vnsiserver │ ├── Config.in │ ├── vdr-plugin-vnsiserver.hash │ └── vdr-plugin-vnsiserver.mk ├── vdr │ ├── 0001-libjpeg.patch │ ├── Config.in │ ├── vdr.hash │ └── vdr.mk ├── vim │ ├── Config.in │ ├── vim.hash │ └── vim.mk ├── vlc │ ├── 0001-Disable-building-of-statically-linked-vlc-binary.patch │ ├── 0002-lua-Define-LUA_COMPAT_APIINTCASTS-for-Lua-5.3.0-comp.patch │ ├── 0003-automake-add-subdir-objects-option.patch │ ├── 0004-build-use-pkg-config-to-get-tremor-libs.patch │ ├── 0005-Fix-build-error-using-uClibc-by-adding-sys-types.h.patch │ ├── 0006-Don-t-assume-strerror_l-is-available.patch │ ├── 0007-posix-remove-ancient-run-time-fallback-to-real-time-.patch │ ├── 0008-Add-support-for-freerdp2.patch │ ├── 0009-configure.ac-also-use-AC_PATH_PROG-to-check-for-wayl.patch │ ├── 0010-modules-video_filter-opencv_example.cpp-fix-build-wi.patch │ ├── Config.in │ ├── vlc.hash │ └── vlc.mk ├── vmtouch │ ├── Config.in │ ├── vmtouch.hash │ └── vmtouch.mk ├── vnstat │ ├── Config.in │ ├── vnstat.hash │ └── vnstat.mk ├── vo-aacenc │ ├── Config.in │ ├── vo-aacenc.hash │ └── vo-aacenc.mk ├── vorbis-tools │ ├── 0001-oggenc-Fix-large-alloca-on-bad-AIFF-input.patch │ ├── 0002-oggenc-validate-count-of-channels-in-the-header-CVE-.patch │ ├── 0003-oggenc-fix-crash-on-raw-file-close-reported-by-Hanno.patch │ ├── Config.in │ ├── vorbis-tools.hash │ └── vorbis-tools.mk ├── vpnc │ ├── 0001-Makefile-allow-to-override-the-PREFIX-variable.patch │ ├── 0002-Makefile-allow-to-override-the-version.patch │ ├── 0003-Makefile-allow-passing-custom-CFLAGS-CPPFLAGS.patch │ ├── 0004-Makefile-provide-an-option-to-not-build-manpages.patch │ ├── 0005-Makefile-allow-passing-a-custom-path-to-libgcrypt-co.patch │ ├── 0006-config.c-Replace-deprecated-SUSv3-functions-with-POS.patch │ ├── 0007-sysdep.h-don-t-assume-error.h-is-available-on-all-Li.patch │ ├── 0008-sysdep.c-don-t-include-linux-if_tun.h-on-Linux.patch │ ├── 0009-config.c-add-missing-sys-ttydefaults.h-include.patch │ ├── Config.in │ ├── vpnc.hash │ └── vpnc.mk ├── vsftpd │ ├── 0001-utmpx-builddef.patch │ ├── 0003-fix-CVE-2015-1419.patch │ ├── 0004-Prevent-hang-in-SIGCHLD-handler.patch │ ├── Config.in │ ├── S70vsftpd │ ├── vsftpd.hash │ └── vsftpd.mk ├── vte │ ├── Config.in │ ├── vte.hash │ └── vte.mk ├── vtun │ ├── 0001-fix-installation.patch │ ├── 0002-fix-ssl-headers-checks.patch │ ├── 0003-openssl11.patch │ ├── Config.in │ ├── vtun.hash │ └── vtun.mk ├── w_scan │ ├── 0001-musl.patch │ ├── Config.in │ ├── w_scan.hash │ └── w_scan.mk ├── waf │ ├── waf.hash │ └── waf.mk ├── waffle │ ├── 0001-third_party-threads-Use-PTHREAD_MUTEX_RECURSIVE-by-d.patch │ ├── 0002-cmake-forward-cflags-from-.pc-files-to-waffle-cflags.patch │ ├── Config.in │ ├── waffle.hash │ └── waffle.mk ├── wampcc │ ├── 0001-Add-RISC-V-endian-detection.patch │ ├── Config.in │ ├── wampcc.hash │ └── wampcc.mk ├── wavemon │ ├── Config.in │ ├── wavemon.hash │ └── wavemon.mk ├── wavpack │ ├── Config.in │ ├── wavpack.hash │ └── wavpack.mk ├── wayland-protocols │ ├── Config.in │ ├── wayland-protocols.hash │ └── wayland-protocols.mk ├── wayland │ ├── 0001-configure-add-option-to-disable-tests.patch │ ├── Config.in │ ├── wayland.hash │ └── wayland.mk ├── waylandpp │ ├── 0001-cmake-Make-target_link_options-optional.patch │ ├── Config.in │ ├── waylandpp.hash │ └── waylandpp.mk ├── webkitgtk │ ├── Config.in │ ├── webkitgtk.hash │ └── webkitgtk.mk ├── webp │ ├── Config.in │ ├── webp.hash │ └── webp.mk ├── webrtc-audio-processing │ ├── 0001-Proper-detection-of-cxxabi.h-and-execinfo.h.patch │ ├── Config.in │ ├── webrtc-audio-processing.hash │ └── webrtc-audio-processing.mk ├── websocketpp │ ├── 0001-Replace-make_shared-with-new-in-some-cases.patch │ ├── 0002-Fix-missed-entries-fix-testing.patch │ ├── Config.in │ ├── websocketpp.hash │ └── websocketpp.mk ├── weston-imx │ ├── Config.in │ ├── weston-imx.hash │ └── weston-imx.mk ├── weston │ ├── 0001-unconditionally-include-sys-mman.h-in-os-compatibili.patch │ ├── 0002-shared-guard-all-the-seal-logic-behind-HAVE_MEMFD_CR.patch │ ├── Config.in │ ├── weston.hash │ └── weston.mk ├── wf111 │ ├── Config.in │ ├── wf111.hash │ └── wf111.mk ├── wget │ ├── Config.in │ ├── wget.hash │ └── wget.mk ├── whetstone │ ├── Config.in │ ├── whetstone.hash │ └── whetstone.mk ├── which │ ├── Config.in │ ├── which.hash │ └── which.mk ├── whois │ ├── Config.in │ ├── whois.hash │ └── whois.mk ├── wilc1000-firmware │ ├── Config.in │ ├── wilc1000-firmware.hash │ └── wilc1000-firmware.mk ├── wilink-bt-firmware │ ├── Config.in │ ├── wilink-bt-firmware.hash │ └── wilink-bt-firmware.mk ├── wine │ ├── Config.in │ ├── wine.hash │ └── wine.mk ├── wipe │ ├── 0001-musl.patch │ ├── Config.in │ ├── wipe.hash │ └── wipe.mk ├── wireguard-linux-compat │ ├── Config.in │ ├── wireguard-linux-compat.hash │ └── wireguard-linux-compat.mk ├── wireguard-tools │ ├── Config.in │ ├── wireguard-tools.hash │ └── wireguard-tools.mk ├── wireless-regdb │ ├── Config.in │ ├── wireless-regdb.hash │ └── wireless-regdb.mk ├── wireless_tools │ ├── 0001-remove-bzero.patch │ ├── Config.in │ ├── wireless_tools.hash │ └── wireless_tools.mk ├── wireshark │ ├── Config.in │ ├── wireshark.hash │ └── wireshark.mk ├── wiringpi │ ├── 0001-Adjust-for-buildroot-build.patch │ ├── 0002-wiringPi-wiringSerial-fix-compile-for-missing-baud-d.patch │ ├── Config.in │ ├── wiringpi.hash │ └── wiringpi.mk ├── wmctrl │ ├── Config.in │ ├── wmctrl.hash │ └── wmctrl.mk ├── woff2 │ ├── 0001-CMake-Handle-multiple-libraries-being-returned-for-B.patch │ ├── Config.in │ ├── woff2.hash │ └── woff2.mk ├── wolfssl │ ├── Config.in │ ├── wolfssl.hash │ └── wolfssl.mk ├── wpa_supplicant │ ├── 0001-AP-Silently-ignore-management-frame-from-unexpected-.patch │ ├── 50-wpa_supplicant.preset │ ├── Config.in │ ├── wpa_supplicant.conf │ ├── wpa_supplicant.hash │ └── wpa_supplicant.mk ├── wpan-tools │ ├── Config.in │ ├── wpan-tools.hash │ └── wpan-tools.mk ├── wpebackend-fdo │ ├── Config.in │ ├── wpebackend-fdo.hash │ └── wpebackend-fdo.mk ├── wpewebkit │ ├── 0001-Fix-build-with-musl.patch │ ├── Config.in │ ├── wpewebkit.hash │ └── wpewebkit.mk ├── wsapi-fcgi │ ├── Config.in │ ├── wsapi-fcgi.hash │ └── wsapi-fcgi.mk ├── wsapi-xavante │ ├── Config.in │ ├── wsapi-xavante.hash │ └── wsapi-xavante.mk ├── wsapi │ ├── Config.in │ ├── wsapi.hash │ └── wsapi.mk ├── x11r7 │ ├── Config.in │ ├── libxcb │ │ ├── Config.in │ │ ├── libxcb.hash │ │ └── libxcb.mk │ ├── mcookie │ │ ├── Config.in │ │ ├── mcookie.c │ │ └── mcookie.mk │ ├── x11r7.mk │ ├── xapp_appres │ │ ├── Config.in │ │ ├── xapp_appres.hash │ │ └── xapp_appres.mk │ ├── xapp_bdftopcf │ │ ├── Config.in │ │ ├── xapp_bdftopcf.hash │ │ └── xapp_bdftopcf.mk │ ├── xapp_beforelight │ │ ├── Config.in │ │ ├── xapp_beforelight.hash │ │ └── xapp_beforelight.mk │ ├── xapp_bitmap │ │ ├── Config.in │ │ ├── xapp_bitmap.hash │ │ └── xapp_bitmap.mk │ ├── xapp_editres │ │ ├── Config.in │ │ ├── xapp_editres.hash │ │ └── xapp_editres.mk │ ├── xapp_fonttosfnt │ │ ├── Config.in │ │ ├── xapp_fonttosfnt.hash │ │ └── xapp_fonttosfnt.mk │ ├── xapp_fslsfonts │ │ ├── Config.in │ │ ├── xapp_fslsfonts.hash │ │ └── xapp_fslsfonts.mk │ ├── xapp_fstobdf │ │ ├── Config.in │ │ ├── xapp_fstobdf.hash │ │ └── xapp_fstobdf.mk │ ├── xapp_iceauth │ │ ├── Config.in │ │ ├── xapp_iceauth.hash │ │ └── xapp_iceauth.mk │ ├── xapp_ico │ │ ├── Config.in │ │ ├── xapp_ico.hash │ │ └── xapp_ico.mk │ ├── xapp_listres │ │ ├── Config.in │ │ ├── xapp_listres.hash │ │ └── xapp_listres.mk │ ├── xapp_luit │ │ ├── 0001-posix-openpt.patch │ │ ├── Config.in │ │ ├── xapp_luit.hash │ │ └── xapp_luit.mk │ ├── xapp_mkfontscale │ │ ├── Config.in │ │ ├── xapp_mkfontscale.hash │ │ └── xapp_mkfontscale.mk │ ├── xapp_oclock │ │ ├── Config.in │ │ ├── xapp_oclock.hash │ │ └── xapp_oclock.mk │ ├── xapp_rgb │ │ ├── Config.in │ │ ├── xapp_rgb.hash │ │ └── xapp_rgb.mk │ ├── xapp_rstart │ │ ├── Config.in │ │ ├── xapp_rstart.hash │ │ └── xapp_rstart.mk │ ├── xapp_scripts │ │ ├── Config.in │ │ ├── xapp_scripts.hash │ │ └── xapp_scripts.mk │ ├── xapp_sessreg │ │ ├── Config.in │ │ ├── xapp_sessreg.hash │ │ └── xapp_sessreg.mk │ ├── xapp_setxkbmap │ │ ├── Config.in │ │ ├── xapp_setxkbmap.hash │ │ └── xapp_setxkbmap.mk │ ├── xapp_showfont │ │ ├── Config.in │ │ ├── xapp_showfont.hash │ │ └── xapp_showfont.mk │ ├── xapp_smproxy │ │ ├── Config.in │ │ ├── xapp_smproxy.hash │ │ └── xapp_smproxy.mk │ ├── xapp_twm │ │ ├── Config.in │ │ ├── xapp_twm.hash │ │ └── xapp_twm.mk │ ├── xapp_viewres │ │ ├── Config.in │ │ ├── xapp_viewres.hash │ │ └── xapp_viewres.mk │ ├── xapp_x11perf │ │ ├── Config.in │ │ ├── xapp_x11perf.hash │ │ └── xapp_x11perf.mk │ ├── xapp_xauth │ │ ├── Config.in │ │ ├── xapp_xauth.hash │ │ └── xapp_xauth.mk │ ├── xapp_xbacklight │ │ ├── Config.in │ │ ├── xapp_xbacklight.hash │ │ └── xapp_xbacklight.mk │ ├── xapp_xbiff │ │ ├── Config.in │ │ ├── xapp_xbiff.hash │ │ └── xapp_xbiff.mk │ ├── xapp_xcalc │ │ ├── Config.in │ │ ├── xapp_xcalc.hash │ │ └── xapp_xcalc.mk │ ├── xapp_xclipboard │ │ ├── Config.in │ │ ├── xapp_xclipboard.hash │ │ └── xapp_xclipboard.mk │ ├── xapp_xclock │ │ ├── Config.in │ │ ├── xapp_xclock.hash │ │ └── xapp_xclock.mk │ ├── xapp_xcmsdb │ │ ├── Config.in │ │ ├── xapp_xcmsdb.hash │ │ └── xapp_xcmsdb.mk │ ├── xapp_xcompmgr │ │ ├── Config.in │ │ ├── xapp_xcompmgr.hash │ │ └── xapp_xcompmgr.mk │ ├── xapp_xconsole │ │ ├── Config.in │ │ ├── xapp_xconsole.hash │ │ └── xapp_xconsole.mk │ ├── xapp_xcursorgen │ │ ├── Config.in │ │ ├── xapp_xcursorgen.hash │ │ └── xapp_xcursorgen.mk │ ├── xapp_xdbedizzy │ │ ├── Config.in │ │ ├── xapp_xdbedizzy.hash │ │ └── xapp_xdbedizzy.mk │ ├── xapp_xditview │ │ ├── Config.in │ │ ├── xapp_xditview.hash │ │ └── xapp_xditview.mk │ ├── xapp_xdm │ │ ├── Config.in │ │ ├── S99xdm │ │ ├── xapp_xdm.hash │ │ └── xapp_xdm.mk │ ├── xapp_xdpyinfo │ │ ├── Config.in │ │ ├── xapp_xdpyinfo.hash │ │ └── xapp_xdpyinfo.mk │ ├── xapp_xdriinfo │ │ ├── Config.in │ │ ├── xapp_xdriinfo.hash │ │ └── xapp_xdriinfo.mk │ ├── xapp_xedit │ │ ├── Config.in │ │ ├── xapp_xedit.hash │ │ └── xapp_xedit.mk │ ├── xapp_xev │ │ ├── Config.in │ │ ├── xapp_xev.hash │ │ └── xapp_xev.mk │ ├── xapp_xeyes │ │ ├── Config.in │ │ ├── xapp_xeyes.hash │ │ └── xapp_xeyes.mk │ ├── xapp_xf86dga │ │ ├── Config.in │ │ ├── xapp_xf86dga.hash │ │ └── xapp_xf86dga.mk │ ├── xapp_xfd │ │ ├── Config.in │ │ ├── xapp_xfd.hash │ │ └── xapp_xfd.mk │ ├── xapp_xfindproxy │ │ ├── Config.in │ │ ├── xapp_xfindproxy.hash │ │ └── xapp_xfindproxy.mk │ ├── xapp_xfontsel │ │ ├── Config.in │ │ ├── xapp_xfontsel.hash │ │ └── xapp_xfontsel.mk │ ├── xapp_xfs │ │ ├── Config.in │ │ ├── xapp_xfs.hash │ │ └── xapp_xfs.mk │ ├── xapp_xfsinfo │ │ ├── Config.in │ │ ├── xapp_xfsinfo.hash │ │ └── xapp_xfsinfo.mk │ ├── xapp_xgamma │ │ ├── Config.in │ │ ├── xapp_xgamma.hash │ │ └── xapp_xgamma.mk │ ├── xapp_xgc │ │ ├── Config.in │ │ ├── xapp_xgc.hash │ │ └── xapp_xgc.mk │ ├── xapp_xhost │ │ ├── Config.in │ │ ├── xapp_xhost.hash │ │ └── xapp_xhost.mk │ ├── xapp_xinit │ │ ├── Config.in │ │ ├── xapp_xinit.hash │ │ └── xapp_xinit.mk │ ├── xapp_xinput-calibrator │ │ ├── Config.in │ │ ├── xapp_xinput-calibrator.hash │ │ └── xapp_xinput-calibrator.mk │ ├── xapp_xinput │ │ ├── Config.in │ │ ├── xapp_xinput.hash │ │ └── xapp_xinput.mk │ ├── xapp_xkbcomp │ │ ├── Config.in │ │ ├── xapp_xkbcomp.hash │ │ └── xapp_xkbcomp.mk │ ├── xapp_xkbevd │ │ ├── Config.in │ │ ├── xapp_xkbevd.hash │ │ └── xapp_xkbevd.mk │ ├── xapp_xkbprint │ │ ├── Config.in │ │ ├── xapp_xkbprint.hash │ │ └── xapp_xkbprint.mk │ ├── xapp_xkbutils │ │ ├── Config.in │ │ ├── xapp_xkbutils.hash │ │ └── xapp_xkbutils.mk │ ├── xapp_xkill │ │ ├── Config.in │ │ ├── xapp_xkill.hash │ │ └── xapp_xkill.mk │ ├── xapp_xload │ │ ├── Config.in │ │ ├── xapp_xload.hash │ │ └── xapp_xload.mk │ ├── xapp_xlogo │ │ ├── Config.in │ │ ├── xapp_xlogo.hash │ │ └── xapp_xlogo.mk │ ├── xapp_xlsatoms │ │ ├── Config.in │ │ ├── xapp_xlsatoms.hash │ │ └── xapp_xlsatoms.mk │ ├── xapp_xlsclients │ │ ├── Config.in │ │ ├── xapp_xlsclients.hash │ │ └── xapp_xlsclients.mk │ ├── xapp_xlsfonts │ │ ├── Config.in │ │ ├── xapp_xlsfonts.hash │ │ └── xapp_xlsfonts.mk │ ├── xapp_xmag │ │ ├── Config.in │ │ ├── xapp_xmag.hash │ │ └── xapp_xmag.mk │ ├── xapp_xman │ │ ├── Config.in │ │ ├── xapp_xman.hash │ │ └── xapp_xman.mk │ ├── xapp_xmessage │ │ ├── Config.in │ │ ├── xapp_xmessage.hash │ │ └── xapp_xmessage.mk │ ├── xapp_xmh │ │ ├── Config.in │ │ ├── xapp_xmh.hash │ │ └── xapp_xmh.mk │ ├── xapp_xmodmap │ │ ├── Config.in │ │ ├── xapp_xmodmap.hash │ │ └── xapp_xmodmap.mk │ ├── xapp_xmore │ │ ├── Config.in │ │ ├── xapp_xmore.hash │ │ └── xapp_xmore.mk │ ├── xapp_xpr │ │ ├── Config.in │ │ ├── xapp_xpr.hash │ │ └── xapp_xpr.mk │ ├── xapp_xprop │ │ ├── Config.in │ │ ├── xapp_xprop.hash │ │ └── xapp_xprop.mk │ ├── xapp_xrandr │ │ ├── Config.in │ │ ├── xapp_xrandr.hash │ │ └── xapp_xrandr.mk │ ├── xapp_xrdb │ │ ├── Config.in │ │ ├── xapp_xrdb.hash │ │ └── xapp_xrdb.mk │ ├── xapp_xrefresh │ │ ├── Config.in │ │ ├── xapp_xrefresh.hash │ │ └── xapp_xrefresh.mk │ ├── xapp_xset │ │ ├── Config.in │ │ ├── xapp_xset.hash │ │ └── xapp_xset.mk │ ├── xapp_xsetmode │ │ ├── Config.in │ │ ├── xapp_xsetmode.hash │ │ └── xapp_xsetmode.mk │ ├── xapp_xsetpointer │ │ ├── Config.in │ │ ├── xapp_xsetpointer.hash │ │ └── xapp_xsetpointer.mk │ ├── xapp_xsetroot │ │ ├── Config.in │ │ ├── xapp_xsetroot.hash │ │ └── xapp_xsetroot.mk │ ├── xapp_xsm │ │ ├── Config.in │ │ ├── xapp_xsm.hash │ │ └── xapp_xsm.mk │ ├── xapp_xstdcmap │ │ ├── Config.in │ │ ├── xapp_xstdcmap.hash │ │ └── xapp_xstdcmap.mk │ ├── xapp_xvidtune │ │ ├── Config.in │ │ ├── xapp_xvidtune.hash │ │ └── xapp_xvidtune.mk │ ├── xapp_xvinfo │ │ ├── Config.in │ │ ├── xapp_xvinfo.hash │ │ └── xapp_xvinfo.mk │ ├── xapp_xwd │ │ ├── Config.in │ │ ├── xapp_xwd.hash │ │ └── xapp_xwd.mk │ ├── xapp_xwininfo │ │ ├── Config.in │ │ ├── xapp_xwininfo.hash │ │ └── xapp_xwininfo.mk │ ├── xapp_xwud │ │ ├── Config.in │ │ ├── xapp_xwud.hash │ │ └── xapp_xwud.mk │ ├── xcb-proto │ │ ├── Config.in │ │ ├── xcb-proto.hash │ │ └── xcb-proto.mk │ ├── xcb-util-cursor │ │ ├── Config.in │ │ ├── xcb-util-cursor.hash │ │ └── xcb-util-cursor.mk │ ├── xcb-util-image │ │ ├── Config.in │ │ ├── xcb-util-image.hash │ │ └── xcb-util-image.mk │ ├── xcb-util-keysyms │ │ ├── Config.in │ │ ├── xcb-util-keysyms.hash │ │ └── xcb-util-keysyms.mk │ ├── xcb-util-renderutil │ │ ├── Config.in │ │ ├── xcb-util-renderutil.hash │ │ └── xcb-util-renderutil.mk │ ├── xcb-util-wm │ │ ├── Config.in │ │ ├── xcb-util-wm.hash │ │ └── xcb-util-wm.mk │ ├── xcb-util │ │ ├── Config.in │ │ ├── xcb-util.hash │ │ └── xcb-util.mk │ ├── xcursor-transparent-theme │ │ ├── 0001-fix-symlink.patch │ │ ├── Config.in │ │ ├── index.theme │ │ ├── xcursor-transparent-theme.hash │ │ └── xcursor-transparent-theme.mk │ ├── xdata_xbitmaps │ │ ├── Config.in │ │ ├── xdata_xbitmaps.hash │ │ └── xdata_xbitmaps.mk │ ├── xdata_xcursor-themes │ │ ├── Config.in │ │ ├── xdata_xcursor-themes.hash │ │ └── xdata_xcursor-themes.mk │ ├── xdriver_xf86-input-evdev │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-input-evdev.hash │ │ └── xdriver_xf86-input-evdev.mk │ ├── xdriver_xf86-input-joystick │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ ├── 50-joystick.conf │ │ ├── Config.in │ │ ├── xdriver_xf86-input-joystick.hash │ │ └── xdriver_xf86-input-joystick.mk │ ├── xdriver_xf86-input-keyboard │ │ ├── Config.in │ │ ├── xdriver_xf86-input-keyboard.hash │ │ └── xdriver_xf86-input-keyboard.mk │ ├── xdriver_xf86-input-libinput │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-input-libinput.hash │ │ └── xdriver_xf86-input-libinput.mk │ ├── xdriver_xf86-input-mouse │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-input-mouse.hash │ │ └── xdriver_xf86-input-mouse.mk │ ├── xdriver_xf86-input-synaptics │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-input-synaptics.hash │ │ └── xdriver_xf86-input-synaptics.mk │ ├── xdriver_xf86-input-tslib │ │ ├── Config.in │ │ ├── xdriver_xf86-input-tslib.hash │ │ └── xdriver_xf86-input-tslib.mk │ ├── xdriver_xf86-input-vmmouse │ │ ├── Config.in │ │ ├── xdriver_xf86-input-vmmouse.hash │ │ └── xdriver_xf86-input-vmmouse.mk │ ├── xdriver_xf86-video-amdgpu │ │ ├── Config.in │ │ ├── xdriver_xf86-video-amdgpu.hash │ │ └── xdriver_xf86-video-amdgpu.mk │ ├── xdriver_xf86-video-ark │ │ ├── 0001-mibstore.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-ark.hash │ │ └── xdriver_xf86-video-ark.mk │ ├── xdriver_xf86-video-ast │ │ ├── Config.in │ │ ├── xdriver_xf86-video-ast.hash │ │ └── xdriver_xf86-video-ast.mk │ ├── xdriver_xf86-video-ati │ │ ├── Config.in │ │ ├── xdriver_xf86-video-ati.hash │ │ └── xdriver_xf86-video-ati.mk │ ├── xdriver_xf86-video-cirrus │ │ ├── Config.in │ │ ├── xdriver_xf86-video-cirrus.hash │ │ └── xdriver_xf86-video-cirrus.mk │ ├── xdriver_xf86-video-dummy │ │ ├── Config.in │ │ ├── xdriver_xf86-video-dummy.hash │ │ └── xdriver_xf86-video-dummy.mk │ ├── xdriver_xf86-video-fbdev │ │ ├── Config.in │ │ ├── xdriver_xf86-video-fbdev.hash │ │ └── xdriver_xf86-video-fbdev.mk │ ├── xdriver_xf86-video-fbturbo │ │ ├── 0001-sunxi_x_g2d-drop-unused-dri2-include.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-fbturbo.hash │ │ └── xdriver_xf86-video-fbturbo.mk │ ├── xdriver_xf86-video-geode │ │ ├── 0001-Remove-call-to-LoaderGetOS.patch │ │ ├── 0002-gx-Fix-RANDR-initialization-for-xserver-1.20.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-geode.hash │ │ └── xdriver_xf86-video-geode.mk │ ├── xdriver_xf86-video-glint │ │ ├── Config.in │ │ ├── xdriver_xf86-video-glint.hash │ │ └── xdriver_xf86-video-glint.mk │ ├── xdriver_xf86-video-i128 │ │ ├── Config.in │ │ ├── xdriver_xf86-video-i128.hash │ │ └── xdriver_xf86-video-i128.mk │ ├── xdriver_xf86-video-imx-viv │ │ ├── Config.in │ │ ├── xdriver_xf86-video-imx-viv.hash │ │ └── xdriver_xf86-video-imx-viv.mk │ ├── xdriver_xf86-video-imx │ │ ├── 0001-Update-to-newer-swap-macros.patch │ │ ├── 0002-Fix-error-unknown-type-name-uint.patch │ │ ├── 0003-support-glibc-2.20.patch │ │ ├── 0004-Make-video-API-forward-and-backward-compatible.patch │ │ ├── 0005-xf86-video-imxfb-fix-m4-hardcodded-paths.patch │ │ ├── 0006-xserver-1.14-compat.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-imx.hash │ │ └── xdriver_xf86-video-imx.mk │ ├── xdriver_xf86-video-intel │ │ ├── Config.in │ │ ├── xdriver_xf86-video-intel.hash │ │ └── xdriver_xf86-video-intel.mk │ ├── xdriver_xf86-video-mach64 │ │ ├── 0001-cross-compile.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-mach64.hash │ │ └── xdriver_xf86-video-mach64.mk │ ├── xdriver_xf86-video-mga │ │ ├── 0001-misc-fixes.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-mga.hash │ │ └── xdriver_xf86-video-mga.mk │ ├── xdriver_xf86-video-neomagic │ │ ├── Config.in │ │ ├── xdriver_xf86-video-neomagic.hash │ │ └── xdriver_xf86-video-neomagic.mk │ ├── xdriver_xf86-video-nouveau │ │ ├── Config.in │ │ ├── xdriver_xf86-video-nouveau.hash │ │ └── xdriver_xf86-video-nouveau.mk │ ├── xdriver_xf86-video-nv │ │ ├── Config.in │ │ ├── xdriver_xf86-video-nv.hash │ │ └── xdriver_xf86-video-nv.mk │ ├── xdriver_xf86-video-openchrome │ │ ├── Config.in │ │ ├── xdriver_xf86-video-openchrome.hash │ │ └── xdriver_xf86-video-openchrome.mk │ ├── xdriver_xf86-video-qxl │ │ ├── Config.in │ │ ├── xdriver_xf86-video-qxl.hash │ │ └── xdriver_xf86-video-qxl.mk │ ├── xdriver_xf86-video-r128 │ │ ├── Config.in │ │ ├── xdriver_xf86-video-r128.hash │ │ └── xdriver_xf86-video-r128.mk │ ├── xdriver_xf86-video-savage │ │ ├── 0001-cross-compile.patch │ │ ├── 0002-xorg-xserver120.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-savage.hash │ │ └── xdriver_xf86-video-savage.mk │ ├── xdriver_xf86-video-siliconmotion │ │ ├── Config.in │ │ ├── xdriver_xf86-video-siliconmotion.hash │ │ └── xdriver_xf86-video-siliconmotion.mk │ ├── xdriver_xf86-video-sis │ │ ├── Config.in │ │ ├── xdriver_xf86-video-sis.hash │ │ └── xdriver_xf86-video-sis.mk │ ├── xdriver_xf86-video-tdfx │ │ ├── 0001-cross.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-tdfx.hash │ │ └── xdriver_xf86-video-tdfx.mk │ ├── xdriver_xf86-video-tga │ │ ├── 0001-mibstore.patch │ │ ├── Config.in │ │ ├── xdriver_xf86-video-tga.hash │ │ └── xdriver_xf86-video-tga.mk │ ├── xdriver_xf86-video-trident │ │ ├── Config.in │ │ ├── xdriver_xf86-video-trident.hash │ │ └── xdriver_xf86-video-trident.mk │ ├── xdriver_xf86-video-vesa │ │ ├── Config.in │ │ ├── xdriver_xf86-video-vesa.hash │ │ └── xdriver_xf86-video-vesa.mk │ ├── xdriver_xf86-video-vmware │ │ ├── Config.in │ │ ├── xdriver_xf86-video-vmware.hash │ │ └── xdriver_xf86-video-vmware.mk │ ├── xdriver_xf86-video-voodoo │ │ ├── Config.in │ │ └── xdriver_xf86-video-voodoo.mk │ ├── xfont_encodings │ │ ├── Config.in │ │ ├── xfont_encodings.hash │ │ └── xfont_encodings.mk │ ├── xfont_font-adobe-100dpi │ │ ├── Config.in │ │ ├── xfont_font-adobe-100dpi.hash │ │ └── xfont_font-adobe-100dpi.mk │ ├── xfont_font-adobe-75dpi │ │ ├── Config.in │ │ ├── xfont_font-adobe-75dpi.hash │ │ └── xfont_font-adobe-75dpi.mk │ ├── xfont_font-adobe-utopia-100dpi │ │ ├── Config.in │ │ ├── xfont_font-adobe-utopia-100dpi.hash │ │ └── xfont_font-adobe-utopia-100dpi.mk │ ├── xfont_font-adobe-utopia-75dpi │ │ ├── Config.in │ │ ├── xfont_font-adobe-utopia-75dpi.hash │ │ └── xfont_font-adobe-utopia-75dpi.mk │ ├── xfont_font-adobe-utopia-type1 │ │ ├── Config.in │ │ ├── xfont_font-adobe-utopia-type1.hash │ │ └── xfont_font-adobe-utopia-type1.mk │ ├── xfont_font-alias │ │ ├── Config.in │ │ ├── xfont_font-alias.hash │ │ └── xfont_font-alias.mk │ ├── xfont_font-arabic-misc │ │ ├── Config.in │ │ ├── xfont_font-arabic-misc.hash │ │ └── xfont_font-arabic-misc.mk │ ├── xfont_font-bh-100dpi │ │ ├── Config.in │ │ ├── xfont_font-bh-100dpi.hash │ │ └── xfont_font-bh-100dpi.mk │ ├── xfont_font-bh-75dpi │ │ ├── Config.in │ │ ├── xfont_font-bh-75dpi.hash │ │ └── xfont_font-bh-75dpi.mk │ ├── xfont_font-bh-lucidatypewriter-100dpi │ │ ├── Config.in │ │ ├── xfont_font-bh-lucidatypewriter-100dpi.hash │ │ └── xfont_font-bh-lucidatypewriter-100dpi.mk │ ├── xfont_font-bh-lucidatypewriter-75dpi │ │ ├── Config.in │ │ ├── xfont_font-bh-lucidatypewriter-75dpi.hash │ │ └── xfont_font-bh-lucidatypewriter-75dpi.mk │ ├── xfont_font-bh-ttf │ │ ├── Config.in │ │ ├── xfont_font-bh-ttf.hash │ │ └── xfont_font-bh-ttf.mk │ ├── xfont_font-bh-type1 │ │ ├── Config.in │ │ ├── xfont_font-bh-type1.hash │ │ └── xfont_font-bh-type1.mk │ ├── xfont_font-bitstream-100dpi │ │ ├── Config.in │ │ ├── xfont_font-bitstream-100dpi.hash │ │ └── xfont_font-bitstream-100dpi.mk │ ├── xfont_font-bitstream-75dpi │ │ ├── Config.in │ │ ├── xfont_font-bitstream-75dpi.hash │ │ └── xfont_font-bitstream-75dpi.mk │ ├── xfont_font-bitstream-type1 │ │ ├── Config.in │ │ ├── xfont_font-bitstream-type1.hash │ │ └── xfont_font-bitstream-type1.mk │ ├── xfont_font-cronyx-cyrillic │ │ ├── Config.in │ │ ├── xfont_font-cronyx-cyrillic.hash │ │ └── xfont_font-cronyx-cyrillic.mk │ ├── xfont_font-cursor-misc │ │ ├── Config.in │ │ ├── xfont_font-cursor-misc.hash │ │ └── xfont_font-cursor-misc.mk │ ├── xfont_font-daewoo-misc │ │ ├── Config.in │ │ ├── xfont_font-daewoo-misc.hash │ │ └── xfont_font-daewoo-misc.mk │ ├── xfont_font-dec-misc │ │ ├── Config.in │ │ ├── xfont_font-dec-misc.hash │ │ └── xfont_font-dec-misc.mk │ ├── xfont_font-ibm-type1 │ │ ├── Config.in │ │ ├── xfont_font-ibm-type1.hash │ │ └── xfont_font-ibm-type1.mk │ ├── xfont_font-isas-misc │ │ ├── Config.in │ │ ├── xfont_font-isas-misc.hash │ │ └── xfont_font-isas-misc.mk │ ├── xfont_font-jis-misc │ │ ├── Config.in │ │ ├── xfont_font-jis-misc.hash │ │ └── xfont_font-jis-misc.mk │ ├── xfont_font-micro-misc │ │ ├── Config.in │ │ ├── xfont_font-micro-misc.hash │ │ └── xfont_font-micro-misc.mk │ ├── xfont_font-misc-cyrillic │ │ ├── Config.in │ │ ├── xfont_font-misc-cyrillic.hash │ │ └── xfont_font-misc-cyrillic.mk │ ├── xfont_font-misc-ethiopic │ │ ├── Config.in │ │ ├── xfont_font-misc-ethiopic.hash │ │ └── xfont_font-misc-ethiopic.mk │ ├── xfont_font-misc-meltho │ │ ├── Config.in │ │ ├── xfont_font-misc-meltho.hash │ │ └── xfont_font-misc-meltho.mk │ ├── xfont_font-misc-misc │ │ ├── Config.in │ │ ├── xfont_font-misc-misc.hash │ │ └── xfont_font-misc-misc.mk │ ├── xfont_font-mutt-misc │ │ ├── Config.in │ │ ├── xfont_font-mutt-misc.hash │ │ └── xfont_font-mutt-misc.mk │ ├── xfont_font-schumacher-misc │ │ ├── Config.in │ │ ├── xfont_font-schumacher-misc.hash │ │ └── xfont_font-schumacher-misc.mk │ ├── xfont_font-screen-cyrillic │ │ ├── Config.in │ │ ├── xfont_font-screen-cyrillic.hash │ │ └── xfont_font-screen-cyrillic.mk │ ├── xfont_font-sony-misc │ │ ├── Config.in │ │ ├── xfont_font-sony-misc.hash │ │ └── xfont_font-sony-misc.mk │ ├── xfont_font-sun-misc │ │ ├── Config.in │ │ ├── xfont_font-sun-misc.hash │ │ └── xfont_font-sun-misc.mk │ ├── xfont_font-util │ │ ├── Config.in │ │ ├── xfont_font-util.hash │ │ └── xfont_font-util.mk │ ├── xfont_font-winitzki-cyrillic │ │ ├── Config.in │ │ ├── xfont_font-winitzki-cyrillic.hash │ │ └── xfont_font-winitzki-cyrillic.mk │ ├── xfont_font-xfree86-type1 │ │ ├── Config.in │ │ ├── xfont_font-xfree86-type1.hash │ │ └── xfont_font-xfree86-type1.mk │ ├── xkeyboard-config │ │ ├── Config.in │ │ ├── xkeyboard-config.hash │ │ └── xkeyboard-config.mk │ ├── xlib_libFS │ │ ├── Config.in │ │ ├── xlib_libFS.hash │ │ └── xlib_libFS.mk │ ├── xlib_libICE │ │ ├── Config.in │ │ ├── xlib_libICE.hash │ │ └── xlib_libICE.mk │ ├── xlib_libSM │ │ ├── Config.in │ │ ├── xlib_libSM.hash │ │ └── xlib_libSM.mk │ ├── xlib_libX11 │ │ ├── Config.in │ │ ├── xlib_libX11.hash │ │ └── xlib_libX11.mk │ ├── xlib_libXScrnSaver │ │ ├── Config.in │ │ ├── xlib_libXScrnSaver.hash │ │ └── xlib_libXScrnSaver.mk │ ├── xlib_libXau │ │ ├── Config.in │ │ ├── xlib_libXau.hash │ │ └── xlib_libXau.mk │ ├── xlib_libXaw │ │ ├── Config.in │ │ ├── xlib_libXaw.hash │ │ └── xlib_libXaw.mk │ ├── xlib_libXcomposite │ │ ├── Config.in │ │ ├── xlib_libXcomposite.hash │ │ └── xlib_libXcomposite.mk │ ├── xlib_libXcursor │ │ ├── Config.in │ │ ├── xlib_libXcursor.hash │ │ └── xlib_libXcursor.mk │ ├── xlib_libXdamage │ │ ├── Config.in │ │ ├── xlib_libXdamage.hash │ │ └── xlib_libXdamage.mk │ ├── xlib_libXdmcp │ │ ├── Config.in │ │ ├── xlib_libXdmcp.hash │ │ └── xlib_libXdmcp.mk │ ├── xlib_libXext │ │ ├── Config.in │ │ ├── xlib_libXext.hash │ │ └── xlib_libXext.mk │ ├── xlib_libXfixes │ │ ├── Config.in │ │ ├── xlib_libXfixes.hash │ │ └── xlib_libXfixes.mk │ ├── xlib_libXfont │ │ ├── Config.in │ │ ├── xlib_libXfont.hash │ │ └── xlib_libXfont.mk │ ├── xlib_libXfont2 │ │ ├── 0001-configure-define-HAVE_LIBBSD-when-libbsd-was-found.patch │ │ ├── Config.in │ │ ├── xlib_libXfont2.hash │ │ └── xlib_libXfont2.mk │ ├── xlib_libXft │ │ ├── Config.in │ │ ├── xlib_libXft.hash │ │ └── xlib_libXft.mk │ ├── xlib_libXi │ │ ├── Config.in │ │ ├── xlib_libXi.hash │ │ └── xlib_libXi.mk │ ├── xlib_libXinerama │ │ ├── Config.in │ │ ├── xlib_libXinerama.hash │ │ └── xlib_libXinerama.mk │ ├── xlib_libXmu │ │ ├── Config.in │ │ ├── xlib_libXmu.hash │ │ └── xlib_libXmu.mk │ ├── xlib_libXpm │ │ ├── Config.in │ │ ├── xlib_libXpm.hash │ │ └── xlib_libXpm.mk │ ├── xlib_libXrandr │ │ ├── Config.in │ │ ├── xlib_libXrandr.hash │ │ └── xlib_libXrandr.mk │ ├── xlib_libXrender │ │ ├── Config.in │ │ ├── xlib_libXrender.hash │ │ └── xlib_libXrender.mk │ ├── xlib_libXres │ │ ├── Config.in │ │ ├── xlib_libXres.hash │ │ └── xlib_libXres.mk │ ├── xlib_libXt │ │ ├── Config.in │ │ ├── xlib_libXt.hash │ │ └── xlib_libXt.mk │ ├── xlib_libXtst │ │ ├── Config.in │ │ ├── xlib_libXtst.hash │ │ └── xlib_libXtst.mk │ ├── xlib_libXv │ │ ├── Config.in │ │ ├── xlib_libXv.hash │ │ └── xlib_libXv.mk │ ├── xlib_libXvMC │ │ ├── Config.in │ │ ├── xlib_libXvMC.hash │ │ └── xlib_libXvMC.mk │ ├── xlib_libXxf86dga │ │ ├── Config.in │ │ ├── xlib_libXxf86dga.hash │ │ └── xlib_libXxf86dga.mk │ ├── xlib_libXxf86vm │ │ ├── Config.in │ │ ├── xlib_libXxf86vm.hash │ │ └── xlib_libXxf86vm.mk │ ├── xlib_libdmx │ │ ├── Config.in │ │ ├── xlib_libdmx.hash │ │ └── xlib_libdmx.mk │ ├── xlib_libfontenc │ │ ├── Config.in │ │ ├── xlib_libfontenc.hash │ │ └── xlib_libfontenc.mk │ ├── xlib_libxkbfile │ │ ├── Config.in │ │ ├── xlib_libxkbfile.hash │ │ └── xlib_libxkbfile.mk │ ├── xlib_libxshmfence │ │ ├── Config.in │ │ ├── xlib_libxshmfence.hash │ │ └── xlib_libxshmfence.mk │ ├── xlib_xtrans │ │ ├── Config.in │ │ ├── xlib_xtrans.hash │ │ └── xlib_xtrans.mk │ ├── xorgproto │ │ ├── Config.in │ │ ├── xorgproto.hash │ │ └── xorgproto.mk │ ├── xserver_xorg-server │ │ ├── 1.14.7 │ │ │ ├── 0001-sdksyms-gcc5.patch │ │ │ ├── 0002-Xi-Zero-target-buffer-in-SProcXSendExtensionEvent.patch │ │ │ ├── 0003-dix-Disallow-GenericEvent-in-SendEvent-request.patch │ │ │ ├── 0004-Xi-Verify-all-events-in-ProcXSendExtensionEvent.patch │ │ │ └── 0005-Xi-Do-not-try-to-swap-GenericEvent.patch │ │ ├── 1.17.4 │ │ │ ├── 0001-modesettings-needs-dri2.patch │ │ │ ├── 0002-Xi-Zero-target-buffer-in-SProcXSendExtensionEvent.patch │ │ │ ├── 0003-dix-Disallow-GenericEvent-in-SendEvent-request.patch │ │ │ ├── 0004-Xi-Verify-all-events-in-ProcXSendExtensionEvent.patch │ │ │ └── 0005-Xi-Do-not-try-to-swap-GenericEvent.patch │ │ ├── 1.20.8 │ │ │ ├── 0001-modesettings-needs-dri2.patch │ │ │ ├── 0002-configure.ac-Fix-check-for-CLOCK_MONOTONIC.patch │ │ │ ├── 0003-Remove-check-for-useSIGIO-option.patch │ │ │ ├── 0004-include-misc.h-fix-uClibc-build.patch │ │ │ ├── 0005-hw-xwayland-Makefile.am-fix-build-without-glx.patch │ │ │ └── 0006-hw-xfree86-common-xf86Init.c-fix-build-without-glx.patch │ │ ├── Config.in │ │ ├── S40xorg │ │ ├── xserver_xorg-server.hash │ │ └── xserver_xorg-server.mk │ └── xutil_makedepend │ │ ├── Config.in │ │ ├── xutil_makedepend.hash │ │ └── xutil_makedepend.mk ├── x11vnc │ ├── Config.in │ ├── x11vnc.hash │ └── x11vnc.mk ├── x264 │ ├── Config.in │ ├── x264.hash │ └── x264.mk ├── x265 │ ├── 0001-fix-gcc-options.patch │ ├── 0002-arm-asm-primitives.patch │ ├── Config.in │ ├── x265.hash │ └── x265.mk ├── xapian │ ├── Config.in │ ├── xapian.hash │ └── xapian.mk ├── xavante │ ├── Config.in │ ├── xavante.hash │ └── xavante.mk ├── xdg-dbus-proxy │ ├── 0001-Fix-musl-compilation-by-adding-TEMP_FAILURE_RETRY.patch │ ├── Config.in │ ├── xdg-dbus-proxy.hash │ └── xdg-dbus-proxy.mk ├── xdotool │ ├── Config.in │ ├── xdotool.hash │ └── xdotool.mk ├── xen │ ├── 0001-xen-Rules.mk-fix-build-with-CFLAGS-from-environment.patch │ ├── 0002-9pfs-include-linux-limits.h-for-XATTR_SIZE_MAX.patch │ ├── Config.in │ ├── xen.hash │ └── xen.mk ├── xenomai │ ├── Config.in │ ├── xenomai.hash │ └── xenomai.mk ├── xerces │ ├── 0001-cmake-Allow-thread-checks-to-fail-and-fall-back-to-nothreads.patch │ ├── 0002-fix-static-linking-with-curl.patch │ ├── Config.in │ ├── xerces.hash │ └── xerces.mk ├── xfsprogs │ ├── 0001-mdrestore-do-not-do-dynamic-linking-of-libtool-libra.patch │ ├── 0002-libxfs-do-not-try-to-run-the-crc32selftest.patch │ ├── Config.in │ ├── xfsprogs.hash │ └── xfsprogs.mk ├── xinetd │ ├── 0001-ar.patch │ ├── 0002-destdir.patch │ ├── 0003-rpc-fix.patch │ ├── 0004-configure-rlim_t.patch │ ├── Config.in │ ├── xinetd.hash │ └── xinetd.mk ├── xl2tp │ ├── Config.in │ ├── xl2tp.hash │ ├── xl2tp.mk │ └── xl2tpd ├── xmlstarlet │ ├── Config.in │ ├── xmlstarlet.hash │ └── xmlstarlet.mk ├── xorriso │ ├── Config.in │ ├── Config.in.host │ ├── xorriso.hash │ └── xorriso.mk ├── xr819-xradio │ ├── Config.in │ ├── xr819-xradio.hash │ └── xr819-xradio.mk ├── xscreensaver │ ├── Config.in │ ├── xscreensaver.hash │ └── xscreensaver.mk ├── xtables-addons │ ├── Config.in │ ├── xtables-addons.hash │ └── xtables-addons.mk ├── xterm │ ├── Config.in │ ├── xterm.hash │ └── xterm.mk ├── xutil_util-macros │ ├── Config.in │ ├── xutil_util-macros.hash │ └── xutil_util-macros.mk ├── xvisor │ ├── 0001-MAKEFILE-Unconditionally-disable-SSP.patch │ ├── Config.in │ ├── xvisor.hash │ └── xvisor.mk ├── xvkbd │ ├── 0001-Makefile-am-fix-install-data-hook.patch │ ├── Config.in │ ├── xvkbd.hash │ └── xvkbd.mk ├── xxhash │ ├── Config.in │ ├── xxhash.hash │ └── xxhash.mk ├── xz │ ├── Config.in │ ├── xz.hash │ └── xz.mk ├── yad │ ├── Config.in │ ├── yad.hash │ └── yad.mk ├── yaffs2utils │ ├── yaffs2utils.hash │ └── yaffs2utils.mk ├── yajl │ ├── 0001-Let-the-shared-and-the-static-library-have-the-same-.patch │ ├── 0002-cmake-disable-shared-library-build-when-BUILD_SHARED.patch │ ├── 0003-Link-with-shared-libyajl-in-a-shared-build.patch │ ├── 0004-Link-libyajl-_s-with-libm-when-isnan-is-not-brought-.patch │ ├── Config.in │ ├── yajl.hash │ └── yajl.mk ├── yaml-cpp │ ├── Config.in │ ├── yaml-cpp.hash │ └── yaml-cpp.mk ├── yasm │ ├── Config.in │ ├── yasm.hash │ └── yasm.mk ├── yavta │ ├── Config.in │ └── yavta.mk ├── ympd │ ├── 0002-only-c-language.patch │ ├── Config.in │ ├── ympd.hash │ └── ympd.mk ├── ytree │ ├── 0001-fix-musl.patch │ ├── Config.in │ ├── ytree.hash │ └── ytree.mk ├── zbar │ ├── Config.in │ ├── zbar.hash │ └── zbar.mk ├── zd1211-firmware │ ├── Config.in │ ├── zd1211-firmware.hash │ └── zd1211-firmware.mk ├── zeromq │ ├── 0001-acinclude.m4-add-latomic-to-PKGCFG_LIBS_PRIVATE.patch │ ├── Config.in │ ├── zeromq.hash │ └── zeromq.mk ├── zic │ ├── 0001-remove-dependency-check-on-version-file.patch │ ├── zic.hash │ └── zic.mk ├── zip │ ├── 0001-configure-Remove-Check-C-compiler-type-optimization-.patch │ ├── 0002-configure-Don-t-use-host-CPP.patch │ ├── 0003-Makefile-Use-CFLAGS-from-command-line.patch │ ├── 0004-configure-use-LDFLAGS-from-command-line.patch │ ├── 0005-unix-configure-remove-GID-UID-size-check.patch │ ├── 0006-unix-configure-borrow-the-LFS-test-from-autotools.patch │ ├── 0007-timezone.c-needs-time.h-fixes-musl-compile.patch │ ├── Config.in │ ├── Config.in.host │ ├── zip.hash │ └── zip.mk ├── zisofs-tools │ ├── zisofs-tools.hash │ └── zisofs-tools.mk ├── zlib-ng │ ├── zlib-ng.hash │ └── zlib-ng.mk ├── zlib │ ├── Config.in │ └── zlib.mk ├── zlog │ ├── Config.in │ ├── zlog.hash │ └── zlog.mk ├── zmqpp │ ├── 0001-Allow-building-shared-or-static-library-only.patch │ ├── Config.in │ ├── zmqpp.hash │ └── zmqpp.mk ├── znc │ ├── Config.in │ ├── znc.hash │ └── znc.mk ├── zsh │ ├── Config.in │ ├── zsh.hash │ └── zsh.mk ├── zstd │ ├── Config.in │ ├── Config.in.host │ ├── zstd.hash │ └── zstd.mk ├── zxing-cpp │ ├── 0001-Link-library-with-OpenCV-make-libs-private-not-exported-to-the-users.patch │ ├── 0002-CMakeLists-txt-add-BUILD_OPENCV-option.patch │ ├── Config.in │ ├── zxing-cpp.hash │ └── zxing-cpp.mk ├── zynq-boot-bin │ ├── zynq-boot-bin.hash │ └── zynq-boot-bin.mk ├── zyre │ ├── Config.in │ ├── zyre.hash │ └── zyre.mk └── zziplib │ ├── 0001-Avoid-memory-leak-from-__zzip_parse_root_directory.patch │ ├── 0002-Avoid-memory-leak-from-__zzip_parse_root_directory-2.patch │ ├── 0003-One-more-free-to-avoid-memory-leak.patch │ ├── 0004-Fix-issue-62-Remove-any-components-from-pathnames-of-extracte.patch │ ├── Config.in │ ├── zziplib.hash │ └── zziplib.mk ├── support ├── config-fragments │ ├── autobuild │ │ ├── andes-nds32.config │ │ ├── arm-aarch64.config │ │ ├── br-aarch64-glibc.config │ │ ├── br-arc-full-internal.config │ │ ├── br-arc-internal-glibc.config │ │ ├── br-arcle-hs38.config │ │ ├── br-arm-basic.config │ │ ├── br-arm-cortex-a9-glibc.config │ │ ├── br-arm-cortex-a9-musl.config │ │ ├── br-arm-cortex-m4-full.config │ │ ├── br-arm-full-nothread.config │ │ ├── br-arm-full-static.config │ │ ├── br-arm-full.config │ │ ├── br-arm-internal-full.config │ │ ├── br-arm-internal-glibc.config │ │ ├── br-arm-internal-musl.config │ │ ├── br-i386-pentium-mmx-musl.config │ │ ├── br-i386-pentium4-full.config │ │ ├── br-m68k-5208-full.config │ │ ├── br-m68k-68040-full.config │ │ ├── br-microblazeel-full-internal.config │ │ ├── br-microblazeel-full.config │ │ ├── br-mips32r6-el-hf-glibc.config │ │ ├── br-mips64-n64-full.config │ │ ├── br-mips64r6-el-hf-glibc.config │ │ ├── br-mipsel-o32-full.config │ │ ├── br-nios2-glibc.config │ │ ├── br-openrisc-uclibc.config │ │ ├── br-powerpc-603e-basic-cpp.config │ │ ├── br-powerpc-e500mc-full.config │ │ ├── br-powerpc-internal-full.config │ │ ├── br-powerpc64-power7-glibc.config │ │ ├── br-powerpc64le-power8-glibc.config │ │ ├── br-riscv32.config │ │ ├── br-riscv64-internal-musl.config │ │ ├── br-riscv64.config │ │ ├── br-sh4-full.config │ │ ├── br-sparc-uclibc.config │ │ ├── br-sparc64-glibc.config │ │ ├── br-x86-64-core2-full.config │ │ ├── br-x86-64-musl.config │ │ ├── br-xtensa-full-internal.config │ │ ├── br-xtensa-full.config │ │ ├── linaro-aarch64-be.config │ │ ├── linaro-aarch64.config │ │ ├── linaro-arm.config │ │ ├── sourcery-arm-armv4t.config │ │ ├── sourcery-arm-thumb2.config │ │ ├── sourcery-arm.config │ │ ├── sourcery-mips.config │ │ ├── sourcery-mips64.config │ │ ├── sourcery-nios2.config │ │ ├── sourcery-x86-64.config │ │ └── toolchain-configs.csv │ └── minimal.config ├── dependencies │ ├── check-host-asciidoc.sh │ ├── check-host-bison-flex.mk │ ├── check-host-cmake.mk │ ├── check-host-cmake.sh │ ├── check-host-coreutils.mk │ ├── check-host-coreutils.sh │ ├── check-host-gzip.mk │ ├── check-host-gzip.sh │ ├── check-host-lzip.mk │ ├── check-host-lzip.sh │ ├── check-host-make.mk │ ├── check-host-make.sh │ ├── check-host-python3.mk │ ├── check-host-python3.sh │ ├── check-host-tar.mk │ ├── check-host-tar.sh │ ├── check-host-xzcat.mk │ ├── check-host-xzcat.sh │ ├── dependencies.mk │ └── dependencies.sh ├── docker │ ├── Dockerfile │ └── apt-sources.list ├── download │ ├── bzr │ ├── check-hash │ ├── cvs │ ├── dl-wrapper │ ├── file │ ├── git │ ├── hg │ ├── scp │ ├── svn │ └── wget ├── gnuconfig │ ├── README.buildroot │ ├── config.guess │ └── config.sub ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── Makefile.br │ ├── POTFILES.in │ ├── README.buildroot │ ├── check.sh │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── foo.h │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kconf_id.c │ ├── kxgettext.c │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── BIG.FAT.WARNING │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── merge_config.sh │ ├── nconf.c │ ├── nconf.gui.c │ ├── nconf.h │ ├── patches │ │ ├── 01-kconfig-kernel-to-buildroot.patch │ │ ├── 06-br-build-system-integration.patch │ │ ├── 10-br-build-system.patch │ │ ├── 11-use-mktemp-for-lxdialog.patch │ │ ├── 12-fix-glade-file-path.patch │ │ ├── 14-support-out-of-tree-config.patch │ │ ├── 16-fix-space-to-de-select-options.patch │ │ ├── 17-backport-kecho.patch │ │ ├── 18-merge-config.sh-create-temporary-files-in-tmp.patch │ │ ├── 19-merge_config.sh-add-br2-external-support.patch │ │ ├── 20-merge_config.sh-Allow-to-define-config-prefix.patch │ │ ├── 21-Avoid-false-positive-matches-from-comment-lines.patch │ │ └── series │ ├── qconf.cc │ ├── qconf.h │ ├── streamline_config.pl │ ├── symbol.c │ ├── util.c │ ├── zconf.l │ ├── zconf.lex.c_shipped │ ├── zconf.tab.c_shipped │ └── zconf.y ├── legal-info │ ├── README.header │ ├── README.warnings-header │ └── buildroot.hash ├── libtool │ ├── buildroot-libtool-v1.5.patch │ ├── buildroot-libtool-v2.2.patch │ ├── buildroot-libtool-v2.4.4.patch │ └── buildroot-libtool-v2.4.patch ├── misc │ ├── Buildroot.cmake │ ├── Vagrantfile │ ├── relocate-sdk.sh │ ├── target-dir-warning.txt │ ├── toolchainfile.cmake.in │ └── utils.mk ├── scripts │ ├── apply-patches.sh │ ├── br2-external │ ├── brpkgutil.py │ ├── check-bin-arch │ ├── check-host-rpath │ ├── check-kernel-headers.sh │ ├── check-merged-usr.sh │ ├── eclipse-register-toolchain │ ├── expunge-gconv-modules │ ├── fix-configure-powerpc64.sh │ ├── fix-rpath │ ├── generate-gitlab-ci-yml │ ├── genimage.sh │ ├── graph-build-time │ ├── graph-depends │ ├── hardlink-or-copy │ ├── mkmakefile │ ├── mkusers │ ├── pkg-stats │ ├── pycompile.py │ ├── setlocalversion │ └── size-stats └── testing │ ├── conf │ ├── binfmt-misc-kernel-fragment.config │ ├── docker-compose-kernel.config │ ├── docker-compose.yml │ ├── f2fs-kernel-fragment.config │ ├── grub2.cfg │ ├── isolinux.cfg │ ├── minimal-x86-qemu-kernel.config │ └── unittest.cfg │ ├── infra │ ├── __init__.py │ ├── basetest.py │ ├── builder.py │ └── emulator.py │ ├── run-tests │ └── tests │ ├── __init__.py │ ├── boot │ ├── __init__.py │ └── test_atf.py │ ├── core │ ├── __init__.py │ ├── device_table2.txt │ ├── post-build.sh │ ├── post-fakeroot.sh │ ├── post-image.sh │ ├── rootfs-overlay1 │ │ └── test-file1 │ ├── rootfs-overlay2 │ │ └── etc │ │ │ └── test-file2 │ ├── squashfs-xattr-kernel.config │ ├── test_file_capabilities.py │ ├── test_hardening.py │ ├── test_post_scripts.py │ ├── test_root_password.py │ ├── test_rootfs_overlay.py │ └── test_timezone.py │ ├── download │ ├── __init__.py │ ├── br2-external │ │ ├── git-hash │ │ │ ├── Config.in │ │ │ ├── external.desc │ │ │ ├── external.mk │ │ │ └── package │ │ │ │ ├── bad │ │ │ │ ├── bad.hash │ │ │ │ └── bad.mk │ │ │ │ ├── good │ │ │ │ ├── good.hash │ │ │ │ └── good.mk │ │ │ │ └── nohash │ │ │ │ └── nohash.mk │ │ └── git-refs │ │ │ ├── Config.in │ │ │ ├── external.desc │ │ │ ├── external.mk │ │ │ └── package │ │ │ ├── git-partial-sha1-branch-head │ │ │ ├── git-partial-sha1-branch-head.hash │ │ │ └── git-partial-sha1-branch-head.mk │ │ │ ├── git-partial-sha1-reachable-by-branch │ │ │ ├── git-partial-sha1-reachable-by-branch.hash │ │ │ └── git-partial-sha1-reachable-by-branch.mk │ │ │ ├── git-partial-sha1-reachable-by-tag │ │ │ ├── git-partial-sha1-reachable-by-tag.hash │ │ │ └── git-partial-sha1-reachable-by-tag.mk │ │ │ ├── git-partial-sha1-tag-itself │ │ │ ├── git-partial-sha1-tag-itself.hash │ │ │ └── git-partial-sha1-tag-itself.mk │ │ │ ├── git-partial-sha1-tag-points-to │ │ │ ├── git-partial-sha1-tag-points-to.hash │ │ │ └── git-partial-sha1-tag-points-to.mk │ │ │ ├── git-sha1-branch-head │ │ │ ├── git-sha1-branch-head.hash │ │ │ └── git-sha1-branch-head.mk │ │ │ ├── git-sha1-reachable-by-branch │ │ │ ├── git-sha1-reachable-by-branch.hash │ │ │ └── git-sha1-reachable-by-branch.mk │ │ │ ├── git-sha1-reachable-by-tag │ │ │ ├── git-sha1-reachable-by-tag.hash │ │ │ └── git-sha1-reachable-by-tag.mk │ │ │ ├── git-sha1-tag-itself │ │ │ ├── git-sha1-tag-itself.hash │ │ │ └── git-sha1-tag-itself.mk │ │ │ ├── git-sha1-tag-points-to │ │ │ ├── git-sha1-tag-points-to.hash │ │ │ └── git-sha1-tag-points-to.mk │ │ │ ├── git-submodule-disabled │ │ │ ├── git-submodule-disabled.hash │ │ │ └── git-submodule-disabled.mk │ │ │ ├── git-submodule-enabled │ │ │ ├── git-submodule-enabled.hash │ │ │ └── git-submodule-enabled.mk │ │ │ ├── git-tag │ │ │ ├── git-tag.hash │ │ │ └── git-tag.mk │ │ │ ├── git-wrong-content │ │ │ ├── git-wrong-content.hash │ │ │ └── git-wrong-content.mk │ │ │ └── git-wrong-sha1 │ │ │ └── git-wrong-sha1.mk │ ├── git-remote │ │ ├── refs-sub1.git │ │ │ ├── .gitattributes │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── objects │ │ │ │ ├── 99 │ │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ │ ├── 07 │ │ │ │ │ └── cabc655213bdf7087d8dd50fda95124e935570 │ │ │ │ ├── 1d │ │ │ │ │ └── f823cb8a6d1866148ae50a8009762a9c4c777f │ │ │ │ ├── 7d │ │ │ │ │ └── 52f458bdb0f9f5a4beb46fa82824421b8b988e │ │ │ │ ├── a1 │ │ │ │ │ └── 30af1626bbadd64841b2cbcb6ac4ed0638ba1a │ │ │ │ ├── bc │ │ │ │ │ └── c81ba6e5bd8bf52c95688ae8d3e697e131fa23 │ │ │ │ ├── cb │ │ │ │ │ └── 545facf77bbc5f24f95b6d503c338d10b7b717 │ │ │ │ ├── dd │ │ │ │ │ └── 130f6f4629514adaf2e03407f3ed9344eb6cd6 │ │ │ │ ├── e7 │ │ │ │ │ └── 9c5e8f964493290a409888d5413a737e8e5dd5 │ │ │ │ └── f8 │ │ │ │ │ └── 001e5780100962a5e30a25cbc4c9609cfc7bf3 │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── submodule │ │ ├── refs-sub2.git │ │ │ ├── .gitattributes │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── objects │ │ │ │ ├── 32 │ │ │ │ │ └── d61bae693af7879da63b89a60d3ae67f851e56 │ │ │ │ ├── 85 │ │ │ │ │ └── 8f666af75b7c0dfba6b8be7eac5f196e7a1221 │ │ │ │ ├── 99 │ │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ │ ├── 0a │ │ │ │ │ └── 846af45c3e455789435f49f80d70e86b65b9d7 │ │ │ │ ├── 0b │ │ │ │ │ └── 32ebd8fc52cec991f18c94be980e85a8341585 │ │ │ │ ├── 3e │ │ │ │ │ └── 9b0a5198c64cea9c00f820433411e3b4d50c1c │ │ │ │ ├── cd │ │ │ │ │ └── 4d62ff218ab7b4a04f5bfdf800ace087af3ceb │ │ │ │ ├── e7 │ │ │ │ │ └── 9c5e8f964493290a409888d5413a737e8e5dd5 │ │ │ │ └── e8 │ │ │ │ │ └── 3f6f805bd016b90acafc8702c52d778eb57310 │ │ │ └── refs │ │ │ │ └── heads │ │ │ │ └── submodule │ │ └── repo.git │ │ │ ├── .gitattributes │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── objects │ │ │ ├── 11 │ │ │ │ └── 93ff46343f4f6a0522e2b28b871e905178c1f0 │ │ │ ├── 25 │ │ │ │ └── 59d83bfe937fc0412d96ed664663c9e8a99055 │ │ │ ├── 31 │ │ │ │ └── 7406308d9259e2231bd0d6ddad3de3832bce08 │ │ │ ├── 34 │ │ │ │ └── d1da713bf7de1c535e1d7d3ca985afd84bc7e5 │ │ │ ├── 46 │ │ │ │ └── bae5b639e5a18e2cc4dc508f080d566baeff59 │ │ │ ├── 51 │ │ │ │ └── 6c9c5f64ec66534d4d069c2e408d9ae4dce023 │ │ │ ├── 68 │ │ │ │ └── c197d0879d485f4f6cee85544722b79e68e59f │ │ │ ├── 92 │ │ │ │ └── ef85be57d627f280d8ce3724452ac21c9a6452 │ │ │ ├── 99 │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ ├── 0b │ │ │ │ └── d8ceb961c3b2b210f64a67d57f4b5cd669d343 │ │ │ ├── 2b │ │ │ │ └── 0e0d98a49c97da6a618ab36337e2058eb733a2 │ │ │ ├── 2f │ │ │ │ └── a37f6885d7eb746df75eccaddbacf3ac82799d │ │ │ ├── 8b │ │ │ │ └── 8a7e885a041da72b1ee9a47c5b9300b172a9e7 │ │ │ ├── a2 │ │ │ │ └── 38b1dfcd825d47d834af3c5223417c8411d90d │ │ │ ├── a9 │ │ │ │ └── dbc1e23c45e8e1b88c0448763f54d714eb6f8f │ │ │ ├── b2 │ │ │ │ └── 4b387624edc78d0292a127c43cad9ba97c6232 │ │ │ ├── cf │ │ │ │ └── 0f4f85d7a1237e377a2d25b996518a877ea001 │ │ │ ├── d4 │ │ │ │ └── e2941d18a63535400476324ddeb7f40164be41 │ │ │ ├── e2 │ │ │ │ ├── 2695cbf976fed1f543ad7486a531c0af473482 │ │ │ │ └── cfe068f7e5bf4de32ffe1241da53abce9fa89e │ │ │ ├── e7 │ │ │ │ └── 9c5e8f964493290a409888d5413a737e8e5dd5 │ │ │ ├── f6 │ │ │ │ └── 476b879f65e956d7dedd5b08736369e9a24acc │ │ │ └── fe │ │ │ │ └── 74231105841041d5f441e70399d37f0e600aa5 │ │ │ └── refs │ │ │ ├── heads │ │ │ ├── master │ │ │ ├── mybranch │ │ │ └── submodule │ │ │ └── tags │ │ │ └── mytag │ ├── gitremote.py │ └── test_git.py │ ├── fs │ ├── __init__.py │ ├── test_ext.py │ ├── test_f2fs.py │ ├── test_iso9660.py │ ├── test_jffs2.py │ ├── test_squashfs.py │ ├── test_ubi.py │ └── test_yaffs2.py │ ├── init │ ├── __init__.py │ ├── base.py │ ├── systemd-factory │ │ └── var │ │ │ └── foo │ │ │ └── bar │ ├── test_busybox.py │ ├── test_none.py │ └── test_systemd.py │ ├── package │ ├── __init__.py │ ├── br2-external │ │ └── openjdk │ │ │ ├── Config.in │ │ │ ├── external.desc │ │ │ ├── external.mk │ │ │ └── package │ │ │ ├── openjdk-hello-world │ │ │ ├── Config.in │ │ │ ├── HelloWorld.java │ │ │ └── openjdk-hello-world.mk │ │ │ └── openjdk-jni-test │ │ │ ├── Config.in │ │ │ ├── JniHelper.java │ │ │ ├── JniTest.java │ │ │ ├── JniWrapper.c │ │ │ ├── JniWrapper.java │ │ │ ├── jni_helper.c │ │ │ ├── jni_helper.h │ │ │ ├── native.c │ │ │ ├── native.h │ │ │ └── openjdk-jni-test.mk │ ├── copy-sample-script-to-target.sh │ ├── sample_libftdi1.py │ ├── sample_python_argh.py │ ├── sample_python_attrs.py │ ├── sample_python_autobahn.py │ ├── sample_python_automat.py │ ├── sample_python_avro.py │ ├── sample_python_bitstring.py │ ├── sample_python_can.py │ ├── sample_python_cbor_dec.py │ ├── sample_python_cbor_enc.py │ ├── sample_python_click.py │ ├── sample_python_constantly.py │ ├── sample_python_crossbar.py │ ├── sample_python_cryptography.py │ ├── sample_python_django.py │ ├── sample_python_gitdb2.py │ ├── sample_python_gobject.py │ ├── sample_python_incremental.py │ ├── sample_python_passlib.py │ ├── sample_python_pexpect.py │ ├── sample_python_pynacl.py │ ├── sample_python_pyyaml_dec.py │ ├── sample_python_pyyaml_enc.py │ ├── sample_python_service_identity.py │ ├── sample_python_smmap2.py │ ├── sample_python_subprocess32.py │ ├── sample_python_treq.py │ ├── sample_python_twisted.py │ ├── sample_python_txaio_asyncio.py │ ├── sample_python_txaio_twisted.py │ ├── sample_python_txtorcon.py │ ├── sample_python_ubjson_dec.py │ ├── sample_python_ubjson_enc.py │ ├── test_atop.py │ ├── test_crudini.py │ ├── test_docker_compose.py │ ├── test_dropbear.py │ ├── test_glxinfo.py │ ├── test_ipython.py │ ├── test_libftdi1.py │ ├── test_lpeg.py │ ├── test_lsqlite3.py │ ├── test_lua.py │ ├── test_lua_cqueues.py │ ├── test_lua_curl.py │ ├── test_lua_gd.py │ ├── test_lua_http.py │ ├── test_lua_sdl2.py │ ├── test_lua_utf8.py │ ├── test_luaexpat.py │ ├── test_luafilesystem.py │ ├── test_luaossl.py │ ├── test_luaposix.py │ ├── test_luasec.py │ ├── test_luasocket.py │ ├── test_luasyslog.py │ ├── test_luvi.py │ ├── test_lxc.py │ ├── test_lxc │ │ ├── lxc-kernel.config │ │ └── rootfs-overlay │ │ │ └── usr │ │ │ ├── bin │ │ │ └── iperf3.sh │ │ │ └── share │ │ │ └── lxc │ │ │ └── config │ │ │ ├── minimal-iperf3.conf │ │ │ └── minimal.conf │ ├── test_lzlib.py │ ├── test_openjdk.py │ ├── test_opkg.py │ ├── test_opkg │ │ └── post-build.sh │ ├── test_perl.py │ ├── test_perl_class_load.py │ ├── test_perl_dbd_mysql.py │ ├── test_perl_encode_detect.py │ ├── test_perl_gdgraph.py │ ├── test_perl_io_socket_multicast.py │ ├── test_perl_io_socket_ssl.py │ ├── test_perl_libwww_perl.py │ ├── test_perl_mail_dkim.py │ ├── test_perl_x10.py │ ├── test_perl_xml_libxml.py │ ├── test_prosody.py │ ├── test_python.py │ ├── test_python_argh.py │ ├── test_python_attrs.py │ ├── test_python_autobahn.py │ ├── test_python_automat.py │ ├── test_python_avro.py │ ├── test_python_bitstring.py │ ├── test_python_can.py │ ├── test_python_cbor.py │ ├── test_python_click.py │ ├── test_python_constantly.py │ ├── test_python_crossbar.py │ ├── test_python_cryptography.py │ ├── test_python_django.py │ ├── test_python_gitdb2.py │ ├── test_python_gobject.py │ ├── test_python_incremental.py │ ├── test_python_passlib.py │ ├── test_python_pexpect.py │ ├── test_python_pynacl.py │ ├── test_python_pyyaml.py │ ├── test_python_service_identity.py │ ├── test_python_smmap2.py │ ├── test_python_subprocess32.py │ ├── test_python_treq.py │ ├── test_python_twisted.py │ ├── test_python_txaio.py │ ├── test_python_txtorcon.py │ ├── test_python_ubjson.py │ ├── test_rings.py │ ├── test_rust.py │ ├── test_syslog_ng.py │ ├── test_tmux.py │ └── test_turbolua.py │ ├── toolchain │ ├── __init__.py │ └── test_external.py │ └── utils │ ├── __init__.py │ ├── br2-external │ ├── Config.in │ ├── external.desc │ ├── external.mk │ └── package │ │ └── external │ │ └── external.mk │ └── test_check_package.py ├── system ├── Config.in ├── device_table.txt ├── device_table_dev.txt ├── skeleton │ ├── dev │ │ ├── .empty │ │ ├── fd │ │ ├── stderr │ │ ├── stdin │ │ └── stdout │ ├── etc │ │ ├── group │ │ ├── hosts │ │ ├── mtab │ │ ├── passwd │ │ ├── profile │ │ ├── profile.d │ │ │ └── umask.sh │ │ ├── protocols │ │ ├── resolv.conf │ │ ├── services │ │ └── shadow │ ├── media │ │ └── .empty │ ├── mnt │ │ └── .empty │ ├── opt │ │ └── .empty │ ├── proc │ │ └── .empty │ ├── root │ │ └── .empty │ ├── run │ │ └── .empty │ ├── sys │ │ └── .empty │ ├── tmp │ │ └── .empty │ └── usr │ │ ├── bin │ │ └── .empty │ │ ├── lib │ │ └── .empty │ │ └── sbin │ │ └── .empty └── system.mk ├── toolchain ├── Config.in ├── helpers.mk ├── toolchain-buildroot │ ├── Config.in │ └── toolchain-buildroot.mk ├── toolchain-external │ ├── Config.in │ ├── pkg-toolchain-external.mk │ ├── toolchain-external-andes-nds32 │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-andes-nds32.hash │ │ └── toolchain-external-andes-nds32.mk │ ├── toolchain-external-arm-aarch64-be │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-arm-aarch64-be.hash │ │ └── toolchain-external-arm-aarch64-be.mk │ ├── toolchain-external-arm-aarch64 │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-arm-aarch64.hash │ │ └── toolchain-external-arm-aarch64.mk │ ├── toolchain-external-arm-arm │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-arm-arm.hash │ │ └── toolchain-external-arm-arm.mk │ ├── toolchain-external-codescape-img-mips │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-codescape-img-mips.hash │ │ └── toolchain-external-codescape-img-mips.mk │ ├── toolchain-external-codescape-mti-mips │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-codescape-mti-mips.hash │ │ └── toolchain-external-codescape-mti-mips.mk │ ├── toolchain-external-codesourcery-aarch64 │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-codesourcery-aarch64.hash │ │ └── toolchain-external-codesourcery-aarch64.mk │ ├── toolchain-external-codesourcery-amd64 │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-codesourcery-amd64.hash │ │ └── toolchain-external-codesourcery-amd64.mk │ ├── toolchain-external-codesourcery-arm │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-codesourcery-arm.hash │ │ └── toolchain-external-codesourcery-arm.mk │ ├── toolchain-external-codesourcery-mips │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-codesourcery-mips.hash │ │ └── toolchain-external-codesourcery-mips.mk │ ├── toolchain-external-codesourcery-niosII │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-codesourcery-niosII.hash │ │ └── toolchain-external-codesourcery-niosII.mk │ ├── toolchain-external-custom │ │ ├── Config.in │ │ ├── Config.in.options │ │ └── toolchain-external-custom.mk │ ├── toolchain-external-linaro-aarch64-be │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-linaro-aarch64-be.hash │ │ └── toolchain-external-linaro-aarch64-be.mk │ ├── toolchain-external-linaro-aarch64 │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-linaro-aarch64.hash │ │ └── toolchain-external-linaro-aarch64.mk │ ├── toolchain-external-linaro-arm │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-linaro-arm.hash │ │ └── toolchain-external-linaro-arm.mk │ ├── toolchain-external-linaro-armeb │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-linaro-armeb.hash │ │ └── toolchain-external-linaro-armeb.mk │ ├── toolchain-external-synopsys-arc │ │ ├── Config.in │ │ ├── Config.in.options │ │ ├── toolchain-external-synopsys-arc.hash │ │ └── toolchain-external-synopsys-arc.mk │ └── toolchain-external.mk ├── toolchain-wrapper.c ├── toolchain-wrapper.mk ├── toolchain.mk └── toolchain │ └── toolchain.mk └── utils ├── brmake ├── check-package ├── checkpackagelib ├── __init__.py ├── base.py ├── lib.py ├── lib_config.py ├── lib_hash.py ├── lib_mk.py ├── lib_patch.py └── readme.txt ├── config ├── diffconfig ├── genrandconfig ├── get-developers ├── getdeveloperlib.py ├── readme.txt ├── scancpan ├── scanpypi ├── size-stats-compare └── test-pkg /.defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/.defconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/.gitlab-ci.yml.in -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/COPYING -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/Config.in -------------------------------------------------------------------------------- /Config.in.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/Config.in.legacy -------------------------------------------------------------------------------- /DEVELOPERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/DEVELOPERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/Makefile.legacy -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/README.md -------------------------------------------------------------------------------- /arch/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in -------------------------------------------------------------------------------- /arch/Config.in.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.arc -------------------------------------------------------------------------------- /arch/Config.in.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.arm -------------------------------------------------------------------------------- /arch/Config.in.csky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.csky -------------------------------------------------------------------------------- /arch/Config.in.m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.m68k -------------------------------------------------------------------------------- /arch/Config.in.mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.mips -------------------------------------------------------------------------------- /arch/Config.in.nds32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.nds32 -------------------------------------------------------------------------------- /arch/Config.in.nios2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.nios2 -------------------------------------------------------------------------------- /arch/Config.in.or1k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.or1k -------------------------------------------------------------------------------- /arch/Config.in.powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.powerpc -------------------------------------------------------------------------------- /arch/Config.in.riscv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.riscv -------------------------------------------------------------------------------- /arch/Config.in.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.sh -------------------------------------------------------------------------------- /arch/Config.in.sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.sparc -------------------------------------------------------------------------------- /arch/Config.in.x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.x86 -------------------------------------------------------------------------------- /arch/Config.in.xtensa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/Config.in.xtensa -------------------------------------------------------------------------------- /arch/arch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/arch.mk -------------------------------------------------------------------------------- /arch/arch.mk.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/arch.mk.arc -------------------------------------------------------------------------------- /arch/arch.mk.csky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/arch.mk.csky -------------------------------------------------------------------------------- /arch/arch.mk.riscv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/arch.mk.riscv -------------------------------------------------------------------------------- /arch/arch.mk.xtensa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/arch/arch.mk.xtensa -------------------------------------------------------------------------------- /board/andes/ae3xx/ae3xx.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_NDS32_BUILTIN_DTB="ae3xx" 2 | -------------------------------------------------------------------------------- /board/andes/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/andes/readme.txt -------------------------------------------------------------------------------- /board/atmel/flasher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/atmel/flasher.sh -------------------------------------------------------------------------------- /board/atmel/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/atmel/readme.txt -------------------------------------------------------------------------------- /board/ci20/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/ci20/readme.txt -------------------------------------------------------------------------------- /board/csky/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/csky/readme.txt -------------------------------------------------------------------------------- /board/freescale/warpboard/linux.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_CFG80211_WEXT=y 2 | -------------------------------------------------------------------------------- /board/olimex/a10_olinuxino/boot.cmd: -------------------------------------------------------------------------------- 1 | ../a20_olinuxino/boot.cmd -------------------------------------------------------------------------------- /board/olimex/a10_olinuxino/genimage.cfg: -------------------------------------------------------------------------------- 1 | ../a20_olinuxino/genimage.cfg -------------------------------------------------------------------------------- /board/olimex/a10_olinuxino/post-build.sh: -------------------------------------------------------------------------------- 1 | ../a20_olinuxino/post-build.sh -------------------------------------------------------------------------------- /board/pc/grub-bios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/pc/grub-bios.cfg -------------------------------------------------------------------------------- /board/pc/grub-efi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/pc/grub-efi.cfg -------------------------------------------------------------------------------- /board/pc/linux.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/pc/linux.config -------------------------------------------------------------------------------- /board/pc/post-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/pc/post-build.sh -------------------------------------------------------------------------------- /board/pc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/pc/readme.txt -------------------------------------------------------------------------------- /board/raspberrypi0: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi0w: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi2: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi3: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi3-64: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi4: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/raspberrypi4-64: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /board/solidrun/clearfog/linux.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_SENSORS_MCP3021=y 2 | -------------------------------------------------------------------------------- /board/solidrun/clearfog_gt_8k/genimage.cfg: -------------------------------------------------------------------------------- 1 | ../macchiatobin/genimage.cfg -------------------------------------------------------------------------------- /board/solidrun/clearfog_gt_8k/post-build-mainline.sh: -------------------------------------------------------------------------------- 1 | ../macchiatobin/post-build-mainline.sh -------------------------------------------------------------------------------- /board/solidrun/clearfog_gt_8k/uboot-fragment.config: -------------------------------------------------------------------------------- 1 | ../macchiatobin/uboot-fragment.config -------------------------------------------------------------------------------- /board/stmicroelectronics/stm32mp157c-dk2/uboot-fragment.config: -------------------------------------------------------------------------------- 1 | # CONFIG_STM32MP_WATCHDOG is not set 2 | -------------------------------------------------------------------------------- /board/udoo/mx6qdl/linux.fragment: -------------------------------------------------------------------------------- 1 | # CONFIG_USB is not set 2 | -------------------------------------------------------------------------------- /board/warp7/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/warp7/readme.txt -------------------------------------------------------------------------------- /board/zynq/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/board/zynq/readme.txt -------------------------------------------------------------------------------- /boot/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/Config.in -------------------------------------------------------------------------------- /boot/barebox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/barebox/Config.in -------------------------------------------------------------------------------- /boot/barebox/barebox-aux/barebox-aux.hash: -------------------------------------------------------------------------------- 1 | ../barebox.hash -------------------------------------------------------------------------------- /boot/barebox/barebox/barebox.hash: -------------------------------------------------------------------------------- 1 | ../barebox.hash -------------------------------------------------------------------------------- /boot/common.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard boot/*/*.mk)) 2 | -------------------------------------------------------------------------------- /boot/grub2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/grub2/Config.in -------------------------------------------------------------------------------- /boot/grub2/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/grub2/grub.cfg -------------------------------------------------------------------------------- /boot/grub2/grub2.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/grub2/grub2.hash -------------------------------------------------------------------------------- /boot/grub2/grub2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/grub2/grub2.mk -------------------------------------------------------------------------------- /boot/grub2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/grub2/readme.txt -------------------------------------------------------------------------------- /boot/gummiboot/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 3 2 | default buildroot 3 | -------------------------------------------------------------------------------- /boot/opensbi/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/opensbi/Config.in -------------------------------------------------------------------------------- /boot/shim/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/shim/Config.in -------------------------------------------------------------------------------- /boot/shim/shim.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/shim/shim.hash -------------------------------------------------------------------------------- /boot/shim/shim.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/shim/shim.mk -------------------------------------------------------------------------------- /boot/uboot/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/uboot/Config.in -------------------------------------------------------------------------------- /boot/uboot/uboot.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/uboot/uboot.hash -------------------------------------------------------------------------------- /boot/uboot/uboot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/boot/uboot/uboot.mk -------------------------------------------------------------------------------- /configs/ci20_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/configs/ci20_defconfig -------------------------------------------------------------------------------- /docs/images: -------------------------------------------------------------------------------- 1 | website/images -------------------------------------------------------------------------------- /docs/manual/manual.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/docs/manual/manual.mk -------------------------------------------------------------------------------- /docs/manual/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/docs/manual/manual.txt -------------------------------------------------------------------------------- /docs/website/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/docs/website/.htaccess -------------------------------------------------------------------------------- /docs/website/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/docs/website/docs.html -------------------------------------------------------------------------------- /docs/website/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/docs/website/news.html -------------------------------------------------------------------------------- /docs/website/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /cgi-bin/ 3 | -------------------------------------------------------------------------------- /fs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/Config.in -------------------------------------------------------------------------------- /fs/axfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/axfs/Config.in -------------------------------------------------------------------------------- /fs/axfs/axfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/axfs/axfs.mk -------------------------------------------------------------------------------- /fs/btrfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/btrfs/Config.in -------------------------------------------------------------------------------- /fs/btrfs/btrfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/btrfs/btrfs.mk -------------------------------------------------------------------------------- /fs/cloop/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/cloop/Config.in -------------------------------------------------------------------------------- /fs/cloop/cloop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/cloop/cloop.mk -------------------------------------------------------------------------------- /fs/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/common.mk -------------------------------------------------------------------------------- /fs/cpio/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/cpio/Config.in -------------------------------------------------------------------------------- /fs/cpio/cpio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/cpio/cpio.mk -------------------------------------------------------------------------------- /fs/cpio/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/cpio/init -------------------------------------------------------------------------------- /fs/cramfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/cramfs/Config.in -------------------------------------------------------------------------------- /fs/cramfs/cramfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/cramfs/cramfs.mk -------------------------------------------------------------------------------- /fs/ext2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/ext2/Config.in -------------------------------------------------------------------------------- /fs/ext2/ext2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/ext2/ext2.mk -------------------------------------------------------------------------------- /fs/f2fs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/f2fs/Config.in -------------------------------------------------------------------------------- /fs/f2fs/f2fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/f2fs/f2fs.mk -------------------------------------------------------------------------------- /fs/initramfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/initramfs/Config.in -------------------------------------------------------------------------------- /fs/iso9660/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/iso9660/Config.in -------------------------------------------------------------------------------- /fs/iso9660/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/iso9660/grub.cfg -------------------------------------------------------------------------------- /fs/iso9660/iso9660.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/iso9660/iso9660.mk -------------------------------------------------------------------------------- /fs/jffs2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/jffs2/Config.in -------------------------------------------------------------------------------- /fs/jffs2/jffs2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/jffs2/jffs2.mk -------------------------------------------------------------------------------- /fs/romfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/romfs/Config.in -------------------------------------------------------------------------------- /fs/romfs/romfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/romfs/romfs.mk -------------------------------------------------------------------------------- /fs/squashfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/squashfs/Config.in -------------------------------------------------------------------------------- /fs/tar/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/tar/Config.in -------------------------------------------------------------------------------- /fs/tar/tar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/tar/tar.mk -------------------------------------------------------------------------------- /fs/ubi/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/ubi/Config.in -------------------------------------------------------------------------------- /fs/ubi/ubi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/ubi/ubi.mk -------------------------------------------------------------------------------- /fs/ubi/ubinize.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/ubi/ubinize.cfg -------------------------------------------------------------------------------- /fs/ubifs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/ubifs/Config.in -------------------------------------------------------------------------------- /fs/ubifs/ubifs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/ubifs/ubifs.mk -------------------------------------------------------------------------------- /fs/yaffs2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/yaffs2/Config.in -------------------------------------------------------------------------------- /fs/yaffs2/yaffs2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/fs/yaffs2/yaffs2.mk -------------------------------------------------------------------------------- /linux/Config.ext.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/linux/Config.ext.in -------------------------------------------------------------------------------- /linux/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/linux/Config.in -------------------------------------------------------------------------------- /linux/linux.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/linux/linux.hash -------------------------------------------------------------------------------- /linux/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/linux/linux.mk -------------------------------------------------------------------------------- /package/4th/4th.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/4th/4th.hash -------------------------------------------------------------------------------- /package/4th/4th.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/4th/4th.mk -------------------------------------------------------------------------------- /package/4th/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/4th/Config.in -------------------------------------------------------------------------------- /package/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/Config.in -------------------------------------------------------------------------------- /package/Config.in.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/Config.in.host -------------------------------------------------------------------------------- /package/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/Makefile.in -------------------------------------------------------------------------------- /package/acl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/acl/Config.in -------------------------------------------------------------------------------- /package/acl/acl.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/acl/acl.hash -------------------------------------------------------------------------------- /package/acl/acl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/acl/acl.mk -------------------------------------------------------------------------------- /package/acpid/S02acpid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/acpid/S02acpid -------------------------------------------------------------------------------- /package/acpid/acpid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/acpid/acpid.mk -------------------------------------------------------------------------------- /package/alure/alure.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/alure/alure.mk -------------------------------------------------------------------------------- /package/apr/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/apr/Config.in -------------------------------------------------------------------------------- /package/apr/apr.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/apr/apr.hash -------------------------------------------------------------------------------- /package/apr/apr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/apr/apr.mk -------------------------------------------------------------------------------- /package/argus/argus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/argus/argus.mk -------------------------------------------------------------------------------- /package/at/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/at/Config.in -------------------------------------------------------------------------------- /package/at/S99at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/at/S99at -------------------------------------------------------------------------------- /package/at/at.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/at/at.hash -------------------------------------------------------------------------------- /package/at/at.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/at/at.mk -------------------------------------------------------------------------------- /package/atest/atest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atest/atest.mk -------------------------------------------------------------------------------- /package/atf/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atf/Config.in -------------------------------------------------------------------------------- /package/atf/atf.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atf/atf.hash -------------------------------------------------------------------------------- /package/atf/atf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atf/atf.mk -------------------------------------------------------------------------------- /package/atftp/atftp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atftp/atftp.mk -------------------------------------------------------------------------------- /package/atk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atk/Config.in -------------------------------------------------------------------------------- /package/atk/atk.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atk/atk.hash -------------------------------------------------------------------------------- /package/atk/atk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atk/atk.mk -------------------------------------------------------------------------------- /package/atkmm/atkmm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atkmm/atkmm.mk -------------------------------------------------------------------------------- /package/atop/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atop/Config.in -------------------------------------------------------------------------------- /package/atop/atop.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atop/atop.hash -------------------------------------------------------------------------------- /package/atop/atop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/atop/atop.mk -------------------------------------------------------------------------------- /package/attr/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/attr/Config.in -------------------------------------------------------------------------------- /package/attr/attr.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/attr/attr.hash -------------------------------------------------------------------------------- /package/attr/attr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/attr/attr.mk -------------------------------------------------------------------------------- /package/aubio/aubio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/aubio/aubio.mk -------------------------------------------------------------------------------- /package/audit/audit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/audit/audit.mk -------------------------------------------------------------------------------- /package/audit/audit_tmpfiles.conf: -------------------------------------------------------------------------------- 1 | d /var/log/audit 0755 - - 2 | -------------------------------------------------------------------------------- /package/aufs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/aufs/Config.in -------------------------------------------------------------------------------- /package/aufs/aufs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/aufs/aufs.mk -------------------------------------------------------------------------------- /package/aumix/aumix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/aumix/aumix.mk -------------------------------------------------------------------------------- /package/avahi/avahi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/avahi/avahi.mk -------------------------------------------------------------------------------- /package/axel/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/axel/Config.in -------------------------------------------------------------------------------- /package/axel/axel.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/axel/axel.hash -------------------------------------------------------------------------------- /package/axel/axel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/axel/axel.mk -------------------------------------------------------------------------------- /package/azmq/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/azmq/Config.in -------------------------------------------------------------------------------- /package/azmq/azmq.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/azmq/azmq.hash -------------------------------------------------------------------------------- /package/azmq/azmq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/azmq/azmq.mk -------------------------------------------------------------------------------- /package/bash/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bash/Config.in -------------------------------------------------------------------------------- /package/bash/bash.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bash/bash.hash -------------------------------------------------------------------------------- /package/bash/bash.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bash/bash.mk -------------------------------------------------------------------------------- /package/bc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bc/Config.in -------------------------------------------------------------------------------- /package/bc/bc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bc/bc.hash -------------------------------------------------------------------------------- /package/bc/bc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bc/bc.mk -------------------------------------------------------------------------------- /package/bdwgc/bdwgc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bdwgc/bdwgc.mk -------------------------------------------------------------------------------- /package/bind/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bind/Config.in -------------------------------------------------------------------------------- /package/bind/S81named: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bind/S81named -------------------------------------------------------------------------------- /package/bind/bind.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bind/bind.hash -------------------------------------------------------------------------------- /package/bind/bind.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bind/bind.mk -------------------------------------------------------------------------------- /package/bird/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bird/Config.in -------------------------------------------------------------------------------- /package/bird/bird.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bird/bird.hash -------------------------------------------------------------------------------- /package/bird/bird.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bird/bird.mk -------------------------------------------------------------------------------- /package/bison/bison.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bison/bison.mk -------------------------------------------------------------------------------- /package/bluez5_utils-headers/bluez5_utils-headers.hash: -------------------------------------------------------------------------------- 1 | ../bluez5_utils/bluez5_utils.hash -------------------------------------------------------------------------------- /package/bmon/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bmon/Config.in -------------------------------------------------------------------------------- /package/bmon/bmon.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bmon/bmon.hash -------------------------------------------------------------------------------- /package/bmon/bmon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bmon/bmon.mk -------------------------------------------------------------------------------- /package/boa/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/boa/Config.in -------------------------------------------------------------------------------- /package/boa/boa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/boa/boa.conf -------------------------------------------------------------------------------- /package/boa/boa.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/boa/boa.hash -------------------------------------------------------------------------------- /package/boa/boa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/boa/boa.mk -------------------------------------------------------------------------------- /package/boa/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/boa/mime.types -------------------------------------------------------------------------------- /package/boinc/boinc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/boinc/boinc.mk -------------------------------------------------------------------------------- /package/boost/boost.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/boost/boost.mk -------------------------------------------------------------------------------- /package/botan/botan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/botan/botan.mk -------------------------------------------------------------------------------- /package/bzip2/bzip2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/bzip2/bzip2.mk -------------------------------------------------------------------------------- /package/cairo/cairo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cairo/cairo.mk -------------------------------------------------------------------------------- /package/caps/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/caps/Config.in -------------------------------------------------------------------------------- /package/caps/caps.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/caps/caps.hash -------------------------------------------------------------------------------- /package/caps/caps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/caps/caps.mk -------------------------------------------------------------------------------- /package/cargo/cargo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cargo/cargo.mk -------------------------------------------------------------------------------- /package/cargo/config.in: -------------------------------------------------------------------------------- 1 | [target.@RUSTC_TARGET_NAME@] 2 | linker = "@CROSS_PREFIX@gcc" 3 | -------------------------------------------------------------------------------- /package/ccid/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ccid/Config.in -------------------------------------------------------------------------------- /package/ccid/ccid.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ccid/ccid.hash -------------------------------------------------------------------------------- /package/ccid/ccid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ccid/ccid.mk -------------------------------------------------------------------------------- /package/cctz/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cctz/Config.in -------------------------------------------------------------------------------- /package/cctz/cctz.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cctz/cctz.hash -------------------------------------------------------------------------------- /package/cctz/cctz.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cctz/cctz.mk -------------------------------------------------------------------------------- /package/cgic/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cgic/Config.in -------------------------------------------------------------------------------- /package/cgic/cgic.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cgic/cgic.hash -------------------------------------------------------------------------------- /package/cgic/cgic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cgic/cgic.mk -------------------------------------------------------------------------------- /package/check/check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/check/check.mk -------------------------------------------------------------------------------- /package/cjson/cjson.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cjson/cjson.mk -------------------------------------------------------------------------------- /package/clang/clang.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/clang/clang.mk -------------------------------------------------------------------------------- /package/cloop/cloop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cloop/cloop.mk -------------------------------------------------------------------------------- /package/cmake/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cmake/cmake.mk -------------------------------------------------------------------------------- /package/cog/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cog/Config.in -------------------------------------------------------------------------------- /package/cog/cog.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cog/cog.hash -------------------------------------------------------------------------------- /package/cog/cog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cog/cog.mk -------------------------------------------------------------------------------- /package/copas/copas.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/copas/copas.mk -------------------------------------------------------------------------------- /package/cpio/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cpio/Config.in -------------------------------------------------------------------------------- /package/cpio/cpio.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cpio/cpio.hash -------------------------------------------------------------------------------- /package/cpio/cpio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cpio/cpio.mk -------------------------------------------------------------------------------- /package/cppdb/cppdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cppdb/cppdb.mk -------------------------------------------------------------------------------- /package/crda/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/crda/Config.in -------------------------------------------------------------------------------- /package/crda/crda.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/crda/crda.hash -------------------------------------------------------------------------------- /package/crda/crda.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/crda/crda.mk -------------------------------------------------------------------------------- /package/cunit/cunit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cunit/cunit.mk -------------------------------------------------------------------------------- /package/cups/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cups/Config.in -------------------------------------------------------------------------------- /package/cups/cups.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cups/cups.hash -------------------------------------------------------------------------------- /package/cups/cups.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cups/cups.mk -------------------------------------------------------------------------------- /package/cvs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cvs/Config.in -------------------------------------------------------------------------------- /package/cvs/cvs.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cvs/cvs.hash -------------------------------------------------------------------------------- /package/cvs/cvs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cvs/cvs.mk -------------------------------------------------------------------------------- /package/cwiid/cwiid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/cwiid/cwiid.mk -------------------------------------------------------------------------------- /package/czmq/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/czmq/Config.in -------------------------------------------------------------------------------- /package/czmq/czmq.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/czmq/czmq.hash -------------------------------------------------------------------------------- /package/czmq/czmq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/czmq/czmq.mk -------------------------------------------------------------------------------- /package/dado/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dado/Config.in -------------------------------------------------------------------------------- /package/dado/dado.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dado/dado.hash -------------------------------------------------------------------------------- /package/dado/dado.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dado/dado.mk -------------------------------------------------------------------------------- /package/dante/S50dante: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dante/S50dante -------------------------------------------------------------------------------- /package/dante/dante.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dante/dante.mk -------------------------------------------------------------------------------- /package/daq/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/daq/Config.in -------------------------------------------------------------------------------- /package/daq/daq.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/daq/daq.hash -------------------------------------------------------------------------------- /package/daq/daq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/daq/daq.mk -------------------------------------------------------------------------------- /package/dash/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dash/Config.in -------------------------------------------------------------------------------- /package/dash/dash.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dash/dash.hash -------------------------------------------------------------------------------- /package/dash/dash.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dash/dash.mk -------------------------------------------------------------------------------- /package/dav1d/dav1d.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dav1d/dav1d.mk -------------------------------------------------------------------------------- /package/dbus/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dbus/Config.in -------------------------------------------------------------------------------- /package/dbus/S30dbus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dbus/S30dbus -------------------------------------------------------------------------------- /package/dbus/dbus.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dbus/dbus.hash -------------------------------------------------------------------------------- /package/dbus/dbus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dbus/dbus.mk -------------------------------------------------------------------------------- /package/dc3dd/dc3dd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dc3dd/dc3dd.mk -------------------------------------------------------------------------------- /package/dcron/S90dcron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dcron/S90dcron -------------------------------------------------------------------------------- /package/dcron/dcron.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dcron/dcron.mk -------------------------------------------------------------------------------- /package/dhcp/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dhcp/Config.in -------------------------------------------------------------------------------- /package/dhcp/dhcp.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dhcp/dhcp.hash -------------------------------------------------------------------------------- /package/dhcp/dhcp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dhcp/dhcp.mk -------------------------------------------------------------------------------- /package/dillo/dillo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dillo/dillo.mk -------------------------------------------------------------------------------- /package/dstat/dstat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dstat/dstat.mk -------------------------------------------------------------------------------- /package/dt/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dt/Config.in -------------------------------------------------------------------------------- /package/dt/dt.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dt/dt.hash -------------------------------------------------------------------------------- /package/dt/dt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dt/dt.mk -------------------------------------------------------------------------------- /package/dtach/dtach.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dtach/dtach.mk -------------------------------------------------------------------------------- /package/dtc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dtc/Config.in -------------------------------------------------------------------------------- /package/dtc/dtc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dtc/dtc.hash -------------------------------------------------------------------------------- /package/dtc/dtc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/dtc/dtc.mk -------------------------------------------------------------------------------- /package/duma/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/duma/Config.in -------------------------------------------------------------------------------- /package/duma/duma.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/duma/duma.hash -------------------------------------------------------------------------------- /package/duma/duma.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/duma/duma.mk -------------------------------------------------------------------------------- /package/ed/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ed/Config.in -------------------------------------------------------------------------------- /package/ed/ed.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ed/ed.hash -------------------------------------------------------------------------------- /package/ed/ed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ed/ed.mk -------------------------------------------------------------------------------- /package/efl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/efl/Config.in -------------------------------------------------------------------------------- /package/efl/efl.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/efl/efl.hash -------------------------------------------------------------------------------- /package/efl/efl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/efl/efl.mk -------------------------------------------------------------------------------- /package/eigen/eigen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/eigen/eigen.mk -------------------------------------------------------------------------------- /package/ell/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ell/Config.in -------------------------------------------------------------------------------- /package/ell/ell.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ell/ell.hash -------------------------------------------------------------------------------- /package/ell/ell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ell/ell.mk -------------------------------------------------------------------------------- /package/emlog/emlog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/emlog/emlog.mk -------------------------------------------------------------------------------- /package/empty/empty.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/empty/empty.mk -------------------------------------------------------------------------------- /package/enet/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/enet/Config.in -------------------------------------------------------------------------------- /package/enet/enet.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/enet/enet.hash -------------------------------------------------------------------------------- /package/enet/enet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/enet/enet.mk -------------------------------------------------------------------------------- /package/eudev/S10udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/eudev/S10udev -------------------------------------------------------------------------------- /package/eudev/eudev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/eudev/eudev.mk -------------------------------------------------------------------------------- /package/evemu/evemu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/evemu/evemu.mk -------------------------------------------------------------------------------- /package/exfat/exfat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/exfat/exfat.mk -------------------------------------------------------------------------------- /package/exim/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/exim/Config.in -------------------------------------------------------------------------------- /package/exim/S86exim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/exim/S86exim -------------------------------------------------------------------------------- /package/exim/exim.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/exim/exim.hash -------------------------------------------------------------------------------- /package/exim/exim.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/exim/exim.mk -------------------------------------------------------------------------------- /package/exiv2/exiv2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/exiv2/exiv2.mk -------------------------------------------------------------------------------- /package/expat/expat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/expat/expat.mk -------------------------------------------------------------------------------- /package/ezxml/ezxml.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ezxml/ezxml.mk -------------------------------------------------------------------------------- /package/faad2/faad2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/faad2/faad2.mk -------------------------------------------------------------------------------- /package/faifa/faifa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/faifa/faifa.mk -------------------------------------------------------------------------------- /package/fastd/fastd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fastd/fastd.mk -------------------------------------------------------------------------------- /package/fbset/fbset.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fbset/fbset.mk -------------------------------------------------------------------------------- /package/fbtft/fbtft.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fbtft/fbtft.mk -------------------------------------------------------------------------------- /package/fbv/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fbv/Config.in -------------------------------------------------------------------------------- /package/fbv/fbv.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fbv/fbv.hash -------------------------------------------------------------------------------- /package/fbv/fbv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fbv/fbv.mk -------------------------------------------------------------------------------- /package/feh/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/feh/Config.in -------------------------------------------------------------------------------- /package/feh/feh.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/feh/feh.hash -------------------------------------------------------------------------------- /package/feh/feh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/feh/feh.mk -------------------------------------------------------------------------------- /package/fftw/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fftw/Config.in -------------------------------------------------------------------------------- /package/fftw/fftw-double/fftw-double.hash: -------------------------------------------------------------------------------- 1 | ../fftw.hash -------------------------------------------------------------------------------- /package/fftw/fftw-long-double/fftw-long-double.hash: -------------------------------------------------------------------------------- 1 | ../fftw.hash -------------------------------------------------------------------------------- /package/fftw/fftw-quad/fftw-quad.hash: -------------------------------------------------------------------------------- 1 | ../fftw.hash -------------------------------------------------------------------------------- /package/fftw/fftw-single/fftw-single.hash: -------------------------------------------------------------------------------- 1 | ../fftw.hash -------------------------------------------------------------------------------- /package/fftw/fftw.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fftw/fftw.hash -------------------------------------------------------------------------------- /package/fftw/fftw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fftw/fftw.mk -------------------------------------------------------------------------------- /package/ficl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ficl/Config.in -------------------------------------------------------------------------------- /package/ficl/ficl.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ficl/ficl.hash -------------------------------------------------------------------------------- /package/ficl/ficl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ficl/ficl.mk -------------------------------------------------------------------------------- /package/file/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/file/Config.in -------------------------------------------------------------------------------- /package/file/file.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/file/file.hash -------------------------------------------------------------------------------- /package/file/file.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/file/file.mk -------------------------------------------------------------------------------- /package/fio/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fio/Config.in -------------------------------------------------------------------------------- /package/fio/fio.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fio/fio.hash -------------------------------------------------------------------------------- /package/fio/fio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fio/fio.mk -------------------------------------------------------------------------------- /package/flac/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flac/Config.in -------------------------------------------------------------------------------- /package/flac/flac.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flac/flac.hash -------------------------------------------------------------------------------- /package/flac/flac.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flac/flac.mk -------------------------------------------------------------------------------- /package/flann/flann.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flann/flann.mk -------------------------------------------------------------------------------- /package/flex/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flex/Config.in -------------------------------------------------------------------------------- /package/flex/flex.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flex/flex.hash -------------------------------------------------------------------------------- /package/flex/flex.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flex/flex.mk -------------------------------------------------------------------------------- /package/flite/flite.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flite/flite.mk -------------------------------------------------------------------------------- /package/flot/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flot/Config.in -------------------------------------------------------------------------------- /package/flot/flot.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flot/flot.hash -------------------------------------------------------------------------------- /package/flot/flot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/flot/flot.mk -------------------------------------------------------------------------------- /package/fltk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fltk/Config.in -------------------------------------------------------------------------------- /package/fltk/fltk.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fltk/fltk.hash -------------------------------------------------------------------------------- /package/fltk/fltk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fltk/fltk.mk -------------------------------------------------------------------------------- /package/fluxbox/xsession: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec startfluxbox 3 | -------------------------------------------------------------------------------- /package/fmc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fmc/Config.in -------------------------------------------------------------------------------- /package/fmc/fmc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fmc/fmc.hash -------------------------------------------------------------------------------- /package/fmc/fmc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fmc/fmc.mk -------------------------------------------------------------------------------- /package/fmlib/fmlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fmlib/fmlib.mk -------------------------------------------------------------------------------- /package/fmt/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fmt/Config.in -------------------------------------------------------------------------------- /package/fmt/fmt.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fmt/fmt.hash -------------------------------------------------------------------------------- /package/fmt/fmt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fmt/fmt.mk -------------------------------------------------------------------------------- /package/fping/fping.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fping/fping.mk -------------------------------------------------------------------------------- /package/ftop/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ftop/Config.in -------------------------------------------------------------------------------- /package/ftop/ftop.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ftop/ftop.hash -------------------------------------------------------------------------------- /package/ftop/ftop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ftop/ftop.mk -------------------------------------------------------------------------------- /package/fwts/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fwts/Config.in -------------------------------------------------------------------------------- /package/fwts/fwts.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fwts/fwts.hash -------------------------------------------------------------------------------- /package/fwts/fwts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fwts/fwts.mk -------------------------------------------------------------------------------- /package/fwup/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fwup/Config.in -------------------------------------------------------------------------------- /package/fwup/fwup.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fwup/fwup.hash -------------------------------------------------------------------------------- /package/fwup/fwup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/fwup/fwup.mk -------------------------------------------------------------------------------- /package/gamin/gamin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gamin/gamin.mk -------------------------------------------------------------------------------- /package/gawk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gawk/Config.in -------------------------------------------------------------------------------- /package/gawk/gawk.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gawk/gawk.hash -------------------------------------------------------------------------------- /package/gawk/gawk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gawk/gawk.mk -------------------------------------------------------------------------------- /package/gcc/gcc-final/gcc-final.hash: -------------------------------------------------------------------------------- 1 | ../gcc.hash -------------------------------------------------------------------------------- /package/gcc/gcc-initial/gcc-initial.hash: -------------------------------------------------------------------------------- 1 | ../gcc.hash -------------------------------------------------------------------------------- /package/gcc/gcc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gcc/gcc.hash -------------------------------------------------------------------------------- /package/gcc/gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gcc/gcc.mk -------------------------------------------------------------------------------- /package/gconf/gconf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gconf/gconf.mk -------------------------------------------------------------------------------- /package/gcr/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gcr/Config.in -------------------------------------------------------------------------------- /package/gcr/gcr.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gcr/gcr.hash -------------------------------------------------------------------------------- /package/gcr/gcr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gcr/gcr.mk -------------------------------------------------------------------------------- /package/gd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gd/Config.in -------------------------------------------------------------------------------- /package/gd/gd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gd/gd.hash -------------------------------------------------------------------------------- /package/gd/gd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gd/gd.mk -------------------------------------------------------------------------------- /package/gdb/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gdb/Config.in -------------------------------------------------------------------------------- /package/gdb/gdb.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gdb/gdb.hash -------------------------------------------------------------------------------- /package/gdb/gdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gdb/gdb.mk -------------------------------------------------------------------------------- /package/gdbm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gdbm/Config.in -------------------------------------------------------------------------------- /package/gdbm/gdbm.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gdbm/gdbm.hash -------------------------------------------------------------------------------- /package/gdbm/gdbm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gdbm/gdbm.mk -------------------------------------------------------------------------------- /package/geoip/geoip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/geoip/geoip.mk -------------------------------------------------------------------------------- /package/getent/getent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/getent/getent -------------------------------------------------------------------------------- /package/git/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/git/Config.in -------------------------------------------------------------------------------- /package/git/git.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/git/git.hash -------------------------------------------------------------------------------- /package/git/git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/git/git.mk -------------------------------------------------------------------------------- /package/gli/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gli/Config.in -------------------------------------------------------------------------------- /package/gli/gli.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gli/gli.hash -------------------------------------------------------------------------------- /package/gli/gli.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gli/gli.mk -------------------------------------------------------------------------------- /package/glibc/glibc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/glibc/glibc.mk -------------------------------------------------------------------------------- /package/glm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/glm/Config.in -------------------------------------------------------------------------------- /package/glm/glm.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/glm/glm.hash -------------------------------------------------------------------------------- /package/glm/glm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/glm/glm.mk -------------------------------------------------------------------------------- /package/glog/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/glog/Config.in -------------------------------------------------------------------------------- /package/glog/glog.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/glog/glog.hash -------------------------------------------------------------------------------- /package/glog/glog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/glog/glog.mk -------------------------------------------------------------------------------- /package/gmp/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gmp/Config.in -------------------------------------------------------------------------------- /package/gmp/gmp.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gmp/gmp.hash -------------------------------------------------------------------------------- /package/gmp/gmp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gmp/gmp.mk -------------------------------------------------------------------------------- /package/gmpc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gmpc/Config.in -------------------------------------------------------------------------------- /package/gmpc/gmpc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gmpc/gmpc.hash -------------------------------------------------------------------------------- /package/gmpc/gmpc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gmpc/gmpc.mk -------------------------------------------------------------------------------- /package/gnupg/gnupg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gnupg/gnupg.mk -------------------------------------------------------------------------------- /package/go/go.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/go/go.hash -------------------------------------------------------------------------------- /package/go/go.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/go/go.mk -------------------------------------------------------------------------------- /package/gob2/gob2.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gob2/gob2.hash -------------------------------------------------------------------------------- /package/gob2/gob2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gob2/gob2.mk -------------------------------------------------------------------------------- /package/gperf/gperf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gperf/gperf.mk -------------------------------------------------------------------------------- /package/gpm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gpm/Config.in -------------------------------------------------------------------------------- /package/gpm/gpm.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gpm/gpm.hash -------------------------------------------------------------------------------- /package/gpm/gpm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gpm/gpm.mk -------------------------------------------------------------------------------- /package/gpsd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gpsd/Config.in -------------------------------------------------------------------------------- /package/gpsd/S50gpsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gpsd/S50gpsd -------------------------------------------------------------------------------- /package/gpsd/gpsd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gpsd/gpsd.hash -------------------------------------------------------------------------------- /package/gpsd/gpsd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gpsd/gpsd.mk -------------------------------------------------------------------------------- /package/gqrx/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gqrx/Config.in -------------------------------------------------------------------------------- /package/gqrx/gqrx.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gqrx/gqrx.hash -------------------------------------------------------------------------------- /package/gqrx/gqrx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gqrx/gqrx.mk -------------------------------------------------------------------------------- /package/grep/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/grep/Config.in -------------------------------------------------------------------------------- /package/grep/grep.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/grep/grep.hash -------------------------------------------------------------------------------- /package/grep/grep.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/grep/grep.mk -------------------------------------------------------------------------------- /package/grpc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/grpc/Config.in -------------------------------------------------------------------------------- /package/grpc/grpc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/grpc/grpc.hash -------------------------------------------------------------------------------- /package/grpc/grpc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/grpc/grpc.mk -------------------------------------------------------------------------------- /package/gsl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gsl/Config.in -------------------------------------------------------------------------------- /package/gsl/gsl.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gsl/gsl.hash -------------------------------------------------------------------------------- /package/gsl/gsl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gsl/gsl.mk -------------------------------------------------------------------------------- /package/gssdp/gssdp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gssdp/gssdp.mk -------------------------------------------------------------------------------- /package/gstreamer1/gstreamer1.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/gstreamer1/*/*.mk)) 2 | -------------------------------------------------------------------------------- /package/gtest/gtest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gtest/gtest.mk -------------------------------------------------------------------------------- /package/guile/guile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/guile/guile.mk -------------------------------------------------------------------------------- /package/gupnp/gupnp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gupnp/gupnp.mk -------------------------------------------------------------------------------- /package/gvfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gvfs/Config.in -------------------------------------------------------------------------------- /package/gvfs/gvfs.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gvfs/gvfs.hash -------------------------------------------------------------------------------- /package/gvfs/gvfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gvfs/gvfs.mk -------------------------------------------------------------------------------- /package/gzip/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gzip/Config.in -------------------------------------------------------------------------------- /package/gzip/gzip.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gzip/gzip.hash -------------------------------------------------------------------------------- /package/gzip/gzip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/gzip/gzip.mk -------------------------------------------------------------------------------- /package/hans/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/hans/Config.in -------------------------------------------------------------------------------- /package/hans/hans.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/hans/hans.hash -------------------------------------------------------------------------------- /package/hans/hans.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/hans/hans.mk -------------------------------------------------------------------------------- /package/hplip/hplip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/hplip/hplip.mk -------------------------------------------------------------------------------- /package/htop/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/htop/Config.in -------------------------------------------------------------------------------- /package/htop/htop.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/htop/htop.hash -------------------------------------------------------------------------------- /package/htop/htop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/htop/htop.mk -------------------------------------------------------------------------------- /package/hwloc/hwloc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/hwloc/hwloc.mk -------------------------------------------------------------------------------- /package/i2pd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/i2pd/Config.in -------------------------------------------------------------------------------- /package/i2pd/S99i2pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/i2pd/S99i2pd -------------------------------------------------------------------------------- /package/i2pd/i2pd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/i2pd/i2pd.hash -------------------------------------------------------------------------------- /package/i2pd/i2pd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/i2pd/i2pd.mk -------------------------------------------------------------------------------- /package/i7z/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/i7z/Config.in -------------------------------------------------------------------------------- /package/i7z/i7z.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/i7z/i7z.hash -------------------------------------------------------------------------------- /package/i7z/i7z.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/i7z/i7z.mk -------------------------------------------------------------------------------- /package/icu/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/icu/Config.in -------------------------------------------------------------------------------- /package/icu/icu.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/icu/icu.hash -------------------------------------------------------------------------------- /package/icu/icu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/icu/icu.mk -------------------------------------------------------------------------------- /package/iftop/iftop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iftop/iftop.mk -------------------------------------------------------------------------------- /package/ifupdown-scripts/network/if-down.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/ifupdown-scripts/network/if-post-down.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/ifupdown-scripts/network/if-up.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/ijs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ijs/Config.in -------------------------------------------------------------------------------- /package/ijs/ijs.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ijs/ijs.hash -------------------------------------------------------------------------------- /package/ijs/ijs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ijs/ijs.mk -------------------------------------------------------------------------------- /package/iotop/iotop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iotop/iotop.mk -------------------------------------------------------------------------------- /package/iperf/iperf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iperf/iperf.mk -------------------------------------------------------------------------------- /package/ipset/ipset.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ipset/ipset.mk -------------------------------------------------------------------------------- /package/irssi/irssi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/irssi/irssi.mk -------------------------------------------------------------------------------- /package/isl/isl.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/isl/isl.hash -------------------------------------------------------------------------------- /package/isl/isl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/isl/isl.mk -------------------------------------------------------------------------------- /package/iw/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iw/Config.in -------------------------------------------------------------------------------- /package/iw/iw.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iw/iw.hash -------------------------------------------------------------------------------- /package/iw/iw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iw/iw.mk -------------------------------------------------------------------------------- /package/iwd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iwd/Config.in -------------------------------------------------------------------------------- /package/iwd/iwd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iwd/iwd.hash -------------------------------------------------------------------------------- /package/iwd/iwd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/iwd/iwd.mk -------------------------------------------------------------------------------- /package/jack1/jack1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jack1/jack1.mk -------------------------------------------------------------------------------- /package/jack2/jack2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jack2/jack2.mk -------------------------------------------------------------------------------- /package/jhead/jhead.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jhead/jhead.mk -------------------------------------------------------------------------------- /package/jo/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jo/Config.in -------------------------------------------------------------------------------- /package/jo/jo.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jo/jo.hash -------------------------------------------------------------------------------- /package/jo/jo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jo/jo.mk -------------------------------------------------------------------------------- /package/joe/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/joe/Config.in -------------------------------------------------------------------------------- /package/joe/joe.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/joe/joe.hash -------------------------------------------------------------------------------- /package/joe/joe.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/joe/joe.mk -------------------------------------------------------------------------------- /package/jose/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jose/Config.in -------------------------------------------------------------------------------- /package/jose/jose.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jose/jose.hash -------------------------------------------------------------------------------- /package/jose/jose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jose/jose.mk -------------------------------------------------------------------------------- /package/jpeg/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jpeg/Config.in -------------------------------------------------------------------------------- /package/jpeg/jpeg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jpeg/jpeg.mk -------------------------------------------------------------------------------- /package/jq/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jq/Config.in -------------------------------------------------------------------------------- /package/jq/jq.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jq/jq.hash -------------------------------------------------------------------------------- /package/jq/jq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jq/jq.mk -------------------------------------------------------------------------------- /package/jsmin/jsmin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jsmin/jsmin.mk -------------------------------------------------------------------------------- /package/jsmn/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jsmn/Config.in -------------------------------------------------------------------------------- /package/jsmn/jsmn.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jsmn/jsmn.hash -------------------------------------------------------------------------------- /package/jsmn/jsmn.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/jsmn/jsmn.mk -------------------------------------------------------------------------------- /package/kbd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kbd/Config.in -------------------------------------------------------------------------------- /package/kbd/kbd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kbd/kbd.hash -------------------------------------------------------------------------------- /package/kbd/kbd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kbd/kbd.mk -------------------------------------------------------------------------------- /package/kexec/kexec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kexec/kexec.mk -------------------------------------------------------------------------------- /package/kf5/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kf5/Config.in -------------------------------------------------------------------------------- /package/kf5/kf5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kf5/kf5.mk -------------------------------------------------------------------------------- /package/kmod/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kmod/Config.in -------------------------------------------------------------------------------- /package/kmod/kmod.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kmod/kmod.hash -------------------------------------------------------------------------------- /package/kmod/kmod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kmod/kmod.mk -------------------------------------------------------------------------------- /package/kmsxx/kmsxx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kmsxx/kmsxx.mk -------------------------------------------------------------------------------- /package/knock/knock.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/knock/knock.mk -------------------------------------------------------------------------------- /package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.hash: -------------------------------------------------------------------------------- 1 | ../kodi/kodi.hash -------------------------------------------------------------------------------- /package/kodi-texturepacker/kodi-texturepacker.hash: -------------------------------------------------------------------------------- 1 | ../kodi/kodi.hash -------------------------------------------------------------------------------- /package/kodi/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kodi/Config.in -------------------------------------------------------------------------------- /package/kodi/S50kodi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kodi/S50kodi -------------------------------------------------------------------------------- /package/kodi/br-kodi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kodi/br-kodi -------------------------------------------------------------------------------- /package/kodi/kodi.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kodi/kodi.hash -------------------------------------------------------------------------------- /package/kodi/kodi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kodi/kodi.mk -------------------------------------------------------------------------------- /package/ktap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ktap/Config.in -------------------------------------------------------------------------------- /package/ktap/ktap.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ktap/ktap.hash -------------------------------------------------------------------------------- /package/ktap/ktap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ktap/ktap.mk -------------------------------------------------------------------------------- /package/kyua/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kyua/Config.in -------------------------------------------------------------------------------- /package/kyua/kyua.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kyua/kyua.hash -------------------------------------------------------------------------------- /package/kyua/kyua.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/kyua/kyua.mk -------------------------------------------------------------------------------- /package/lame/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lame/Config.in -------------------------------------------------------------------------------- /package/lame/lame.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lame/lame.hash -------------------------------------------------------------------------------- /package/lame/lame.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lame/lame.mk -------------------------------------------------------------------------------- /package/lcms2/lcms2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lcms2/lcms2.mk -------------------------------------------------------------------------------- /package/less/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/less/Config.in -------------------------------------------------------------------------------- /package/less/less.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/less/less.hash -------------------------------------------------------------------------------- /package/less/less.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/less/less.mk -------------------------------------------------------------------------------- /package/lft/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lft/Config.in -------------------------------------------------------------------------------- /package/lft/lft.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lft/lft.hash -------------------------------------------------------------------------------- /package/lft/lft.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lft/lft.mk -------------------------------------------------------------------------------- /package/lftp/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lftp/Config.in -------------------------------------------------------------------------------- /package/lftp/lftp.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lftp/lftp.hash -------------------------------------------------------------------------------- /package/lftp/lftp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lftp/lftp.mk -------------------------------------------------------------------------------- /package/libao/libao.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libao/libao.mk -------------------------------------------------------------------------------- /package/libee/libee.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libee/libee.mk -------------------------------------------------------------------------------- /package/libev/libev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libev/libev.mk -------------------------------------------------------------------------------- /package/libfm/libfm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libfm/libfm.mk -------------------------------------------------------------------------------- /package/libiio/S99iiod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libiio/S99iiod -------------------------------------------------------------------------------- /package/liblo/liblo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/liblo/liblo.mk -------------------------------------------------------------------------------- /package/libmad/mad.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libmad/mad.pc -------------------------------------------------------------------------------- /package/libnl/libnl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libnl/libnl.mk -------------------------------------------------------------------------------- /package/libuv/libuv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libuv/libuv.mk -------------------------------------------------------------------------------- /package/libva/libva.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/libva/libva.mk -------------------------------------------------------------------------------- /package/links/links.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/links/links.mk -------------------------------------------------------------------------------- /package/linux-headers/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_LINUX_HEADERS 2 | bool 3 | -------------------------------------------------------------------------------- /package/linux-headers/linux-headers.hash: -------------------------------------------------------------------------------- 1 | ../../linux/linux.hash -------------------------------------------------------------------------------- /package/lite/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lite/Config.in -------------------------------------------------------------------------------- /package/lite/lite.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lite/lite.hash -------------------------------------------------------------------------------- /package/lite/lite.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lite/lite.mk -------------------------------------------------------------------------------- /package/lld/lld.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lld/lld.hash -------------------------------------------------------------------------------- /package/lld/lld.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lld/lld.mk -------------------------------------------------------------------------------- /package/lldpd/S60lldpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lldpd/S60lldpd -------------------------------------------------------------------------------- /package/lldpd/lldpd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lldpd/lldpd.mk -------------------------------------------------------------------------------- /package/llvm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/llvm/Config.in -------------------------------------------------------------------------------- /package/llvm/llvm.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/llvm/llvm.hash -------------------------------------------------------------------------------- /package/llvm/llvm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/llvm/llvm.mk -------------------------------------------------------------------------------- /package/lpeg/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lpeg/Config.in -------------------------------------------------------------------------------- /package/lpeg/lpeg.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lpeg/lpeg.hash -------------------------------------------------------------------------------- /package/lpeg/lpeg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lpeg/lpeg.mk -------------------------------------------------------------------------------- /package/lpty/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lpty/Config.in -------------------------------------------------------------------------------- /package/lpty/lpty.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lpty/lpty.hash -------------------------------------------------------------------------------- /package/lpty/lpty.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lpty/lpty.mk -------------------------------------------------------------------------------- /package/lrzip/lrzip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lrzip/lrzip.mk -------------------------------------------------------------------------------- /package/lrzsz/lrzsz.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lrzsz/lrzsz.mk -------------------------------------------------------------------------------- /package/lshw/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lshw/Config.in -------------------------------------------------------------------------------- /package/lshw/lshw.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lshw/lshw.hash -------------------------------------------------------------------------------- /package/lshw/lshw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lshw/lshw.mk -------------------------------------------------------------------------------- /package/lsof/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lsof/Config.in -------------------------------------------------------------------------------- /package/lsof/lsof.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lsof/lsof.hash -------------------------------------------------------------------------------- /package/lsof/lsof.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lsof/lsof.mk -------------------------------------------------------------------------------- /package/lsuio/lsuio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lsuio/lsuio.mk -------------------------------------------------------------------------------- /package/ltris/ltris.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ltris/ltris.mk -------------------------------------------------------------------------------- /package/lua/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lua/Config.in -------------------------------------------------------------------------------- /package/lua/lua.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lua/lua.hash -------------------------------------------------------------------------------- /package/lua/lua.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lua/lua.mk -------------------------------------------------------------------------------- /package/lua/lua.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lua/lua.pc.in -------------------------------------------------------------------------------- /package/lutok/lutok.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lutok/lutok.mk -------------------------------------------------------------------------------- /package/luv/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/luv/Config.in -------------------------------------------------------------------------------- /package/luv/luv.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/luv/luv.hash -------------------------------------------------------------------------------- /package/luv/luv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/luv/luv.mk -------------------------------------------------------------------------------- /package/luvi/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/luvi/Config.in -------------------------------------------------------------------------------- /package/luvi/luvi.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/luvi/luvi.hash -------------------------------------------------------------------------------- /package/luvi/luvi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/luvi/luvi.mk -------------------------------------------------------------------------------- /package/lvm2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lvm2/Config.in -------------------------------------------------------------------------------- /package/lvm2/lvm2.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lvm2/lvm2.hash -------------------------------------------------------------------------------- /package/lvm2/lvm2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lvm2/lvm2.mk -------------------------------------------------------------------------------- /package/lxc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lxc/Config.in -------------------------------------------------------------------------------- /package/lxc/lxc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lxc/lxc.hash -------------------------------------------------------------------------------- /package/lxc/lxc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lxc/lxc.mk -------------------------------------------------------------------------------- /package/lynx/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lynx/Config.in -------------------------------------------------------------------------------- /package/lynx/lynx.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lynx/lynx.hash -------------------------------------------------------------------------------- /package/lynx/lynx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lynx/lynx.mk -------------------------------------------------------------------------------- /package/lz4/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lz4/Config.in -------------------------------------------------------------------------------- /package/lz4/lz4.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lz4/lz4.hash -------------------------------------------------------------------------------- /package/lz4/lz4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lz4/lz4.mk -------------------------------------------------------------------------------- /package/lzip/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzip/Config.in -------------------------------------------------------------------------------- /package/lzip/lzip.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzip/lzip.hash -------------------------------------------------------------------------------- /package/lzip/lzip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzip/lzip.mk -------------------------------------------------------------------------------- /package/lzlib/lzlib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzlib/lzlib.mk -------------------------------------------------------------------------------- /package/lzma/lzma.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzma/lzma.hash -------------------------------------------------------------------------------- /package/lzma/lzma.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzma/lzma.mk -------------------------------------------------------------------------------- /package/lzo/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzo/Config.in -------------------------------------------------------------------------------- /package/lzo/lzo.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzo/lzo.hash -------------------------------------------------------------------------------- /package/lzo/lzo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzo/lzo.mk -------------------------------------------------------------------------------- /package/lzop/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzop/Config.in -------------------------------------------------------------------------------- /package/lzop/lzop.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzop/lzop.hash -------------------------------------------------------------------------------- /package/lzop/lzop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/lzop/lzop.mk -------------------------------------------------------------------------------- /package/m4/m4.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/m4/m4.hash -------------------------------------------------------------------------------- /package/m4/m4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/m4/m4.mk -------------------------------------------------------------------------------- /package/make/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/make/Config.in -------------------------------------------------------------------------------- /package/make/make.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/make/make.hash -------------------------------------------------------------------------------- /package/make/make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/make/make.mk -------------------------------------------------------------------------------- /package/mc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mc/Config.in -------------------------------------------------------------------------------- /package/mc/mc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mc/mc.hash -------------------------------------------------------------------------------- /package/mc/mc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mc/mc.mk -------------------------------------------------------------------------------- /package/mdadm/mdadm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mdadm/mdadm.mk -------------------------------------------------------------------------------- /package/mdevd/mdevd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mdevd/mdevd.mk -------------------------------------------------------------------------------- /package/mender/artifact_info: -------------------------------------------------------------------------------- 1 | artifact_name=BUILDROOT_ARTIFACT 2 | -------------------------------------------------------------------------------- /package/mender/device_type: -------------------------------------------------------------------------------- 1 | device_type=BUILDROOT_DEVICE 2 | -------------------------------------------------------------------------------- /package/mesa3d-headers/mesa3d-headers.hash: -------------------------------------------------------------------------------- 1 | ../mesa3d/mesa3d.hash -------------------------------------------------------------------------------- /package/meson/meson.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/meson/meson.mk -------------------------------------------------------------------------------- /package/mfoc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mfoc/Config.in -------------------------------------------------------------------------------- /package/mfoc/mfoc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mfoc/mfoc.hash -------------------------------------------------------------------------------- /package/mfoc/mfoc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mfoc/mfoc.mk -------------------------------------------------------------------------------- /package/mimic/mimic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mimic/mimic.mk -------------------------------------------------------------------------------- /package/mkpasswd/Config.in.host: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_HOST_MKPASSWD 2 | bool "host mkpasswd" 3 | -------------------------------------------------------------------------------- /package/mksh/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mksh/Config.in -------------------------------------------------------------------------------- /package/mksh/mksh.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mksh/mksh.hash -------------------------------------------------------------------------------- /package/mksh/mksh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mksh/mksh.mk -------------------------------------------------------------------------------- /package/monit/monit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/monit/monit.mk -------------------------------------------------------------------------------- /package/mono/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mono/Config.in -------------------------------------------------------------------------------- /package/mono/mono.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mono/mono.hash -------------------------------------------------------------------------------- /package/mono/mono.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mono/mono.mk -------------------------------------------------------------------------------- /package/mosh/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mosh/Config.in -------------------------------------------------------------------------------- /package/mosh/mosh.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mosh/mosh.hash -------------------------------------------------------------------------------- /package/mosh/mosh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mosh/mosh.mk -------------------------------------------------------------------------------- /package/most/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/most/Config.in -------------------------------------------------------------------------------- /package/most/most.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/most/most.hash -------------------------------------------------------------------------------- /package/most/most.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/most/most.mk -------------------------------------------------------------------------------- /package/mp4v2/mp4v2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mp4v2/mp4v2.mk -------------------------------------------------------------------------------- /package/mpc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpc/Config.in -------------------------------------------------------------------------------- /package/mpc/mpc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpc/mpc.hash -------------------------------------------------------------------------------- /package/mpc/mpc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpc/mpc.mk -------------------------------------------------------------------------------- /package/mpd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpd/Config.in -------------------------------------------------------------------------------- /package/mpd/S95mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpd/S95mpd -------------------------------------------------------------------------------- /package/mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpd/mpd.conf -------------------------------------------------------------------------------- /package/mpd/mpd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpd/mpd.hash -------------------------------------------------------------------------------- /package/mpd/mpd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpd/mpd.mk -------------------------------------------------------------------------------- /package/mpfr/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpfr/Config.in -------------------------------------------------------------------------------- /package/mpfr/mpfr.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpfr/mpfr.hash -------------------------------------------------------------------------------- /package/mpfr/mpfr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpfr/mpfr.mk -------------------------------------------------------------------------------- /package/mpir/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpir/Config.in -------------------------------------------------------------------------------- /package/mpir/mpir.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpir/mpir.hash -------------------------------------------------------------------------------- /package/mpir/mpir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpir/mpir.mk -------------------------------------------------------------------------------- /package/mpv/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpv/Config.in -------------------------------------------------------------------------------- /package/mpv/mpv.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpv/mpv.hash -------------------------------------------------------------------------------- /package/mpv/mpv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mpv/mpv.mk -------------------------------------------------------------------------------- /package/mraa/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mraa/Config.in -------------------------------------------------------------------------------- /package/mraa/mraa.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mraa/mraa.hash -------------------------------------------------------------------------------- /package/mraa/mraa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mraa/mraa.mk -------------------------------------------------------------------------------- /package/msmtp/msmtp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/msmtp/msmtp.mk -------------------------------------------------------------------------------- /package/mtd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mtd/Config.in -------------------------------------------------------------------------------- /package/mtd/mtd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mtd/mtd.hash -------------------------------------------------------------------------------- /package/mtd/mtd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mtd/mtd.mk -------------------------------------------------------------------------------- /package/mtdev/mtdev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mtdev/mtdev.mk -------------------------------------------------------------------------------- /package/mtr/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mtr/Config.in -------------------------------------------------------------------------------- /package/mtr/mtr.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mtr/mtr.hash -------------------------------------------------------------------------------- /package/mtr/mtr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mtr/mtr.mk -------------------------------------------------------------------------------- /package/musl-compat-headers/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_MUSL_COMPAT_HEADERS 2 | bool 3 | -------------------------------------------------------------------------------- /package/musl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/musl/Config.in -------------------------------------------------------------------------------- /package/musl/musl.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/musl/musl.hash -------------------------------------------------------------------------------- /package/musl/musl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/musl/musl.mk -------------------------------------------------------------------------------- /package/mutt/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mutt/Config.in -------------------------------------------------------------------------------- /package/mutt/mutt.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mutt/mutt.hash -------------------------------------------------------------------------------- /package/mutt/mutt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mutt/mutt.mk -------------------------------------------------------------------------------- /package/mxml/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mxml/Config.in -------------------------------------------------------------------------------- /package/mxml/mxml.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mxml/mxml.hash -------------------------------------------------------------------------------- /package/mxml/mxml.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mxml/mxml.mk -------------------------------------------------------------------------------- /package/mysql/mysql.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/mysql/mysql.mk -------------------------------------------------------------------------------- /package/nano/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nano/Config.in -------------------------------------------------------------------------------- /package/nano/nano.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nano/nano.hash -------------------------------------------------------------------------------- /package/nano/nano.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nano/nano.mk -------------------------------------------------------------------------------- /package/nasm/nasm.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nasm/nasm.hash -------------------------------------------------------------------------------- /package/nasm/nasm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nasm/nasm.mk -------------------------------------------------------------------------------- /package/nbd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nbd/Config.in -------------------------------------------------------------------------------- /package/nbd/nbd.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nbd/nbd.hash -------------------------------------------------------------------------------- /package/nbd/nbd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nbd/nbd.mk -------------------------------------------------------------------------------- /package/ncdu/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ncdu/Config.in -------------------------------------------------------------------------------- /package/ncdu/ncdu.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ncdu/ncdu.hash -------------------------------------------------------------------------------- /package/ncdu/ncdu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ncdu/ncdu.mk -------------------------------------------------------------------------------- /package/ncftp/ncftp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ncftp/ncftp.mk -------------------------------------------------------------------------------- /package/ncmpc/ncmpc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ncmpc/ncmpc.mk -------------------------------------------------------------------------------- /package/ne10/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ne10/Config.in -------------------------------------------------------------------------------- /package/ne10/ne10.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ne10/ne10.hash -------------------------------------------------------------------------------- /package/ne10/ne10.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ne10/ne10.mk -------------------------------------------------------------------------------- /package/neard/S53neard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/neard/S53neard -------------------------------------------------------------------------------- /package/neard/neard.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/neard/neard.mk -------------------------------------------------------------------------------- /package/neon/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/neon/Config.in -------------------------------------------------------------------------------- /package/neon/neon.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/neon/neon.hash -------------------------------------------------------------------------------- /package/neon/neon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/neon/neon.mk -------------------------------------------------------------------------------- /package/newt/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/newt/Config.in -------------------------------------------------------------------------------- /package/newt/newt.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/newt/newt.hash -------------------------------------------------------------------------------- /package/newt/newt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/newt/newt.mk -------------------------------------------------------------------------------- /package/nginx/S50nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nginx/S50nginx -------------------------------------------------------------------------------- /package/nginx/nginx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nginx/nginx.mk -------------------------------------------------------------------------------- /package/ngrep/ngrep.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ngrep/ngrep.mk -------------------------------------------------------------------------------- /package/ninja/ninja.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ninja/ninja.mk -------------------------------------------------------------------------------- /package/nload/nload.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nload/nload.mk -------------------------------------------------------------------------------- /package/nmap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nmap/Config.in -------------------------------------------------------------------------------- /package/nmap/nmap.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nmap/nmap.hash -------------------------------------------------------------------------------- /package/nmap/nmap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nmap/nmap.mk -------------------------------------------------------------------------------- /package/nmon/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nmon/Config.in -------------------------------------------------------------------------------- /package/nmon/nmon.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nmon/nmon.hash -------------------------------------------------------------------------------- /package/nmon/nmon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nmon/nmon.mk -------------------------------------------------------------------------------- /package/nodm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nodm/Config.in -------------------------------------------------------------------------------- /package/nodm/S90nodm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nodm/S90nodm -------------------------------------------------------------------------------- /package/nodm/nodm.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nodm/nodm.hash -------------------------------------------------------------------------------- /package/nodm/nodm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nodm/nodm.mk -------------------------------------------------------------------------------- /package/nodm/nodm.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nodm/nodm.pam -------------------------------------------------------------------------------- /package/noip/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/noip/Config.in -------------------------------------------------------------------------------- /package/noip/noip.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/noip/noip.hash -------------------------------------------------------------------------------- /package/noip/noip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/noip/noip.mk -------------------------------------------------------------------------------- /package/norm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/norm/Config.in -------------------------------------------------------------------------------- /package/norm/norm.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/norm/norm.hash -------------------------------------------------------------------------------- /package/norm/norm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/norm/norm.mk -------------------------------------------------------------------------------- /package/ntp/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ntp/Config.in -------------------------------------------------------------------------------- /package/ntp/S48sntp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ntp/S48sntp -------------------------------------------------------------------------------- /package/ntp/S49ntp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ntp/S49ntp -------------------------------------------------------------------------------- /package/ntp/ntp.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ntp/ntp.hash -------------------------------------------------------------------------------- /package/ntp/ntp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ntp/ntp.mk -------------------------------------------------------------------------------- /package/nut/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nut/Config.in -------------------------------------------------------------------------------- /package/nut/nut.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nut/nut.hash -------------------------------------------------------------------------------- /package/nut/nut.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nut/nut.mk -------------------------------------------------------------------------------- /package/nvme/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nvme/Config.in -------------------------------------------------------------------------------- /package/nvme/nvme.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nvme/nvme.hash -------------------------------------------------------------------------------- /package/nvme/nvme.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/nvme/nvme.mk -------------------------------------------------------------------------------- /package/ocrad/ocrad.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ocrad/ocrad.mk -------------------------------------------------------------------------------- /package/ofono/S46ofono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ofono/S46ofono -------------------------------------------------------------------------------- /package/ofono/ofono.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ofono/ofono.mk -------------------------------------------------------------------------------- /package/ogre/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ogre/Config.in -------------------------------------------------------------------------------- /package/ogre/ogre.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ogre/ogre.hash -------------------------------------------------------------------------------- /package/ogre/ogre.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ogre/ogre.mk -------------------------------------------------------------------------------- /package/olsr/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/olsr/Config.in -------------------------------------------------------------------------------- /package/olsr/S50olsr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/olsr/S50olsr -------------------------------------------------------------------------------- /package/olsr/olsr.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/olsr/olsr.hash -------------------------------------------------------------------------------- /package/olsr/olsr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/olsr/olsr.mk -------------------------------------------------------------------------------- /package/opengl/opengl.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/opengl/*/*.mk)) 2 | -------------------------------------------------------------------------------- /package/openrc/getty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/openrc/getty -------------------------------------------------------------------------------- /package/openssh/sshd-sysusers.conf: -------------------------------------------------------------------------------- 1 | u sshd - "SSH drop priv user" /var/empty 2 | -------------------------------------------------------------------------------- /package/opkg/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/opkg/Config.in -------------------------------------------------------------------------------- /package/opkg/opkg.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/opkg/opkg.hash -------------------------------------------------------------------------------- /package/opkg/opkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/opkg/opkg.mk -------------------------------------------------------------------------------- /package/opus/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/opus/Config.in -------------------------------------------------------------------------------- /package/opus/opus.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/opus/opus.hash -------------------------------------------------------------------------------- /package/opus/opus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/opus/opus.mk -------------------------------------------------------------------------------- /package/orbit/orbit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/orbit/orbit.mk -------------------------------------------------------------------------------- /package/orc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/orc/Config.in -------------------------------------------------------------------------------- /package/orc/orc.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/orc/orc.hash -------------------------------------------------------------------------------- /package/orc/orc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/orc/orc.mk -------------------------------------------------------------------------------- /package/ortp/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ortp/Config.in -------------------------------------------------------------------------------- /package/ortp/ortp.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ortp/ortp.hash -------------------------------------------------------------------------------- /package/ortp/ortp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ortp/ortp.mk -------------------------------------------------------------------------------- /package/owfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/owfs/Config.in -------------------------------------------------------------------------------- /package/owfs/S60owfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/owfs/S60owfs -------------------------------------------------------------------------------- /package/owfs/owfs.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/owfs/owfs.hash -------------------------------------------------------------------------------- /package/owfs/owfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/owfs/owfs.mk -------------------------------------------------------------------------------- /package/p7zip/p7zip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/p7zip/p7zip.mk -------------------------------------------------------------------------------- /package/pango/pango.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/pango/pango.mk -------------------------------------------------------------------------------- /package/patch/patch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/patch/patch.mk -------------------------------------------------------------------------------- /package/pcre/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/pcre/Config.in -------------------------------------------------------------------------------- /package/petitboot/fs-overlay/etc/locale: -------------------------------------------------------------------------------- 1 | LANG=en_US.utf-8 2 | -------------------------------------------------------------------------------- /package/php/php.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/php/php.mk -------------------------------------------------------------------------------- /package/pkg-perl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/pkg-perl.mk -------------------------------------------------------------------------------- /package/pkg-waf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/pkg-waf.mk -------------------------------------------------------------------------------- /package/pv/pv.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/pv/pv.hash -------------------------------------------------------------------------------- /package/pv/pv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/pv/pv.mk -------------------------------------------------------------------------------- /package/python3-mako/python3-mako.hash: -------------------------------------------------------------------------------- 1 | ../python-mako/python-mako.hash -------------------------------------------------------------------------------- /package/python3-setuptools/0001-add-executable.patch: -------------------------------------------------------------------------------- 1 | ../python-setuptools/0001-add-executable.patch -------------------------------------------------------------------------------- /package/python3-setuptools/python3-setuptools.hash: -------------------------------------------------------------------------------- 1 | ../python-setuptools/python-setuptools.hash -------------------------------------------------------------------------------- /package/qt5/qt5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/qt5/qt5.mk -------------------------------------------------------------------------------- /package/qt5/qt5base/qplatformdefs.h: -------------------------------------------------------------------------------- 1 | #include "../../linux-g++/qplatformdefs.h" 2 | -------------------------------------------------------------------------------- /package/qwt/qwt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/qwt/qwt.mk -------------------------------------------------------------------------------- /package/radvd/50-radvd.preset: -------------------------------------------------------------------------------- 1 | disable radvd.service 2 | -------------------------------------------------------------------------------- /package/rcw/rcw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/rcw/rcw.mk -------------------------------------------------------------------------------- /package/rpm/rpm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/rpm/rpm.mk -------------------------------------------------------------------------------- /package/s6/s6.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/s6/s6.hash -------------------------------------------------------------------------------- /package/s6/s6.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/s6/s6.mk -------------------------------------------------------------------------------- /package/sbc/sbc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/sbc/sbc.mk -------------------------------------------------------------------------------- /package/sdl/sdl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/sdl/sdl.mk -------------------------------------------------------------------------------- /package/sed/sed.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/sed/sed.mk -------------------------------------------------------------------------------- /package/skeleton-init-common/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_SKELETON_INIT_COMMON 2 | bool 3 | -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/dev/log: -------------------------------------------------------------------------------- 1 | ../tmp/log -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/etc/conf.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/etc/runlevels/default/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/etc/runlevels/default/sysv-rcs: -------------------------------------------------------------------------------- 1 | /etc/init.d/sysv-rcs -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/var/cache: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/var/lib/misc: -------------------------------------------------------------------------------- 1 | ../../tmp -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/var/lock: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/var/log: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/var/run: -------------------------------------------------------------------------------- 1 | ../run -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/var/spool: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-openrc/skeleton/var/tmp: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/dev/log: -------------------------------------------------------------------------------- 1 | ../tmp/log -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/dev/pts/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/dev/shm/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/cache: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/lib/misc: -------------------------------------------------------------------------------- 1 | ../../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/lock: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/log: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/run: -------------------------------------------------------------------------------- 1 | ../run -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/spool: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/skeleton-init-sysv/skeleton/var/tmp: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /package/sl/sl.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/sl/sl.hash -------------------------------------------------------------------------------- /package/sl/sl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/sl/sl.mk -------------------------------------------------------------------------------- /package/sox/sox.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/sox/sox.mk -------------------------------------------------------------------------------- /package/systemd/boot-files/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 3 2 | default buildroot 3 | -------------------------------------------------------------------------------- /package/tar/tar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/tar/tar.mk -------------------------------------------------------------------------------- /package/tcl/tcl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/tcl/tcl.mk -------------------------------------------------------------------------------- /package/ti-gfx/powervr.ini: -------------------------------------------------------------------------------- 1 | [default] 2 | WindowSystem=libpvrPVR2D_FRONTWSEGL.so 3 | -------------------------------------------------------------------------------- /package/tio/tio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/tio/tio.mk -------------------------------------------------------------------------------- /package/tk/tk.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/tk/tk.hash -------------------------------------------------------------------------------- /package/tk/tk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/tk/tk.mk -------------------------------------------------------------------------------- /package/tor/tor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/tor/tor.mk -------------------------------------------------------------------------------- /package/tz/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_TZ 2 | bool 3 | help 4 | Timezone info for uClibc. 5 | -------------------------------------------------------------------------------- /package/tz/tz.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/tz/tz.mk -------------------------------------------------------------------------------- /package/ucl/ucl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/ucl/ucl.mk -------------------------------------------------------------------------------- /package/upx/upx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/upx/upx.mk -------------------------------------------------------------------------------- /package/urg/urg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/urg/urg.mk -------------------------------------------------------------------------------- /package/uvw/uvw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/uvw/uvw.mk -------------------------------------------------------------------------------- /package/vdr/vdr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/vdr/vdr.mk -------------------------------------------------------------------------------- /package/vim/vim.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/vim/vim.mk -------------------------------------------------------------------------------- /package/vlc/vlc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/vlc/vlc.mk -------------------------------------------------------------------------------- /package/vte/vte.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/vte/vte.mk -------------------------------------------------------------------------------- /package/waf/waf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/waf/waf.mk -------------------------------------------------------------------------------- /package/x11r7/x11r7.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/x11r7/*/*.mk)) 2 | -------------------------------------------------------------------------------- /package/x11r7/xcursor-transparent-theme/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Inherits=xcursor-transparent 3 | -------------------------------------------------------------------------------- /package/xen/xen.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/xen/xen.mk -------------------------------------------------------------------------------- /package/xz/xz.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/xz/xz.hash -------------------------------------------------------------------------------- /package/xz/xz.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/xz/xz.mk -------------------------------------------------------------------------------- /package/yad/yad.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/yad/yad.mk -------------------------------------------------------------------------------- /package/zic/zic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/zic/zic.mk -------------------------------------------------------------------------------- /package/zip/zip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/zip/zip.mk -------------------------------------------------------------------------------- /package/znc/znc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/znc/znc.mk -------------------------------------------------------------------------------- /package/zsh/zsh.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/package/zsh/zsh.mk -------------------------------------------------------------------------------- /support/config-fragments/autobuild/br-microblazeel-full-internal.config: -------------------------------------------------------------------------------- 1 | BR2_microblazeel=y 2 | -------------------------------------------------------------------------------- /support/download/hg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/support/download/hg -------------------------------------------------------------------------------- /support/kconfig/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Quilt is being used to handle the patch series 3 | # 4 | .pc 5 | -------------------------------------------------------------------------------- /support/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /support/testing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/boot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/core/post-fakeroot.sh: -------------------------------------------------------------------------------- 1 | post-build.sh -------------------------------------------------------------------------------- /support/testing/tests/core/post-image.sh: -------------------------------------------------------------------------------- 1 | post-build.sh -------------------------------------------------------------------------------- /support/testing/tests/core/rootfs-overlay1/test-file1: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /support/testing/tests/core/rootfs-overlay2/etc/test-file2: -------------------------------------------------------------------------------- 1 | barfoo 2 | -------------------------------------------------------------------------------- /support/testing/tests/core/squashfs-xattr-kernel.config: -------------------------------------------------------------------------------- 1 | CONFIG_SQUASHFS_XATTR=y 2 | -------------------------------------------------------------------------------- /support/testing/tests/download/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/download/br2-external/git-hash/Config.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/download/br2-external/git-hash/external.desc: -------------------------------------------------------------------------------- 1 | name: GIT_HASH 2 | -------------------------------------------------------------------------------- /support/testing/tests/download/br2-external/git-refs/Config.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/download/br2-external/git-refs/external.desc: -------------------------------------------------------------------------------- 1 | name: GIT_REFS 2 | -------------------------------------------------------------------------------- /support/testing/tests/download/git-remote/refs-sub1.git/.gitattributes: -------------------------------------------------------------------------------- 1 | objects/*/* binary 2 | -------------------------------------------------------------------------------- /support/testing/tests/download/git-remote/refs-sub2.git/.gitattributes: -------------------------------------------------------------------------------- 1 | objects/*/* binary 2 | -------------------------------------------------------------------------------- /support/testing/tests/download/git-remote/repo.git/.gitattributes: -------------------------------------------------------------------------------- 1 | objects/*/* binary 2 | -------------------------------------------------------------------------------- /support/testing/tests/download/git-remote/repo.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /support/testing/tests/fs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/init/systemd-factory/var/foo/bar: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /support/testing/tests/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/package/br2-external/openjdk/external.desc: -------------------------------------------------------------------------------- 1 | name: OPENJDK 2 | -------------------------------------------------------------------------------- /support/testing/tests/package/sample_libftdi1.py: -------------------------------------------------------------------------------- 1 | import ftdi1 # noqa 2 | -------------------------------------------------------------------------------- /support/testing/tests/package/sample_python_autobahn.py: -------------------------------------------------------------------------------- 1 | import autobahn.wamp # noqa 2 | -------------------------------------------------------------------------------- /support/testing/tests/package/sample_python_django.py: -------------------------------------------------------------------------------- 1 | import django # noqa: F401 2 | -------------------------------------------------------------------------------- /support/testing/tests/package/sample_python_gitdb2.py: -------------------------------------------------------------------------------- 1 | from gitdb import * # noqa 2 | -------------------------------------------------------------------------------- /support/testing/tests/package/sample_python_gobject.py: -------------------------------------------------------------------------------- 1 | import gobject # noqa 2 | -------------------------------------------------------------------------------- /support/testing/tests/package/sample_python_txtorcon.py: -------------------------------------------------------------------------------- 1 | import txtorcon # noqa 2 | -------------------------------------------------------------------------------- /support/testing/tests/toolchain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/testing/tests/utils/br2-external/Config.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /support/testing/tests/utils/br2-external/external.desc: -------------------------------------------------------------------------------- 1 | name: CHECK_PACKAGE 2 | -------------------------------------------------------------------------------- /support/testing/tests/utils/br2-external/external.mk: -------------------------------------------------------------------------------- 1 | custom-target: 2 | @echo "do nothing" 3 | -------------------------------------------------------------------------------- /support/testing/tests/utils/br2-external/package/external/external.mk: -------------------------------------------------------------------------------- 1 | # wrong 2 | -------------------------------------------------------------------------------- /system/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/system/Config.in -------------------------------------------------------------------------------- /system/skeleton/dev/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/dev/fd: -------------------------------------------------------------------------------- 1 | ../proc/self/fd -------------------------------------------------------------------------------- /system/skeleton/dev/stderr: -------------------------------------------------------------------------------- 1 | ../proc/self/fd/2 -------------------------------------------------------------------------------- /system/skeleton/dev/stdin: -------------------------------------------------------------------------------- 1 | ../proc/self/fd/0 -------------------------------------------------------------------------------- /system/skeleton/dev/stdout: -------------------------------------------------------------------------------- 1 | ../proc/self/fd/1 -------------------------------------------------------------------------------- /system/skeleton/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /system/skeleton/etc/mtab: -------------------------------------------------------------------------------- 1 | ../proc/self/mounts -------------------------------------------------------------------------------- /system/skeleton/etc/profile.d/umask.sh: -------------------------------------------------------------------------------- 1 | umask 022 2 | -------------------------------------------------------------------------------- /system/skeleton/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | ../tmp/resolv.conf -------------------------------------------------------------------------------- /system/skeleton/media/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/mnt/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/opt/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/proc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/root/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/run/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/sys/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/tmp/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/usr/bin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/usr/lib/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/skeleton/usr/sbin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/system.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/system/system.mk -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /utils/brmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/brmake -------------------------------------------------------------------------------- /utils/check-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/check-package -------------------------------------------------------------------------------- /utils/checkpackagelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/config -------------------------------------------------------------------------------- /utils/diffconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/diffconfig -------------------------------------------------------------------------------- /utils/genrandconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/genrandconfig -------------------------------------------------------------------------------- /utils/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/readme.txt -------------------------------------------------------------------------------- /utils/scancpan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/scancpan -------------------------------------------------------------------------------- /utils/scanpypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/scanpypi -------------------------------------------------------------------------------- /utils/test-pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glevand/petitboot--buildroot/HEAD/utils/test-pkg --------------------------------------------------------------------------------