gitextract_t2pmi41l/ ├── .defconfig ├── .flake8 ├── .gitignore ├── CHANGES ├── COPYING ├── Config.in ├── Config.in.legacy ├── DEVELOPERS ├── Makefile ├── Makefile.legacy ├── 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.s390x │ ├── 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/ │ ├── common/ │ │ ├── busybox.config │ │ ├── busybox_initramfs.config │ │ ├── cleanup.sh │ │ ├── overlay/ │ │ │ ├── boot/ │ │ │ │ └── .empty │ │ │ ├── data/ │ │ │ │ └── .empty │ │ │ ├── etc/ │ │ │ │ ├── adminpasswd.d/ │ │ │ │ │ └── .empty │ │ │ │ ├── captive-portal.conf │ │ │ │ ├── crontabs/ │ │ │ │ │ └── root │ │ │ │ ├── date.conf │ │ │ │ ├── dbus-1/ │ │ │ │ │ └── system.conf │ │ │ │ ├── dehydrated/ │ │ │ │ │ └── config │ │ │ │ ├── docker/ │ │ │ │ │ └── daemon.json │ │ │ │ ├── fstab.disk │ │ │ │ ├── fstab.extra │ │ │ │ ├── fstab.overlay │ │ │ │ ├── fstab.sys │ │ │ │ ├── group │ │ │ │ ├── init.d/ │ │ │ │ │ ├── S00datapart │ │ │ │ │ ├── S01mountall │ │ │ │ │ ├── S01toemmc │ │ │ │ │ ├── S02defaultdata │ │ │ │ │ ├── S02restorebackups │ │ │ │ │ ├── S03modules │ │ │ │ │ ├── S04hostname │ │ │ │ │ ├── S05cpufreq │ │ │ │ │ ├── S05syslog │ │ │ │ │ ├── S10sysctl │ │ │ │ │ ├── S12udev │ │ │ │ │ ├── S13btuart │ │ │ │ │ ├── S13watchdog │ │ │ │ │ ├── S14postupgrade │ │ │ │ │ ├── S15rngd │ │ │ │ │ ├── S30dbus │ │ │ │ │ ├── S31ifalias │ │ │ │ │ ├── S35wifi │ │ │ │ │ ├── S36ppp │ │ │ │ │ ├── S37bluetooth │ │ │ │ │ ├── S39factoryreset │ │ │ │ │ ├── S40network │ │ │ │ │ ├── S41netwatch │ │ │ │ │ ├── S42connman │ │ │ │ │ ├── S43firewall │ │ │ │ │ ├── S44hostapd │ │ │ │ │ ├── S44shownetinfo │ │ │ │ │ ├── S45dnsmasq │ │ │ │ │ ├── S50date │ │ │ │ │ ├── S51crond │ │ │ │ │ ├── S52postupgradenet │ │ │ │ │ ├── S55openvpn │ │ │ │ │ ├── S60dockerd │ │ │ │ │ ├── S60sshd │ │ │ │ │ ├── S61proftpd │ │ │ │ │ ├── S62smb │ │ │ │ │ ├── S70mongod │ │ │ │ │ ├── S71redis │ │ │ │ │ ├── S72postgresql │ │ │ │ │ ├── S79postupgradeapp │ │ │ │ │ ├── S80dockercompose │ │ │ │ │ ├── S97dyndns │ │ │ │ │ ├── S98userinit │ │ │ │ │ ├── base │ │ │ │ │ ├── boardsn │ │ │ │ │ ├── bootdone │ │ │ │ │ ├── mountsys │ │ │ │ │ ├── os_conf │ │ │ │ │ ├── rcK │ │ │ │ │ └── rcS │ │ │ │ ├── inittab │ │ │ │ ├── inputrc │ │ │ │ ├── issue │ │ │ │ ├── logrotate.conf │ │ │ │ ├── mime.types │ │ │ │ ├── modprobe.d/ │ │ │ │ │ └── modprobe.conf │ │ │ │ ├── modules │ │ │ │ ├── netwatch.conf │ │ │ │ ├── nsswitch.conf │ │ │ │ ├── ntp.conf │ │ │ │ ├── os.conf │ │ │ │ ├── ppp/ │ │ │ │ │ ├── chatscripts/ │ │ │ │ │ │ └── mobile.chat │ │ │ │ │ ├── ip-up │ │ │ │ │ ├── options │ │ │ │ │ └── peers/ │ │ │ │ │ └── mobile │ │ │ │ ├── profile │ │ │ │ ├── protocols │ │ │ │ ├── random-seed │ │ │ │ ├── securetty │ │ │ │ ├── services │ │ │ │ ├── ssh/ │ │ │ │ │ └── sshd_config │ │ │ │ ├── syslog.conf │ │ │ │ ├── udev/ │ │ │ │ │ └── rules.d/ │ │ │ │ │ └── 61-usb-storage.rules │ │ │ │ ├── version │ │ │ │ └── wpa_supplicant.conf │ │ │ ├── sbin/ │ │ │ │ ├── dhclient-script │ │ │ │ ├── fwupdate │ │ │ │ ├── panic │ │ │ │ ├── poweroff │ │ │ │ ├── reboot │ │ │ │ ├── service │ │ │ │ └── toemmc │ │ │ └── usr/ │ │ │ ├── bin/ │ │ │ │ └── gpio.sh │ │ │ ├── libexec/ │ │ │ │ ├── dehydrated-dumb-httpd │ │ │ │ ├── dehydrated-hook │ │ │ │ └── fwupdate-auto │ │ │ ├── sbin/ │ │ │ │ ├── adminpasswd │ │ │ │ ├── dehydrated-wrapper │ │ │ │ ├── dyndns-update │ │ │ │ └── https-update │ │ │ └── share/ │ │ │ ├── dataoverlay/ │ │ │ │ └── .empty │ │ │ ├── dataskel/ │ │ │ │ ├── etc/ │ │ │ │ │ └── .empty │ │ │ │ ├── log/ │ │ │ │ │ └── .empty │ │ │ │ ├── media/ │ │ │ │ │ └── .empty │ │ │ │ ├── usr/ │ │ │ │ │ └── .empty │ │ │ │ └── varlib/ │ │ │ │ └── .empty │ │ │ ├── post-upgrade/ │ │ │ │ └── .empty │ │ │ └── pre-upgrade/ │ │ │ └── postgresql.sh │ │ ├── overlay-initramfs/ │ │ │ ├── boot/ │ │ │ │ └── .empty │ │ │ ├── data/ │ │ │ │ └── .empty │ │ │ └── init │ │ └── postscript.sh │ ├── nanopir1/ │ │ ├── board.conf │ │ ├── boot.cmd │ │ ├── cpinitramfs.sh │ │ ├── kernel-extra.config │ │ ├── overlay/ │ │ │ ├── etc/ │ │ │ │ ├── board │ │ │ │ ├── init.d/ │ │ │ │ │ ├── S00statusled │ │ │ │ │ ├── S41netled │ │ │ │ │ └── S99okled │ │ │ │ └── os-platform.conf │ │ │ ├── lib/ │ │ │ │ └── firmware/ │ │ │ │ └── ap6212/ │ │ │ │ ├── bcm43438a0.hcd │ │ │ │ ├── bcm43438a1.hcd │ │ │ │ ├── config.txt │ │ │ │ ├── nvram.txt │ │ │ │ └── nvram_ap6212.txt │ │ │ └── usr/ │ │ │ └── libexec/ │ │ │ ├── after-factory-reset │ │ │ ├── brcm_patchram_plus │ │ │ ├── btuart │ │ │ └── fw-prepare-boot │ │ ├── overlay-initramfs/ │ │ │ └── remove_initramfs │ │ ├── postscript.sh │ │ └── uEnv.txt │ ├── radxacm3/ │ │ ├── board.conf │ │ ├── boot.cmd │ │ ├── cpinitramfs.sh │ │ ├── overlay/ │ │ │ ├── etc/ │ │ │ │ └── board │ │ │ ├── lib/ │ │ │ │ └── firmware/ │ │ │ │ ├── brcm/ │ │ │ │ │ ├── BCM43430A1.hcd │ │ │ │ │ ├── BCM43455_003.001.025.0160.0303.hcd │ │ │ │ │ ├── BCM4345C0.hcd │ │ │ │ │ ├── BCM4345C0_003.001.025.0162.0000_Generic_UART_37_4MHz_wlbga_ref_iLNA_iTR_eLG.hcd │ │ │ │ │ ├── BCM4345C5.hcd │ │ │ │ │ ├── brcmfmac43430-sdio.txt │ │ │ │ │ ├── brcmfmac43455-sdio.clm_blob │ │ │ │ │ ├── brcmfmac43455-sdio.radxa,rockpi4b.txt │ │ │ │ │ ├── brcmfmac43455-sdio.txt │ │ │ │ │ └── brcmfmac43456-sdio.txt │ │ │ │ ├── nvram_ap6212a.txt │ │ │ │ ├── nvram_ap6236.txt │ │ │ │ ├── nvram_ap6255.txt │ │ │ │ ├── nvram_ap6256.txt │ │ │ │ ├── nvram_ap6275s.txt │ │ │ │ ├── nvram_ap6356.txt │ │ │ │ ├── nvram_ap6356s.txt │ │ │ │ ├── nvram_ap6398s.txt │ │ │ │ ├── nvram_ap6398sr3.txt │ │ │ │ └── nvram_azw256.txt │ │ │ └── usr/ │ │ │ └── libexec/ │ │ │ ├── brcm_patchram_plus1 │ │ │ ├── btuart │ │ │ └── fw-prepare-boot │ │ ├── overlay-initramfs/ │ │ │ └── remove_initramfs │ │ ├── postscript.sh │ │ ├── rk3568_bl31_v1.32.elf │ │ ├── uEnv.txt │ │ └── writeimage.sh │ ├── raspberrypi/ │ │ ├── cleanups.sh │ │ ├── cmdline.txt │ │ ├── config.txt │ │ ├── cpinitramfs.sh │ │ ├── overlay/ │ │ │ ├── etc/ │ │ │ │ ├── board │ │ │ │ ├── init.d/ │ │ │ │ │ ├── S07dtoverlays │ │ │ │ │ └── S11throttlewatch │ │ │ │ ├── ld.so.preload │ │ │ │ ├── modprobe.d/ │ │ │ │ │ └── blacklist-rtl8192cu.conf │ │ │ │ ├── modules │ │ │ │ └── udev/ │ │ │ │ └── rules.d/ │ │ │ │ └── 99-com.rules │ │ │ └── usr/ │ │ │ └── libexec/ │ │ │ ├── btuart │ │ │ └── fw-prepare-boot │ │ ├── overlay-initramfs/ │ │ │ └── remove_initramfs │ │ ├── postscript.sh │ │ ├── update-firmware-kernel.sh │ │ └── update-userland.sh │ ├── raspberrypi2/ │ │ ├── cmdline.txt │ │ ├── config.txt │ │ ├── overlay/ │ │ │ ├── etc/ │ │ │ │ ├── board │ │ │ │ ├── init.d/ │ │ │ │ │ ├── S07dtoverlays │ │ │ │ │ └── S11throttlewatch │ │ │ │ ├── ld.so.preload │ │ │ │ ├── modprobe.d/ │ │ │ │ │ └── blacklist-rtl8192cu.conf │ │ │ │ └── modules │ │ │ └── usr/ │ │ │ └── libexec/ │ │ │ └── fw-prepare-boot │ │ └── postscript.sh │ ├── raspberrypi3/ │ │ ├── cmdline.txt │ │ ├── config.txt │ │ ├── overlay/ │ │ │ ├── etc/ │ │ │ │ ├── board │ │ │ │ ├── init.d/ │ │ │ │ │ ├── S07dtoverlays │ │ │ │ │ └── S11throttlewatch │ │ │ │ ├── ld.so.preload │ │ │ │ ├── modprobe.d/ │ │ │ │ │ └── blacklist-rtl8192cu.conf │ │ │ │ ├── modules │ │ │ │ └── udev/ │ │ │ │ └── rules.d/ │ │ │ │ └── 99-com.rules │ │ │ └── usr/ │ │ │ └── libexec/ │ │ │ ├── btuart │ │ │ └── fw-prepare-boot │ │ └── postscript.sh │ ├── raspberrypi4/ │ │ ├── cmdline.txt │ │ ├── config.txt │ │ ├── overlay/ │ │ │ ├── etc/ │ │ │ │ ├── board │ │ │ │ ├── init.d/ │ │ │ │ │ ├── S07dtoverlays │ │ │ │ │ └── S11throttlewatch │ │ │ │ ├── ld.so.preload │ │ │ │ ├── modprobe.d/ │ │ │ │ │ └── blacklist-rtl8192cu.conf │ │ │ │ ├── modules │ │ │ │ └── udev/ │ │ │ │ └── rules.d/ │ │ │ │ └── 99-com.rules │ │ │ ├── lib/ │ │ │ │ └── firmware/ │ │ │ │ └── brcm/ │ │ │ │ ├── BCM43430A1.hcd │ │ │ │ ├── BCM4345C0.hcd │ │ │ │ ├── BCM4345C5.hcd │ │ │ │ ├── brcmfmac43430-sdio.clm_blob │ │ │ │ ├── brcmfmac43430-sdio.txt │ │ │ │ ├── brcmfmac43455-sdio.clm_blob │ │ │ │ ├── brcmfmac43455-sdio.txt │ │ │ │ ├── brcmfmac43456-sdio.clm_blob │ │ │ │ └── brcmfmac43456-sdio.txt │ │ │ └── usr/ │ │ │ └── libexec/ │ │ │ ├── btuart │ │ │ └── fw-prepare-boot │ │ └── postscript.sh │ ├── raspberrypi64/ │ │ ├── cmdline.txt │ │ ├── config.txt │ │ ├── overlay/ │ │ │ ├── etc/ │ │ │ │ ├── board │ │ │ │ ├── init.d/ │ │ │ │ │ ├── S07dtoverlays │ │ │ │ │ └── S11throttlewatch │ │ │ │ ├── modprobe.d/ │ │ │ │ │ └── blacklist-rtl8192cu.conf │ │ │ │ ├── modules │ │ │ │ └── udev/ │ │ │ │ └── rules.d/ │ │ │ │ └── 99-com.rules │ │ │ └── usr/ │ │ │ ├── bin/ │ │ │ │ ├── dtoverlay │ │ │ │ └── vcgencmd │ │ │ ├── lib/ │ │ │ │ ├── libdtovl.so.0 │ │ │ │ ├── libvchiq_arm.so.0 │ │ │ │ └── libvcos.so.0 │ │ │ └── libexec/ │ │ │ ├── btuart │ │ │ └── fw-prepare-boot │ │ └── postscript.sh │ └── rockpi4b/ │ ├── board.conf │ ├── boot.cmd │ ├── cpinitramfs.sh │ ├── extlinux.conf │ ├── hw_intfc.conf │ ├── linux.fragment │ ├── overlay/ │ │ ├── etc/ │ │ │ └── board │ │ ├── lib/ │ │ │ └── firmware/ │ │ │ ├── BCM4343B0.hcd │ │ │ └── nvram_azw372.txt │ │ └── usr/ │ │ └── libexec/ │ │ ├── brcm_patchram_plus1 │ │ ├── btuart │ │ └── fw-prepare-boot │ ├── overlay-initramfs/ │ │ └── remove_initramfs │ ├── postscript.sh │ ├── uEnv.txt │ ├── uboot/ │ │ └── 0001-fix-compiling-errors.patch │ └── writeimage.sh ├── boot/ │ ├── Config.in │ ├── afboot-stm32/ │ │ ├── 0001-Pass-fno-builtin-to-fix-build-with-gcc-10.patch │ │ ├── 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/ │ │ │ ├── Config.in │ │ │ └── barebox.mk │ │ ├── barebox-aux/ │ │ │ ├── Config.in │ │ │ └── barebox-aux.mk │ │ ├── barebox.hash │ │ └── barebox.mk │ ├── beaglev-ddrinit/ │ │ ├── Config.in │ │ ├── beaglev-ddrinit.hash │ │ └── beaglev-ddrinit.mk │ ├── beaglev-secondboot/ │ │ ├── Config.in │ │ ├── beaglev-secondboot.hash │ │ └── beaglev-secondboot.mk │ ├── binaries-marvell/ │ │ ├── Config.in │ │ ├── binaries-marvell.hash │ │ └── binaries-marvell.mk │ ├── boot-wrapper-aarch64/ │ │ ├── Config.in │ │ └── boot-wrapper-aarch64.mk │ ├── common.mk │ ├── edk2/ │ │ ├── Config.in │ │ ├── edk2.hash │ │ └── edk2.mk │ ├── grub2/ │ │ ├── 0001-build-Fix-GRUB-i386-pc-build-with-Ubuntu-gcc.patch │ │ ├── 0002-yylex-Make-lexer-fatal-errors-actually-be-fatal.patch │ │ ├── 0003-safemath-Add-some-arithmetic-primitives-that-check-f.patch │ │ ├── 0004-calloc-Make-sure-we-always-have-an-overflow-checking.patch │ │ ├── 0005-calloc-Use-calloc-at-most-places.patch │ │ ├── 0006-malloc-Use-overflow-checking-primitives-where-we-do-.patch │ │ ├── 0007-iso9660-Don-t-leak-memory-on-realloc-failures.patch │ │ ├── 0008-font-Do-not-load-more-than-one-NAME-section.patch │ │ ├── 0009-gfxmenu-Fix-double-free-in-load_image.patch │ │ ├── 0010-xnu-Fix-double-free-in-grub_xnu_devprop_add_property.patch │ │ ├── 0011-lzma-Make-sure-we-don-t-dereference-past-array.patch │ │ ├── 0012-term-Fix-overflow-on-user-inputs.patch │ │ ├── 0013-udf-Fix-memory-leak.patch │ │ ├── 0014-multiboot2-Fix-memory-leak-if-grub_create_loader_cmd.patch │ │ ├── 0015-tftp-Do-not-use-priority-queue.patch │ │ ├── 0016-relocator-Protect-grub_relocator_alloc_chunk_addr-in.patch │ │ ├── 0017-relocator-Protect-grub_relocator_alloc_chunk_align-m.patch │ │ ├── 0018-script-Remove-unused-fields-from-grub_script_functio.patch │ │ ├── 0019-script-Avoid-a-use-after-free-when-redefining-a-func.patch │ │ ├── 0020-relocator-Fix-grub_relocator_alloc_chunk_align-top-m.patch │ │ ├── 0021-hfsplus-Fix-two-more-overflows.patch │ │ ├── 0022-lvm-Fix-two-more-potential-data-dependent-alloc-over.patch │ │ ├── 0023-emu-Make-grub_free-NULL-safe.patch │ │ ├── 0024-efi-Fix-some-malformed-device-path-arithmetic-errors.patch │ │ ├── 0025-efi-chainloader-Propagate-errors-from-copy_file_path.patch │ │ ├── 0026-efi-Fix-use-after-free-in-halt-reboot-path.patch │ │ ├── 0027-loader-linux-Avoid-overflow-on-initrd-size-calculati.patch │ │ ├── 0028-linux-Fix-integer-overflows-in-initrd-size-handling.patch │ │ ├── 0029-efi-Make-shim_lock-GUID-and-protocol-type-public.patch │ │ ├── 0030-efi-Return-grub_efi_status_t-from-grub_efi_get_varia.patch │ │ ├── 0031-efi-Add-a-function-to-read-EFI-variables-with-attrib.patch │ │ ├── 0032-efi-Add-secure-boot-detection.patch │ │ ├── 0033-verifiers-Move-verifiers-API-to-kernel-image.patch │ │ ├── 0034-efi-Move-the-shim_lock-verifier-to-the-GRUB-core.patch │ │ ├── 0035-kern-Add-lockdown-support.patch │ │ ├── 0036-kern-lockdown-Set-a-variable-if-the-GRUB-is-locked-d.patch │ │ ├── 0037-efi-Lockdown-the-GRUB-when-the-UEFI-Secure-Boot-is-e.patch │ │ ├── 0038-efi-Use-grub_is_lockdown-instead-of-hardcoding-a-dis.patch │ │ ├── 0039-acpi-Don-t-register-the-acpi-command-when-locked-dow.patch │ │ ├── 0040-mmap-Don-t-register-cutmem-and-badram-commands-when-.patch │ │ ├── 0041-commands-Restrict-commands-that-can-load-BIOS-or-DT-.patch │ │ ├── 0042-commands-setpci-Restrict-setpci-command-when-locked-.patch │ │ ├── 0043-commands-hdparm-Restrict-hdparm-command-when-locked-.patch │ │ ├── 0044-gdb-Restrict-GDB-access-when-locked-down.patch │ │ ├── 0045-loader-xnu-Don-t-allow-loading-extension-and-package.patch │ │ ├── 0046-docs-Document-the-cutmem-command.patch │ │ ├── 0047-dl-Only-allow-unloading-modules-that-are-not-depende.patch │ │ ├── 0048-usb-Avoid-possible-out-of-bound-accesses-caused-by-m.patch │ │ ├── 0049-mmap-Fix-memory-leak-when-iterating-over-mapped-memo.patch │ │ ├── 0050-net-net-Fix-possible-dereference-to-of-a-NULL-pointe.patch │ │ ├── 0051-net-tftp-Fix-dangling-memory-pointer.patch │ │ ├── 0052-kern-parser-Fix-resource-leak-if-argc-0.patch │ │ ├── 0053-kern-efi-Fix-memory-leak-on-failure.patch │ │ ├── 0054-kern-efi-mm-Fix-possible-NULL-pointer-dereference.patch │ │ ├── 0055-gnulib-regexec-Resolve-unused-variable.patch │ │ ├── 0056-gnulib-regcomp-Fix-uninitialized-token-structure.patch │ │ ├── 0057-gnulib-argp-help-Fix-dereference-of-a-possibly-NULL-.patch │ │ ├── 0058-gnulib-regexec-Fix-possible-null-dereference.patch │ │ ├── 0059-gnulib-regcomp-Fix-uninitialized-re_token.patch │ │ ├── 0060-io-lzopio-Resolve-unnecessary-self-assignment-errors.patch │ │ ├── 0061-zstd-Initialize-seq_t-structure-fully.patch │ │ ├── 0062-kern-partition-Check-for-NULL-before-dereferencing-i.patch │ │ ├── 0063-disk-ldm-Make-sure-comp-data-is-freed-before-exiting.patch │ │ ├── 0064-disk-ldm-If-failed-then-free-vg-variable-too.patch │ │ ├── 0065-disk-ldm-Fix-memory-leak-on-uninserted-lv-references.patch │ │ ├── 0066-disk-cryptodisk-Fix-potential-integer-overflow.patch │ │ ├── 0067-hfsplus-Check-that-the-volume-name-length-is-valid.patch │ │ ├── 0068-zfs-Fix-possible-negative-shift-operation.patch │ │ ├── 0069-zfs-Fix-resource-leaks-while-constructing-path.patch │ │ ├── 0070-zfs-Fix-possible-integer-overflows.patch │ │ ├── 0071-zfsinfo-Correct-a-check-for-error-allocating-memory.patch │ │ ├── 0072-affs-Fix-memory-leaks.patch │ │ ├── 0073-libgcrypt-mpi-Fix-possible-unintended-sign-extension.patch │ │ ├── 0074-libgcrypt-mpi-Fix-possible-NULL-dereference.patch │ │ ├── 0075-syslinux-Fix-memory-leak-while-parsing.patch │ │ ├── 0076-normal-completion-Fix-leaking-of-memory-when-process.patch │ │ ├── 0077-commands-hashsum-Fix-a-memory-leak.patch │ │ ├── 0079-video-efi_gop-Remove-unnecessary-return-value-of-gru.patch │ │ ├── 0080-video-fb-fbfill-Fix-potential-integer-overflow.patch │ │ ├── 0081-video-fb-video_fb-Fix-multiple-integer-overflows.patch │ │ ├── 0082-video-fb-video_fb-Fix-possible-integer-overflow.patch │ │ ├── 0083-video-readers-jpeg-Test-for-an-invalid-next-marker-r.patch │ │ ├── 0084-gfxmenu-gui_list-Remove-code-that-coverity-is-flaggi.patch │ │ ├── 0085-loader-bsd-Check-for-NULL-arg-up-front.patch │ │ ├── 0086-loader-xnu-Fix-memory-leak.patch │ │ ├── 0087-loader-xnu-Free-driverkey-data-when-an-error-is-dete.patch │ │ ├── 0088-loader-xnu-Check-if-pointer-is-NULL-before-using-it.patch │ │ ├── 0089-util-grub-install-Fix-NULL-pointer-dereferences.patch │ │ ├── 0090-util-grub-editenv-Fix-incorrect-casting-of-a-signed-.patch │ │ ├── 0091-util-glue-efi-Fix-incorrect-use-of-a-possibly-negati.patch │ │ ├── 0092-script-execute-Fix-NULL-dereference-in-grub_script_e.patch │ │ ├── 0093-commands-ls-Require-device_name-is-not-NULL-before-p.patch │ │ ├── 0094-script-execute-Avoid-crash-when-using-outside-a-func.patch │ │ ├── 0095-lib-arg-Block-repeated-short-options-that-require-an.patch │ │ ├── 0096-script-execute-Don-t-crash-on-a-for-loop-with-no-ite.patch │ │ ├── 0097-commands-menuentry-Fix-quoting-in-setparams_prefix.patch │ │ ├── 0098-kern-misc-Always-set-end-in-grub_strtoull.patch │ │ ├── 0099-video-readers-jpeg-Catch-files-with-unsupported-quan.patch │ │ ├── 0100-video-readers-jpeg-Catch-OOB-reads-writes-in-grub_jp.patch │ │ ├── 0101-video-readers-jpeg-Don-t-decode-data-before-start-of.patch │ │ ├── 0102-term-gfxterm-Don-t-set-up-a-font-with-glyphs-that-ar.patch │ │ ├── 0103-fs-fshelp-Catch-impermissibly-large-block-sizes-in-r.patch │ │ ├── 0104-fs-hfsplus-Don-t-fetch-a-key-beyond-the-end-of-the-n.patch │ │ ├── 0105-fs-hfsplus-Don-t-use-uninitialized-data-on-corrupt-f.patch │ │ ├── 0106-fs-hfs-Disable-under-lockdown.patch │ │ ├── 0107-fs-sfs-Fix-over-read-of-root-object-name.patch │ │ ├── 0108-fs-jfs-Do-not-move-to-leaf-level-if-name-length-is-n.patch │ │ ├── 0109-fs-jfs-Limit-the-extents-that-getblk-can-consider.patch │ │ ├── 0110-fs-jfs-Catch-infinite-recursion.patch │ │ ├── 0111-fs-nilfs2-Reject-too-large-keys.patch │ │ ├── 0112-fs-nilfs2-Don-t-search-children-if-provided-number-i.patch │ │ ├── 0113-fs-nilfs2-Properly-bail-on-errors-in-grub_nilfs2_btr.patch │ │ ├── 0114-io-gzio-Bail-if-gzio-tl-td-is-NULL.patch │ │ ├── 0115-io-gzio-Add-init_dynamic_block-clean-up-if-unpacking.patch │ │ ├── 0116-io-gzio-Catch-missing-values-in-huft_build-and-bail.patch │ │ ├── 0117-io-gzio-Zero-gzio-tl-td-in-init_dynamic_block-if-huf.patch │ │ ├── 0118-disk-lvm-Don-t-go-beyond-the-end-of-the-data-we-read.patch │ │ ├── 0119-disk-lvm-Don-t-blast-past-the-end-of-the-circular-me.patch │ │ ├── 0120-disk-lvm-Bail-on-missing-PV-list.patch │ │ ├── 0121-disk-lvm-Do-not-crash-if-an-expected-string-is-not-f.patch │ │ ├── 0122-disk-lvm-Do-not-overread-metadata.patch │ │ ├── 0123-disk-lvm-Sanitize-rlocn-offset-to-prevent-wild-read.patch │ │ ├── 0124-disk-lvm-Do-not-allow-a-LV-to-be-it-s-own-segment-s-.patch │ │ ├── 0125-fs-btrfs-Validate-the-number-of-stripes-parities-in-.patch │ │ ├── 0126-fs-btrfs-Squash-some-uninitialized-reads.patch │ │ ├── 0127-kern-parser-Fix-a-memory-leak.patch │ │ ├── 0128-kern-parser-Introduce-process_char-helper.patch │ │ ├── 0129-kern-parser-Introduce-terminate_arg-helper.patch │ │ ├── 0130-kern-parser-Refactor-grub_parser_split_cmdline-clean.patch │ │ ├── 0131-kern-buffer-Add-variable-sized-heap-buffer.patch │ │ ├── 0132-kern-parser-Fix-a-stack-buffer-overflow.patch │ │ ├── 0133-kern-efi-Add-initial-stack-protector-implementation.patch │ │ ├── 0134-util-mkimage-Remove-unused-code-to-add-BSS-section.patch │ │ ├── 0135-util-mkimage-Use-grub_host_to_target32-instead-of-gr.patch │ │ ├── 0136-util-mkimage-Always-use-grub_host_to_target32-to-ini.patch │ │ ├── 0137-util-mkimage-Unify-more-of-the-PE32-and-PE32-header-.patch │ │ ├── 0138-util-mkimage-Reorder-PE-optional-header-fields-set-u.patch │ │ ├── 0139-util-mkimage-Improve-data_size-value-calculation.patch │ │ ├── 0140-util-mkimage-Refactor-section-setup-to-use-a-helper.patch │ │ ├── 0141-util-mkimage-Add-an-option-to-import-SBAT-metadata-i.patch │ │ ├── 0142-grub-install-common-Add-sbat-option.patch │ │ ├── 0143-shim_lock-Only-skip-loading-shim_lock-verifier-with-.patch │ │ ├── 0144-kern-misc-Split-parse_printf_args-into-format-parsin.patch │ │ ├── 0145-kern-misc-Add-STRING-type-for-internal-printf-format.patch │ │ ├── 0146-kern-misc-Add-function-to-check-printf-format-agains.patch │ │ ├── 0147-gfxmenu-gui-Check-printf-format-in-the-gui_progress_.patch │ │ ├── 0148-templates-Disable-the-os-prober-by-default.patch │ │ ├── 0149-kern-mm-Fix-grub_debug_calloc-compilation-error.patch │ │ ├── 0150-Makefile-Make-libgrub.pp-depend-on-config-util.h.patch │ │ ├── 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.hash │ │ └── lpc32xxcdl.mk │ ├── mv-ddr-marvell/ │ │ ├── Config.in │ │ ├── mv-ddr-marvell.hash │ │ └── mv-ddr-marvell.mk │ ├── mxs-bootlets/ │ │ ├── Config.in │ │ ├── barebox_ivt.bd │ │ ├── mxs-bootlets.hash │ │ └── mxs-bootlets.mk │ ├── opensbi/ │ │ ├── 0.9/ │ │ │ ├── 0001-Makefile-Don-t-specify-mabi-or-march.patch │ │ │ └── 0002-Makefile-unconditionally-disable-SSP.patch │ │ ├── Config.in │ │ ├── opensbi.hash │ │ └── opensbi.mk │ ├── optee-os/ │ │ ├── 3.13.0/ │ │ │ └── 0001-core-zlib-fix-build-warning-when-_LFS64_LARGEFILE-is.patch │ │ ├── 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 │ ├── sun20i-d1-spl/ │ │ ├── Config.in │ │ ├── sun20i-d1-spl.hash │ │ └── sun20i-d1-spl.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 │ │ ├── 0016-Workaround-multiple-definition-of-symbol-errors.patch │ │ ├── 0017-Replace-builtin-strlen-that-appears-to-get-optimized.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 ├── build-docker.sh ├── build.sh ├── configs/ │ ├── nanopir1_defconfig │ ├── nanopir1_initramfs_defconfig │ ├── radxacm3_defconfig │ ├── radxacm3_initramfs_defconfig │ ├── raspberrypi2_defconfig │ ├── raspberrypi2_initramfs_defconfig │ ├── raspberrypi3_defconfig │ ├── raspberrypi3_initramfs_defconfig │ ├── raspberrypi4_defconfig │ ├── raspberrypi4_initramfs_defconfig │ ├── raspberrypi64_defconfig │ ├── raspberrypi64_initramfs_defconfig │ ├── raspberrypi_defconfig │ ├── raspberrypi_initramfs_defconfig │ ├── rockpi4b_defconfig │ └── rockpi4b_initramfs_defconfig ├── docs/ │ ├── conf/ │ │ └── asciidoc-text.conf │ ├── 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-qmake.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 │ │ ├── release-engineering.txt │ │ ├── resources.txt │ │ ├── selinux-support.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 │ ├── footer.html │ ├── header.html │ ├── images/ │ │ └── logo.xcf │ ├── 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 │ ├── erofs/ │ │ ├── Config.in │ │ └── erofs.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 │ ├── oci/ │ │ ├── Config.in │ │ └── oci.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/ │ │ ├── 0001-plt.h-fix-build-with-gcc-10.patch │ │ ├── 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 │ │ ├── Config.in.host │ │ ├── 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/ │ │ ├── 0001-Fix-build-when-SNMPv3-is-disabled.patch │ │ ├── Config.in │ │ ├── agentpp.hash │ │ └── agentpp.mk │ ├── aircrack-ng/ │ │ ├── 0001-Expand-packed-definition.patch │ │ ├── 0002-Fix-duplicated-symbols.patch │ │ ├── Config.in │ │ ├── aircrack-ng.hash │ │ └── aircrack-ng.mk │ ├── alsa-lib/ │ │ ├── 0001-Don-t-use-fork-on-noMMU-platforms.patch │ │ ├── 0002-fix-build-with-disable-ucm.patch │ │ ├── 0003-control-empty-fix-the-static-build.patch │ │ ├── Config.in │ │ ├── alsa-lib.hash │ │ └── alsa-lib.mk │ ├── alsa-plugins/ │ │ ├── Config.in │ │ ├── alsa-plugins.hash │ │ └── alsa-plugins.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 │ ├── altera-stapl/ │ │ ├── Config.in │ │ ├── altera-stapl.hash │ │ └── altera-stapl.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 │ │ ├── 0004-Makefile-add-fno-builtin.patch │ │ ├── Config.in │ │ ├── S93-am335x-pm-firmware-load │ │ ├── am33x-cm3.hash │ │ └── am33x-cm3.mk │ ├── 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 │ ├── apcupsd/ │ │ ├── Config.in │ │ ├── apcupsd.hash │ │ └── apcupsd.mk │ ├── apg/ │ │ ├── Config.in │ │ ├── apg.hash │ │ └── apg.mk │ ├── apitrace/ │ │ ├── 0001-thirdparty-libbacktrace-backtrace-h-include-config.h.patch │ │ ├── 0002-gltrace-Avoid-__libc_dlsym-and-__libc_dlopen_mode-on-GLIBC-2-34.patch │ │ ├── Config.in │ │ ├── apitrace.hash │ │ └── apitrace.mk │ ├── apparmor/ │ │ ├── Config.in │ │ ├── apparmor.hash │ │ └── apparmor.mk │ ├── apr/ │ │ ├── 0001-cross-compile.patch │ │ ├── 0002-sys-param-h.patch │ │ ├── 0003-Merge-r1887279-from-trunk.patch │ │ ├── Config.in │ │ ├── apr.hash │ │ └── apr.mk │ ├── apr-util/ │ │ ├── 0001-remove-checkapr.patch │ │ ├── Config.in │ │ ├── apr-util.hash │ │ └── apr-util.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 │ ├── arm-gnu-a-toolchain/ │ │ ├── arm-gnu-a-toolchain.hash │ │ └── arm-gnu-a-toolchain.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 │ ├── asn1c/ │ │ ├── Config.in.host │ │ ├── asn1c.hash │ │ └── asn1c.mk │ ├── assimp/ │ │ ├── 0001-Fix-FBXConverter-use-proper-64-bit-constant.patch │ │ ├── 0002-closes-2733-update-of-zlip-to-fix-gcc-build-for-v9-2-0-32-bit.patch │ │ ├── 0003-closes-2954-upgrade-to-latest-greatest.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/ │ │ ├── 0001-Makefile.in-replace-IROOT-by-DESTDIR.patch │ │ ├── 0002-Makefile.in-fix-make-install-for-non-root-don-t-stri.patch │ │ ├── 0003-getloadavg-fix-getloadavg.c-compilation-revert-to-3..patch │ │ ├── 0004-Makefile-fix-parallel-build-failure.patch │ │ ├── Config.in │ │ ├── S99at │ │ ├── at.hash │ │ └── at.mk │ ├── at-spi2-atk/ │ │ ├── 0001-meson-add-tests-option.patch │ │ ├── Config.in │ │ ├── at-spi2-atk.hash │ │ └── at-spi2-atk.mk │ ├── at-spi2-core/ │ │ ├── Config.in │ │ ├── at-spi2-core.hash │ │ └── at-spi2-core.mk │ ├── atest/ │ │ ├── 0001-seq.h-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── atest.hash │ │ └── atest.mk │ ├── atf/ │ │ ├── Config.in │ │ ├── atf.hash │ │ └── atf.mk │ ├── atftp/ │ │ ├── Config.in │ │ ├── atftp.hash │ │ └── atftp.mk │ ├── atk/ │ │ ├── Config.in │ │ ├── atk.hash │ │ └── atk.mk │ ├── atkmm/ │ │ ├── Config.in │ │ ├── atkmm.hash │ │ └── atkmm.mk │ ├── atop/ │ │ ├── 0001-ifprop.c-fix-build-with-kernel-4.6.patch │ │ ├── 0002-photosyst.c-fix-build-on-musl.patch │ │ ├── Config.in │ │ ├── atop.hash │ │ └── atop.mk │ ├── attr/ │ │ ├── 0001-build-with-older-GCCs.patch │ │ ├── Config.in │ │ ├── attr.hash │ │ └── attr.mk │ ├── aubio/ │ │ ├── Config.in │ │ ├── aubio.hash │ │ └── aubio.mk │ ├── audit/ │ │ ├── Config.in │ │ ├── S02auditd │ │ ├── audit.hash │ │ ├── audit.mk │ │ └── audit_tmpfiles.conf │ ├── aufs/ │ │ ├── Config.in │ │ └── aufs.mk │ ├── aufs-util/ │ │ ├── 0001-remove-user-settings.patch │ │ ├── 0002-no-check-ver.patch │ │ ├── 0003-no-strip-lib.patch │ │ ├── Config.in │ │ └── aufs-util.mk │ ├── augeas/ │ │ ├── Config.in │ │ ├── augeas.hash │ │ └── augeas.mk │ ├── aumix/ │ │ ├── 0001-fix-incorrect-makefile-am.patch │ │ ├── Config.in │ │ ├── aumix.hash │ │ └── aumix.mk │ ├── autoconf/ │ │ ├── 0001-dont-add-dirty-to-version.patch │ │ ├── autoconf.hash │ │ └── autoconf.mk │ ├── autoconf-archive/ │ │ ├── autoconf-archive.hash │ │ └── autoconf-archive.mk │ ├── autofs/ │ │ ├── 0001-autofs-5-1-7-use-default-stack-size-for-threads.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-Fix-NULL-pointer-crashes-from-175.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-cmake-Build-failure-without-a-C-compiler-again.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/ │ │ ├── 0001-hmac-c-fix-mismatching-function-prototype.patch │ │ ├── Config.in │ │ ├── azure-iot-sdk-c.hash │ │ └── 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 │ ├── babeltrace2/ │ │ ├── 0001-configure-simplify-warning-flags-detection.patch │ │ ├── 0002-tests-lib-test_trace_ir_ref.c-rename-user-structure.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── babeltrace2.hash │ │ └── babeltrace2.mk │ ├── balena-engine/ │ │ ├── Config.in │ │ ├── balena-engine.hash │ │ └── balena-engine.mk │ ├── bandwidthd/ │ │ ├── 0001-src-bandwidthd.h-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── bandwidthd.hash │ │ ├── bandwidthd.mk │ │ └── bandwidthd.service │ ├── bash/ │ │ ├── 0001-input.h-add-missing-include-on-stdio.h.patch │ │ ├── 0002-locale-fix-typo-local_shiftstates-vs.-locale_shiftst.patch │ │ ├── 0003-glob-fix-dequote_pathname-vs.-udequote_pathname.patch │ │ ├── Config.in │ │ ├── bash.hash │ │ └── bash.mk │ ├── bash-completion/ │ │ ├── Config.in │ │ ├── bash-completion.hash │ │ └── bash-completion.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/ │ │ ├── 0001-Fix-undefined-reference-to-__data_start-linker-error.patch │ │ ├── Config.in │ │ ├── bdwgc.hash │ │ └── bdwgc.mk │ ├── bearssl/ │ │ ├── Config.in │ │ ├── bearssl.hash │ │ └── bearssl.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 │ ├── belle-sip/ │ │ ├── Config.in │ │ ├── belle-sip.hash │ │ └── belle-sip.mk │ ├── belr/ │ │ ├── Config.in │ │ ├── belr.hash │ │ └── belr.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.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 │ │ │ ├── 0008-xtensa-fix-PR-ld-25861.patch │ │ │ ├── 0009-xtensa-fix-XTENSA_NDIFF-handling-for-PR-ld-25861.patch │ │ │ ├── 0010-or1k-Fix-issue-with-plt-link-failure-for-local-calls.patch │ │ │ ├── 0011-or1k-Implement-relocation-R_OR1K_GOT_AHI16-for-gotha.patch │ │ │ ├── 0012-or1k-Avoid-R_OR1K_GOT16-overflow-failures-in-presenc.patch │ │ │ ├── 0013-or1k-Support-large-plt_relocs-when-generating-plt-en.patch │ │ │ ├── 0014-bfd-elf32-or1k-fix-building-with-gcc-version-5.patch │ │ │ └── 0015-or1k-fix-pc-relative-relocation-against-dynamic-on-P.patch │ │ ├── 2.35.2/ │ │ │ ├── 0001-sh-conf.patch │ │ │ ├── 0002-poison-system-directories.patch │ │ │ ├── 0003-or1k-Fix-issue-with-plt-link-failure-for-local-calls.patch │ │ │ ├── 0004-or1k-Implement-relocation-R_OR1K_GOT_AHI16-for-gotha.patch │ │ │ ├── 0005-or1k-Avoid-R_OR1K_GOT16-overflow-failures-in-presenc.patch │ │ │ ├── 0006-or1k-Support-large-plt_relocs-when-generating-plt-en.patch │ │ │ ├── 0007-bfd-elf32-or1k-fix-building-with-gcc-version-5.patch │ │ │ └── 0008-or1k-fix-pc-relative-relocation-against-dynamic-on-P.patch │ │ ├── 2.36.1/ │ │ │ ├── 0001-sh-conf.patch │ │ │ ├── 0002-poison-system-directories.patch │ │ │ ├── 0003-or1k-Fix-issue-with-plt-link-failure-for-local-calls.patch │ │ │ ├── 0004-or1k-Implement-relocation-R_OR1K_GOT_AHI16-for-gotha.patch │ │ │ ├── 0005-or1k-Avoid-R_OR1K_GOT16-overflow-failures-in-presenc.patch │ │ │ ├── 0006-or1k-Support-large-plt_relocs-when-generating-plt-en.patch │ │ │ ├── 0007-bfd-elf32-or1k-fix-building-with-gcc-version-5.patch │ │ │ └── 0008-or1k-fix-pc-relative-relocation-against-dynamic-on-P.patch │ │ ├── 2.37/ │ │ │ ├── 0001-sh-conf.patch │ │ │ ├── 0002-poison-system-directories.patch │ │ │ ├── 0003-bfd-elf32-or1k-fix-building-with-gcc-version-5.patch │ │ │ └── 0004-or1k-fix-pc-relative-relocation-against-dynamic-on-P.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── arc-2020.09-release/ │ │ │ └── 0001-poison-system-directories.patch │ │ ├── binutils.hash │ │ └── binutils.mk │ ├── biosdevname/ │ │ ├── Config.in │ │ ├── biosdevname.hash │ │ └── biosdevname.mk │ ├── bird/ │ │ ├── Config.in │ │ ├── bird.hash │ │ └── bird.mk │ ├── bison/ │ │ ├── bison.hash │ │ └── bison.mk │ ├── bitcoin/ │ │ ├── 0001-src-randomenv.cpp-fix-build-on-uclibc.patch │ │ ├── Config.in │ │ ├── bitcoin.hash │ │ └── bitcoin.mk │ ├── bitstream/ │ │ ├── Config.in │ │ ├── bitstream.hash │ │ └── bitstream.mk │ ├── bitstream-vera/ │ │ ├── Config.in │ │ ├── bitstream-vera.hash │ │ └── bitstream-vera.mk │ ├── bitwise/ │ │ ├── Config.in │ │ ├── bitwise.hash │ │ └── bitwise.mk │ ├── blktrace/ │ │ ├── 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/ │ │ ├── 0001-tools-mesh-cfgtest-include-limits.h.patch │ │ ├── 0005-build-Fix-errors-with-glibc-2-25.patch │ │ ├── Config.in │ │ ├── S40bluetooth │ │ ├── bluez5_utils.hash │ │ └── bluez5_utils.mk │ ├── bluez5_utils-headers/ │ │ ├── Config.in │ │ └── bluez5_utils-headers.mk │ ├── bmap-tools/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── bmap-tools.hash │ │ └── bmap-tools.mk │ ├── bmon/ │ │ ├── Config.in │ │ ├── bmon.hash │ │ └── bmon.mk │ ├── boinc/ │ │ ├── Config.in │ │ ├── S99boinc-client │ │ ├── boinc.hash │ │ └── boinc.mk │ ├── bonnie/ │ │ ├── Config.in │ │ ├── bonnie.hash │ │ └── bonnie.mk │ ├── boost/ │ │ ├── 0001-added-missing-brackets.patch │ │ ├── 0002-math-allow-definition-of-boost_math_no_atomic_int-on-the-command-line.patch │ │ ├── 0003-math-make-no-atomics-a-soft-failure-in-bernoulli_details_hpp.patch │ │ ├── Config.in │ │ ├── boost.hash │ │ └── boost.mk │ ├── bootstrap/ │ │ ├── Config.in │ │ ├── bootstrap.hash │ │ └── bootstrap.mk │ ├── botan/ │ │ ├── 0001-Revert-workaround-a-miscompilation-issue-in-clang-12.patch │ │ ├── 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-fix-build-on-musl.patch │ │ ├── Config.in │ │ ├── bridge-utils.hash │ │ └── bridge-utils.mk │ ├── brltty/ │ │ ├── 0001-Fix-linking-error-on-mips64el.patch │ │ ├── Config.in │ │ ├── S10brltty │ │ ├── brltty.hash │ │ ├── brltty.mk │ │ └── brltty.service │ ├── brotli/ │ │ ├── 0001-CMake-Allow-using-BUILD_SHARED_LIBS-to-choose-static.patch │ │ ├── 0002-Revert-Add-runtime-linker-path-to-pkg-config-files.patch │ │ ├── Config.in │ │ ├── brotli.hash │ │ └── brotli.mk │ ├── bsdiff/ │ │ ├── 0001-Add-missing-header-for-u_char.patch │ │ ├── Config.in │ │ ├── bsdiff.hash │ │ └── bsdiff.mk │ ├── btrfs-progs/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── btrfs-progs.hash │ │ └── btrfs-progs.mk │ ├── bubblewrap/ │ │ ├── Config.in │ │ ├── bubblewrap.hash │ │ └── bubblewrap.mk │ ├── bullet/ │ │ ├── 0001-Extras-VHACD-inc-vhacdMutex.h-fix-musl-build.patch │ │ ├── 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 │ │ ├── S10mdev │ │ ├── S15watchdog │ │ ├── S50telnet │ │ ├── busybox-minimal.config │ │ ├── busybox.config │ │ ├── busybox.hash │ │ ├── busybox.mk │ │ ├── inittab │ │ ├── mdev.conf │ │ ├── telnetd.service │ │ └── 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/ │ │ ├── Config.in │ │ ├── c-ares.hash │ │ └── c-ares.mk │ ├── c-capnproto/ │ │ ├── Config.in │ │ ├── c-capnproto.hash │ │ └── c-capnproto.mk │ ├── c-icap/ │ │ ├── 0001-Required-fixes-to-compile-and-run-under-cygwin.patch │ │ ├── Config.in │ │ ├── S96cicap │ │ ├── c-icap.hash │ │ └── c-icap.mk │ ├── c-icap-modules/ │ │ ├── Config.in │ │ ├── c-icap-modules.hash │ │ └── c-icap-modules.mk │ ├── c-periphery/ │ │ ├── Config.in │ │ ├── c-periphery.hash │ │ └── c-periphery.mk │ ├── ca-certificates/ │ │ ├── 0001-mozilla-certdata2pem.py-make-cryptography-module-opt.patch │ │ ├── Config.in │ │ ├── ca-certificates.hash │ │ └── ca-certificates.mk │ ├── cache-calibrator/ │ │ ├── 0001-Fix-conflicting-round-function.patch │ │ ├── Config.in │ │ ├── cache-calibrator.hash │ │ └── cache-calibrator.mk │ ├── cage/ │ │ ├── Config.in │ │ ├── cage.hash │ │ └── cage.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 │ ├── cannelloni/ │ │ ├── Config.in │ │ ├── cannelloni.hash │ │ └── cannelloni.mk │ ├── cantarell/ │ │ ├── Config.in │ │ ├── cantarell.hash │ │ └── cantarell.mk │ ├── capnproto/ │ │ ├── 0001-mutex-Fix-build-on-32-bit-architectures-using-64-bit-time_t.patch │ │ ├── Config.in │ │ ├── capnproto.hash │ │ └── capnproto.mk │ ├── caps/ │ │ ├── 0001-Fix-stdint-types-with-musl.patch │ │ ├── Config.in │ │ ├── caps.hash │ │ └── caps.mk │ ├── casync/ │ │ ├── 0001-castore-fix-build-without-lzma-or-xz.patch │ │ ├── 0002-build-don-t-install-udev-rules-without-udev-support.patch │ │ ├── Config.in │ │ ├── casync.hash │ │ └── casync.mk │ ├── cbootimage/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── cbootimage.hash │ │ └── cbootimage.mk │ ├── cc-tool/ │ │ ├── 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 │ │ ├── 0003-Add-extern-to-char-outfile-declaration-to-fix-build-.patch │ │ ├── Config.in │ │ ├── cdrkit.hash │ │ └── cdrkit.mk │ ├── cegui/ │ │ ├── 0001-XMLParser.cpp-include-string.h.patch │ │ ├── Config.in │ │ ├── cegui.hash │ │ └── cegui.mk │ ├── cereal/ │ │ ├── 0001-Store-a-copy-of-each-serialized-shared_ptr-within-the-archive.patch │ │ ├── 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 │ ├── chartjs/ │ │ ├── Config.in │ │ ├── chartjs.hash │ │ └── chartjs.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 │ ├── chirpstack-gateway-bridge/ │ │ ├── Config.in │ │ ├── chirpstack-gateway-bridge.hash │ │ └── chirpstack-gateway-bridge.mk │ ├── chocolate-doom/ │ │ ├── 0001-Remove-redundant-demoextend-definition.patch │ │ ├── Config.in │ │ ├── chocolate-doom.hash │ │ └── chocolate-doom.mk │ ├── chrony/ │ │ ├── 0001-sys_linux-fix-build-with-older-kernel-headers.patch │ │ ├── Config.in │ │ ├── S49chrony │ │ ├── chrony.hash │ │ ├── chrony.mk │ │ └── chrony.service │ ├── cifs-utils/ │ │ ├── Config.in │ │ ├── cifs-utils.hash │ │ └── cifs-utils.mk │ ├── circus/ │ │ ├── Config.in │ │ ├── circus.hash │ │ └── circus.mk │ ├── civetweb/ │ │ ├── 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 │ ├── 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/ │ │ ├── Config.in │ │ ├── cog.hash │ │ └── cog.mk │ ├── collectd/ │ │ ├── 0001-src-netlink.c-remove-REG_NOERROR.patch │ │ ├── Config.in │ │ ├── S90collectd │ │ ├── collectd.hash │ │ ├── collectd.mk │ │ └── collectd.service │ ├── collectl/ │ │ ├── Config.in │ │ ├── collectl.hash │ │ └── collectl.mk │ ├── comix-cursors/ │ │ ├── Config.in │ │ ├── comix-cursors.hash │ │ └── comix-cursors.mk │ ├── connman/ │ │ ├── Config.in │ │ ├── S45connman │ │ ├── connman.hash │ │ └── connman.mk │ ├── connman-gtk/ │ │ ├── Config.in │ │ ├── connman-gtk.hash │ │ └── connman-gtk.mk │ ├── conntrack-tools/ │ │ ├── Config.in │ │ ├── conntrack-tools.hash │ │ └── conntrack-tools.mk │ ├── containerd/ │ │ ├── Config.in │ │ ├── containerd.hash │ │ └── containerd.mk │ ├── copas/ │ │ ├── 0001-Do-not-load-coxpcall-for-LuaJIT.patch │ │ ├── Config.in │ │ ├── copas.hash │ │ └── copas.mk │ ├── coremark/ │ │ ├── Config.in │ │ ├── coremark.hash │ │ └── coremark.mk │ ├── coremark-pro/ │ │ ├── Config.in │ │ ├── coremark-pro.hash │ │ ├── coremark-pro.mk │ │ └── coremark-pro.sh.in │ ├── coreutils/ │ │ ├── 0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch │ │ ├── Config.in │ │ ├── coreutils.hash │ │ └── coreutils.mk │ ├── corkscrew/ │ │ ├── Config.in │ │ ├── corkscrew.hash │ │ └── corkscrew.mk │ ├── coxpcall/ │ │ ├── Config.in │ │ ├── coxpcall.hash │ │ └── coxpcall.mk │ ├── cpio/ │ │ ├── 0001-Minor-fix.patch │ │ ├── 0002-Rewrite-dynamic-string-support.patch │ │ ├── 0003-Fix-previous-commit.patch │ │ ├── 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/ │ │ ├── Config.in │ │ └── cryptodev.mk │ ├── cryptodev-linux/ │ │ ├── cryptodev-linux.hash │ │ └── cryptodev-linux.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 │ ├── cukinia/ │ │ ├── Config.in │ │ ├── cukinia.conf │ │ ├── cukinia.hash │ │ └── cukinia.mk │ ├── cunit/ │ │ ├── Config.in │ │ ├── cunit.hash │ │ └── cunit.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 │ │ ├── 70-usb-printers.rules │ │ ├── Config.in │ │ ├── S81cupsd │ │ ├── cups.hash │ │ └── cups.mk │ ├── cups-filters/ │ │ ├── Config.in │ │ ├── S82cups-browsed │ │ ├── cups-filters.hash │ │ └── cups-filters.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/ │ │ ├── 0001-server-CMakeLists.txt-don-t-override-CMAKE_EXE_LINKE.patch │ │ ├── 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-daemon-fix-build-with-musl-libc-again.patch │ │ ├── 0002-Fix-build-with-NDEBUG-defined.patch │ │ ├── Config.in │ │ ├── daemon.hash │ │ └── daemon.mk │ ├── dahdi-linux/ │ │ ├── 0001-drivers-dahdi-Kbuild-fix-HOTPLUG_FIRMWARE-definition.patch │ │ ├── 0002-fix-build-with-32-bits-kernel.patch │ │ ├── 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 │ │ ├── 0002-parallel-grammar.patch │ │ ├── Config.in │ │ ├── daq.hash │ │ └── daq.mk │ ├── daq3/ │ │ ├── Config.in │ │ ├── daq3.hash │ │ └── daq3.mk │ ├── darkhttpd/ │ │ ├── 0001-Declare-vars-outside-of-for-loop-for-std-c90.patch │ │ ├── Config.in │ │ ├── S50darkhttpd │ │ ├── darkhttpd.hash │ │ ├── darkhttpd.mk │ │ └── darkhttpd.service │ ├── dash/ │ │ ├── Config.in │ │ ├── dash.hash │ │ └── dash.mk │ ├── datatables/ │ │ ├── Config.in │ │ ├── datatables.hash │ │ └── datatables.mk │ ├── datatables-buttons/ │ │ ├── Config.in │ │ ├── datatables-buttons.hash │ │ └── datatables-buttons.mk │ ├── datatables-fixedcolumns/ │ │ ├── Config.in │ │ ├── datatables-fixedcolumns.hash │ │ └── datatables-fixedcolumns.mk │ ├── datatables-responsive/ │ │ ├── Config.in │ │ ├── datatables-responsive.hash │ │ └── datatables-responsive.mk │ ├── dav1d/ │ │ ├── Config.in │ │ ├── dav1d.hash │ │ └── dav1d.mk │ ├── davfs2/ │ │ ├── 0001-src-Makefile.am-do-not-hardcode-fstack-protector-str.patch │ │ ├── Config.in │ │ ├── davfs2.hash │ │ └── davfs2.mk │ ├── davici/ │ │ ├── Config.in │ │ ├── davici.hash │ │ └── davici.mk │ ├── dawgdic/ │ │ ├── Config.in │ │ ├── dawgdic.hash │ │ └── dawgdic.mk │ ├── dbus/ │ │ ├── Config.in │ │ ├── S30dbus │ │ ├── dbus.hash │ │ └── dbus.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 │ ├── 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 │ ├── delve/ │ │ ├── Config.in │ │ ├── delve.hash │ │ └── delve.mk │ ├── desktop-file-utils/ │ │ ├── desktop-file-utils.hash │ │ └── desktop-file-utils.mk │ ├── dfu-util/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── dfu-util.hash │ │ └── dfu-util.mk │ ├── dhcp/ │ │ ├── 0001-WIP-Resolve-ISC-DHCP-does-not-build-with-gcc10.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/ │ │ ├── 0001-m4-stack-direction.m4-fix-build-on-microblazeel.patch │ │ ├── 0002-sigsegv-fix-build-on-or1k.patch │ │ ├── 0003-sys_random-port-better-to-uClibc-1-0-35.patch │ │ ├── Config.in │ │ ├── diffutils.hash │ │ └── diffutils.mk │ ├── dillo/ │ │ ├── 0001-usr-local-include.patch │ │ ├── 0002-Fix-openssl-detection.patch │ │ ├── 0003-Support-OpenSSL-1.1.0.patch │ │ ├── 0004-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── dillo.hash │ │ └── dillo.mk │ ├── ding-libs/ │ │ ├── Config.in │ │ ├── ding-libs.hash │ │ └── ding-libs.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 │ ├── directfb-examples/ │ │ ├── 0001-remove-bzero.patch │ │ ├── Config.in │ │ ├── directfb-examples.hash │ │ └── directfb-examples.mk │ ├── dmalloc/ │ │ ├── 0001-mips.patch │ │ ├── 0002-fix-parallel-build.patch │ │ ├── 0003-fix-shlibs.patch │ │ ├── 0004-fix-strdup.patch │ │ ├── 0005-fix-strndup.patch │ │ ├── Config.in │ │ ├── dmalloc.hash │ │ └── dmalloc.mk │ ├── dmidecode/ │ │ ├── Config.in │ │ ├── dmidecode.hash │ │ └── dmidecode.mk │ ├── dmraid/ │ │ ├── 0001-fix-compilation-under-musl.patch │ │ ├── Config.in │ │ ├── S20dmraid │ │ ├── dmraid.hash │ │ └── dmraid.mk │ ├── dnsmasq/ │ │ ├── Config.in │ │ ├── S80dnsmasq │ │ ├── dnsmasq.hash │ │ └── dnsmasq.mk │ ├── doc-asciidoc.mk │ ├── docker/ │ │ ├── Config.in │ │ ├── docker.hash │ │ └── docker.mk │ ├── docker-cli/ │ │ ├── Config.in │ │ ├── docker-cli.hash │ │ └── docker-cli.mk │ ├── docker-compose/ │ │ ├── Config.in │ │ ├── docker-compose.hash │ │ └── docker-compose.mk │ ├── docker-engine/ │ │ ├── Config.in │ │ ├── S60dockerd │ │ ├── docker-engine.hash │ │ └── docker-engine.mk │ ├── docker-proxy/ │ │ ├── Config.in │ │ ├── docker-proxy.hash │ │ └── docker-proxy.mk │ ├── domoticz/ │ │ ├── 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/ │ │ ├── Config.in │ │ ├── dovecot.hash │ │ └── dovecot.mk │ ├── dovecot-pigeonhole/ │ │ ├── Config.in │ │ ├── dovecot-pigeonhole.hash │ │ └── dovecot-pigeonhole.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/ │ │ ├── Config.in │ │ ├── dropwatch.hash │ │ └── dropwatch.mk │ ├── dstat/ │ │ ├── Config.in │ │ ├── dstat.hash │ │ └── dstat.mk │ ├── dt/ │ │ ├── 0001-adjust-os-symlink.patch │ │ ├── 0002-dt-default-source-define.patch │ │ ├── Config.in │ │ ├── dt.hash │ │ └── dt.mk │ ├── dt-utils/ │ │ ├── Config.in │ │ ├── dt-utils.hash │ │ └── dt-utils.mk │ ├── dtach/ │ │ ├── Config.in │ │ ├── dtach.hash │ │ └── dtach.mk │ ├── dtbocfg/ │ │ ├── Config.in │ │ ├── dtbocfg.hash │ │ └── dtbocfg.mk │ ├── dtc/ │ │ ├── 0001-Fix-include-guards-for-older-kernel-u-boot-sources.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── dtc.hash │ │ └── dtc.mk │ ├── dtv-scan-tables/ │ │ ├── Config.in │ │ ├── dtv-scan-tables.hash │ │ └── dtv-scan-tables.mk │ ├── duktape/ │ │ ├── Config.in │ │ ├── duktape.hash │ │ ├── duktape.mk │ │ └── duktape.pc.in │ ├── 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/ │ │ ├── 0001-dump1090.h-fix-build-with-gcc-10.patch │ │ ├── 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 │ │ ├── 0006-fix-glibc-2.31.patch │ │ ├── Config.in │ │ ├── dvb-apps.hash │ │ └── 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 │ ├── earlyoom/ │ │ ├── Config.in │ │ ├── S02earlyoom │ │ ├── earlyoom.hash │ │ └── earlyoom.mk │ ├── easy-rsa/ │ │ ├── Config.in │ │ ├── easy-rsa.hash │ │ └── easy-rsa.mk │ ├── easydbus/ │ │ ├── Config.in │ │ ├── easydbus.hash │ │ └── easydbus.mk │ ├── easyframes/ │ │ ├── 0001-CMakesLists.txt-fix-static-build-with-pcap.patch │ │ ├── 0002-Fix-different-compiling-issues.patch │ │ ├── Config.in │ │ ├── easyframes.hash │ │ └── easyframes.mk │ ├── ebtables/ │ │ ├── 0001-replace-ebtables-save-perl-script-with-bash.patch │ │ ├── 0002-ebtables.h-restore-KERNEL_64_USERSPACE_32-checks.patch │ │ ├── 0003-configure.ac-add-option-enable-kernel-64-userland-32.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 │ ├── edk2-platforms/ │ │ ├── Config.in │ │ ├── edk2-platforms.hash │ │ └── edk2-platforms.mk │ ├── efibootmgr/ │ │ ├── 0001-Allow-build-with-uClibc.patch │ │ ├── 0002-remove-extra-decl.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 │ │ ├── 0005-ucs2.h-remove-unused-variable.patch │ │ ├── 0006-ucs2.h-fix-logic-that-checks-for-UCS-2-string-termin.patch │ │ ├── 0007-gcc.specs-drop-Werror.patch │ │ ├── Config.in │ │ ├── efivar.hash │ │ └── efivar.mk │ ├── efl/ │ │ ├── 0001-ecore_evas-engines-drm-meson.build-use-gl_deps-as-en.patch │ │ ├── 0002-ecore_evas-engines-drm-meson.build-fix-gl_drm-includ.patch │ │ ├── 0003-ecore_fb-fix-build-with-tslib.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 │ │ ├── 0002-elf2flt.c-add-new-relocation-types-for-xtensa.patch │ │ ├── 0003-elf2flt-handle-binutils-2.34.patch │ │ ├── 0004-elf2flt-add-riscv-64-bits-support.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/ │ │ ├── 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 │ ├── environment-setup/ │ │ ├── Config.in.host │ │ ├── environment-setup │ │ └── environment-setup.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 │ ├── 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/ │ │ ├── 0001-rebar.config.script-remove-extra-dependency-to-base6.patch │ │ ├── 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-correct-include.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 │ ├── erofs-utils/ │ │ ├── 0001-erofs-utils-manpage-only-install-erofsfuse.1-with-th.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── erofs-utils.hash │ │ └── erofs-utils.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 │ │ ├── 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 │ │ ├── 0002-evemu-Update-struct-input_event.patch │ │ ├── 0003-src-evemu.c-fix-build-with-kernels-4.16.patch │ │ ├── 0004-src-evemu.c-fix-build-with-kernels-4.16.patch │ │ ├── Config.in │ │ ├── evemu.hash │ │ └── evemu.mk │ ├── evtest/ │ │ ├── 0001-Add-missing-limits.h-include.patch │ │ ├── 0002-Fix-build-on-32bit-arches-with-64bit-time_t.patch │ │ ├── Config.in │ │ ├── evtest.hash │ │ └── evtest.mk │ ├── execline/ │ │ ├── Config.in │ │ ├── execline.hash │ │ └── execline.mk │ ├── exempi/ │ │ ├── Config.in │ │ ├── exempi.hash │ │ └── exempi.mk │ ├── exfat/ │ │ ├── Config.in │ │ ├── exfat.hash │ │ └── exfat.mk │ ├── exfat-utils/ │ │ ├── Config.in │ │ ├── exfat-utils.hash │ │ └── exfat-utils.mk │ ├── exfatprogs/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── exfatprogs.hash │ │ └── exfatprogs.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-add-BUILD_WITH_STACK_PROTECTOR-option.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 │ ├── f2fs-tools/ │ │ ├── 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/ │ │ ├── 0001-fixed-possible-RCE-vulnerability-unset-escape-variable.patch │ │ ├── Config.in │ │ ├── S60fail2ban │ │ ├── fail2ban.hash │ │ └── fail2ban.mk │ ├── fakedate/ │ │ ├── fakedate │ │ └── fakedate.mk │ ├── fakeroot/ │ │ ├── fakeroot.hash │ │ └── fakeroot.mk │ ├── faketime/ │ │ ├── Config.in.host │ │ ├── faketime.hash │ │ └── faketime.mk │ ├── fan-ctrl/ │ │ ├── Config.in │ │ ├── fan-ctrl.hash │ │ └── fan-ctrl.mk │ ├── fastd/ │ │ ├── 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 │ │ ├── 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/ │ │ ├── 0001-swscale-x86-yuv2rgb-Fix-build-without-SSSE3.patch │ │ ├── 0002-avcodec-vaapi_h264-skip-decode-if-pic-has-no-slices.patch │ │ ├── 0003-libavutil-Fix-mips-build.patch │ │ ├── 0004-configure-add-extralibs-to-extralibs_xxx.patch │ │ ├── Config.in │ │ ├── ffmpeg.hash │ │ └── ffmpeg.mk │ ├── fftw/ │ │ ├── Config.in │ │ ├── fftw-double/ │ │ │ ├── Config.in │ │ │ └── fftw-double.mk │ │ ├── fftw-long-double/ │ │ │ ├── Config.in │ │ │ └── fftw-long-double.mk │ │ ├── fftw-quad/ │ │ │ ├── Config.in │ │ │ └── fftw-quad.mk │ │ ├── fftw-single/ │ │ │ ├── Config.in │ │ │ └── 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 │ ├── firmware-utils/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── firmware-utils.hash │ │ └── firmware-utils.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-Makefile-Fix-building-on-AArch64-NixOS.patch │ │ ├── Config.in │ │ ├── flashrom.hash │ │ └── flashrom.mk │ ├── flatbuffers/ │ │ ├── 0001-include-flatbuffers-base.h-fix-build-on-musl.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-fix-alsa-static.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/ │ │ ├── 0001-fixes-bug-1138.patch │ │ ├── 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 │ │ ├── 0002-add-pthread-as-a-dependency-of-a-static-lib.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-Fix-variable-declaration-in-loop.patch │ │ ├── 0002-Fixed-variable-declaration-in-loop.patch │ │ ├── 0003-winpr-include-winpr-file.h-fix-build-on-uclibc.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-seco/ │ │ │ ├── Config.in │ │ │ ├── imx-seco.hash │ │ │ └── imx-seco.mk │ │ ├── imx-uuc/ │ │ │ ├── Config.in │ │ │ ├── S80imx-uuc │ │ │ ├── imx-uuc.hash │ │ │ ├── imx-uuc.mk │ │ │ └── imx-uuc.service │ │ ├── imx-vpu/ │ │ │ ├── Config.in │ │ │ ├── imx-vpu.hash │ │ │ └── imx-vpu.mk │ │ ├── imx-vpu-hantro/ │ │ │ ├── 0001-Fix-ion.h-header-inclusion-to-be-standard.patch │ │ │ ├── 0002-Fix-build-with-uclibc-toolchain.patch │ │ │ ├── Config.in │ │ │ ├── imx-vpu-hantro.hash │ │ │ └── imx-vpu-hantro.mk │ │ ├── imx-vpu-hantro-vc/ │ │ │ ├── Config.in │ │ │ ├── imx-vpu-hantro-vc.hash │ │ │ └── imx-vpu-hantro-vc.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/ │ │ ├── 0001-src-mod-applications-mod_cv-mod_cv.cpp-fix-build-wit.patch │ │ ├── Config.in │ │ ├── freeswitch.hash │ │ └── freeswitch.mk │ ├── freeswitch-mod-bcg729/ │ │ ├── Config.in │ │ ├── freeswitch-mod-bcg729.hash │ │ └── freeswitch-mod-bcg729.mk │ ├── freetype/ │ │ ├── Config.in │ │ ├── freetype.hash │ │ └── freetype.mk │ ├── frotz/ │ │ ├── Config.in │ │ ├── frotz.hash │ │ └── frotz.mk │ ├── frr/ │ │ ├── Config.in │ │ ├── S50frr │ │ ├── frr.hash │ │ └── frr.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 │ ├── fuse-overlayfs/ │ │ ├── Config.in │ │ ├── fuse-overlayfs.hash │ │ └── fuse-overlayfs.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/ │ │ ├── Config.in │ │ ├── gauche.hash │ │ └── gauche.mk │ ├── gawk/ │ │ ├── 0001-no-versioned.patch │ │ ├── Config.in │ │ ├── gawk.hash │ │ └── gawk.mk │ ├── gcc/ │ │ ├── 10.3.0/ │ │ │ ├── 0001-Revert-re-PR-target-92095-internal-error-with-O1-mcp.patch │ │ │ ├── 0002-or1k-Add-mcmodel-option-to-handle-large-GOTs.patch │ │ │ ├── 0003-or1k-Use-cmodel-large-when-building-crtstuff.patch │ │ │ └── 0004-Remove-cyclades-from-libsanitizer.patch │ │ ├── 11.2.0/ │ │ │ ├── 0001-or1k-Add-mcmodel-option-to-handle-large-GOTs.patch │ │ │ └── 0002-or1k-Use-cmodel-large-when-building-crtstuff.patch │ │ ├── 8.4.0/ │ │ │ ├── 0001-xtensa-fix-PR-target-91880.patch │ │ │ ├── 0002-Revert-re-PR-target-92095-internal-error-with-O1-mcp.patch │ │ │ └── 0003-libsanitizer-Remove-cyclades-from-libsanitizer.patch │ │ ├── 9.4.0/ │ │ │ ├── 0001-or1k-Fix-issue-with-set_got-clobbering-LR-r9.patch │ │ │ ├── 0002-gcc-define-_REENTRANT-for-OpenRISC-when-pthread-is-p.patch │ │ │ ├── 0003-Revert-re-PR-target-92095-internal-error-with-O1-mcp.patch │ │ │ ├── 0004-or1k-Add-mcmodel-option-to-handle-large-GOTs.patch │ │ │ └── 0005-or1k-Use-cmodel-large-when-building-crtstuff.patch │ │ ├── Config.in.host │ │ ├── arc-2020.09-release/ │ │ │ ├── 0001-arc-Refurbish-adc-sbc-patterns.patch │ │ │ ├── 0002-libsanitizer-Remove-cyclades-from-libsanitizer.patch │ │ │ └── 0100-uclibc-conf.patch │ │ ├── gcc-final/ │ │ │ └── gcc-final.mk │ │ ├── gcc-initial/ │ │ │ └── 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/ │ │ ├── Config.in │ │ ├── gd.hash │ │ └── gd.mk │ ├── gdb/ │ │ ├── 10.2/ │ │ │ ├── 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-Fix-getrandom-compile-for-uclibc-v1.0.35.patch │ │ │ ├── 0007-fix-musl-build-on-riscv.patch │ │ │ └── 0008-gdbserver-Makefile.in-fix-NLS-build.patch │ │ ├── 11.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-sim-filter-out-SIGSTKSZ-PR-sim-28302.patch │ │ │ ├── 0007-Fix-getrandom-compile-for-uclibc-v1.0.35.patch │ │ │ ├── 0007-fix-musl-build-on-riscv.patch │ │ │ ├── 0008-Fix-build-on-rhES5.patch │ │ │ └── 0009-gdbserver-Makefile.in-fix-NLS-build.patch │ │ ├── 4ecb98fbc2f94dbe01b69384afbc515107de73df/ │ │ │ └── 0001-Fix-Python3.9-related-runtime-problems.patch │ │ ├── 9.2/ │ │ │ ├── 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-sim-ppc-Fix-linker-error-with-fno-common.patch │ │ │ ├── 0007-Fix-Python3.9-related-runtime-problems.patch │ │ │ └── 0007-gdb-configure.tgt-build-gdbserver-with-m68k-and-ucli.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/ │ │ ├── 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/ │ │ ├── Config.in │ │ ├── gensio.hash │ │ └── gensio.mk │ ├── geoip/ │ │ ├── Config.in │ │ ├── geoip.hash │ │ └── geoip.mk │ ├── gerbera/ │ │ ├── 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/ │ │ ├── Config.in │ │ └── gettext.mk │ ├── gettext-gnu/ │ │ ├── 0001-error_print_progname.patch │ │ ├── 0002-restore-the-ability-to-buld-gettext-tools-seperately-part1.patch │ │ ├── Config.in │ │ ├── gettext-gnu.hash │ │ └── gettext-gnu.mk │ ├── gettext-tiny/ │ │ ├── Config.in │ │ ├── gettext-tiny.hash │ │ ├── gettext-tiny.mk │ │ └── gettext-wrapper │ ├── gflags/ │ │ ├── Config.in │ │ ├── gflags.hash │ │ └── gflags.mk │ ├── ghostscript/ │ │ ├── 0001-bug-702985-drop-use-of-FT_CALLBACK_DEF.patch │ │ ├── 0002-Bug-704342-Include-device-specifier-strings-in-acces.patch │ │ ├── Config.in │ │ ├── ghostscript.hash │ │ └── ghostscript.mk │ ├── ghostscript-fonts/ │ │ ├── Config.in │ │ ├── ghostscript-fonts.hash │ │ └── ghostscript-fonts.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/ │ │ ├── 0001-Fix-build-without-threads.patch │ │ ├── Config.in │ │ ├── git.hash │ │ └── git.mk │ ├── git-crypt/ │ │ ├── Config.in │ │ ├── git-crypt.hash │ │ └── git-crypt.mk │ ├── gkrellm/ │ │ ├── Config.in │ │ ├── gkrellm.hash │ │ └── gkrellm.mk │ ├── gli/ │ │ ├── 0001-Optional-building-tests.patch │ │ ├── Config.in │ │ ├── gli.hash │ │ └── gli.mk │ ├── glib-networking/ │ │ ├── Config.in │ │ ├── glib-networking.hash │ │ └── glib-networking.mk │ ├── glibc/ │ │ ├── 2.34-9-g9acab0bba6a5a57323b1f94bf95b21618a9e5aa4/ │ │ │ └── glibc.hash │ │ ├── Config.in │ │ ├── glibc.hash │ │ ├── glibc.mk │ │ └── nsswitch.conf │ ├── glibmm/ │ │ ├── Config.in │ │ ├── glibmm.hash │ │ └── glibmm.mk │ ├── glm/ │ │ ├── Config.in │ │ ├── glm.hash │ │ └── glm.mk │ ├── glmark2/ │ │ ├── 0001-wscript-use-find_program-to-find-wayland-scanner.patch │ │ ├── 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 │ ├── gloox/ │ │ ├── 0001-src-connectiontcpserver-cpp-fix-musl.patch │ │ ├── Config.in │ │ ├── gloox.hash │ │ └── gloox.mk │ ├── glorytun/ │ │ ├── Config.in │ │ ├── glorytun.hash │ │ └── glorytun.mk │ ├── glslsandbox-player/ │ │ ├── Config.in │ │ ├── glslsandbox-player.hash │ │ └── glslsandbox-player.mk │ ├── gmp/ │ │ ├── 0001-mpz-inp_raw.c-Avoid-bit-size-overflows.patch │ │ ├── Config.in │ │ ├── gmp.hash │ │ └── gmp.mk │ ├── gmpc/ │ │ ├── Config.in │ │ ├── gmpc.hash │ │ └── gmpc.mk │ ├── gmrender-resurrect/ │ │ ├── 0001-Drop-UpnpInit.patch │ │ ├── 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/ │ │ ├── 0001-build-Always-use-EXTERN_UNLESS_MAIN_MODULE-pattern.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── gnupg.hash │ │ └── gnupg.mk │ ├── gnupg2/ │ │ ├── Config.in │ │ ├── gnupg2.hash │ │ └── gnupg2.mk │ ├── gnuplot/ │ │ ├── 0001-configure-add-without-demo-option.patch │ │ ├── Config.in │ │ ├── gnuplot.hash │ │ └── gnuplot.mk │ ├── gnuradio/ │ │ ├── 0001-gr-digital-glfsr.h-drop-boost-cstdint.hpp-and-use-cs.patch │ │ ├── 0002-boost_qualify_placeholders_with_their_full_namespace.patch │ │ ├── 0003-gnuradio-runtime_pmt-dont-hardcode-INTERFACE_INCLUDE_DIRECTORIES.patch │ │ ├── 0004-gr-qtgui-dont-t-add-examples-c-subdirectory-when-gr-.patch │ │ ├── 0005-boost-remove-deprecated-math-common_factor.hpp.patch │ │ ├── Config.in │ │ ├── gnuradio.hash │ │ └── gnuradio.mk │ ├── gnutls/ │ │ ├── Config.in │ │ ├── gnutls.hash │ │ └── gnutls.mk │ ├── go/ │ │ ├── 0001-build.go-explicit-option-for-crosscompilation.patch │ │ ├── 0002-cmd-dist-set-buildvcs-false-when-building-go-bootstr.patch │ │ ├── Config.in.host │ │ ├── go.hash │ │ └── go.mk │ ├── go-bootstrap-stage1/ │ │ ├── Config.in.host │ │ ├── go-bootstrap-stage1.hash │ │ └── go-bootstrap-stage1.mk │ ├── go-bootstrap-stage2/ │ │ ├── Config.in.host │ │ ├── go-bootstrap-stage2.hash │ │ └── go-bootstrap-stage2.mk │ ├── gob2/ │ │ ├── 0001-dont-include-from-prefix.patch │ │ ├── gob2.hash │ │ └── gob2.mk │ ├── gobject-introspection/ │ │ ├── 0001-disable-tests.patch │ │ ├── 0002-Add-rpath-links-to-ccompiler.patch │ │ ├── 0003-ignore-error-return-codes-from-ldd-wrapper.patch │ │ ├── Config.in │ │ ├── g-ir-compiler.in │ │ ├── g-ir-scanner-lddwrapper.in │ │ ├── g-ir-scanner-qemuwrapper.in │ │ ├── g-ir-scanner.in │ │ ├── gobject-introspection.hash │ │ └── gobject-introspection.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 │ │ ├── 0004-Fix-for-non-constant-SIGSTKSZ.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 │ │ ├── 0006-src-headers-daemon.h-avoid-redefinition-of-last_sele.patch │ │ ├── Config.in │ │ ├── gpm.hash │ │ └── gpm.mk │ ├── gpsd/ │ │ ├── Config.in │ │ ├── S50gpsd │ │ ├── gpsd.hash │ │ └── gpsd.mk │ ├── gptfdisk/ │ │ ├── 0001-gptcurses-partially-revert-Tweaks-for-building-on-th.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── gptfdisk.hash │ │ └── gptfdisk.mk │ ├── gqrx/ │ │ ├── Config.in │ │ ├── gqrx.hash │ │ └── gqrx.mk │ ├── gr-osmosdr/ │ │ ├── Config.in │ │ ├── gr-osmosdr.hash │ │ └── gr-osmosdr.mk │ ├── granite/ │ │ ├── Config.in │ │ ├── granite.hash │ │ └── granite.mk │ ├── grantlee/ │ │ ├── Config.in │ │ ├── grantlee.hash │ │ └── grantlee.mk │ ├── graphicsmagick/ │ │ ├── Config.in │ │ ├── graphicsmagick.hash │ │ └── graphicsmagick.mk │ ├── graphite2/ │ │ ├── 0001-don-t-install-a-libtool-file-with-static-library.patch │ │ ├── Config.in │ │ ├── graphite2.hash │ │ └── graphite2.mk │ ├── grep/ │ │ ├── Config.in │ │ ├── grep.hash │ │ └── grep.mk │ ├── grpc/ │ │ ├── 0001-Properly-detect-the-availability-of-pthread_setname_.patch │ │ ├── 0002-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-devtools/ │ │ │ ├── Config.in │ │ │ ├── gst1-devtools.hash │ │ │ └── gst1-devtools.mk │ │ ├── gst1-imx/ │ │ │ ├── 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-gst-libs-gst-video-gstvideoaggregator.c-fix-build-wi.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-python/ │ │ │ ├── Config.in │ │ │ ├── gst1-python.hash │ │ │ └── gst1-python.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 │ │ ├── gstd/ │ │ │ ├── 0001-Fix-gstd_chmod.sh-DESTDIR-path.patch │ │ │ ├── 0002-Don-t-require-gstreamer-check-1.0-unless-tests-are-e.patch │ │ │ ├── 0003-Use-relative-symlink-for-gstd-gst-client-exe.patch │ │ │ ├── 0004-Don-t-require-gstd-check-user-xenv.sh-for-systemd-se.patch │ │ │ ├── 0005-Use-native-meson-python-module-for-python-install.patch │ │ │ ├── Config.in │ │ │ ├── gstd.hash │ │ │ └── gstd.mk │ │ ├── gstreamer1/ │ │ │ ├── Config.in │ │ │ ├── gstreamer1.hash │ │ │ └── gstreamer1.mk │ │ ├── gstreamer1-editing-services/ │ │ │ ├── Config.in │ │ │ ├── gstreamer1-editing-services.hash │ │ │ └── gstreamer1-editing-services.mk │ │ ├── gstreamer1-mm/ │ │ │ ├── 0001-Fix-build-against-glib-2-68.patch │ │ │ ├── Config.in │ │ │ ├── gstreamer1-mm.hash │ │ │ └── gstreamer1-mm.mk │ │ └── gstreamer1.mk │ ├── gtest/ │ │ ├── 0001-pkg-config-fix-gtest.pc-gmock.pc-library-names-for-t.patch │ │ ├── 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-Makefile.am-fix-build-without-makeinfo.patch │ │ ├── 0004-module-system-base-target.scm-support-riscv32.patch │ │ ├── Config.in │ │ ├── guile.hash │ │ └── guile.mk │ ├── gumbo-parser/ │ │ ├── 0001-configure.ac-fix-build-without-C.patch │ │ ├── Config.in │ │ ├── gumbo-parser.hash │ │ └── gumbo-parser.mk │ ├── gupnp/ │ │ ├── Config.in │ │ ├── gupnp.hash │ │ └── gupnp.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 │ ├── 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-meson.build-fix-linking-with-libmetadata.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/ │ │ ├── 0001-meson.build-check-for-pthread.h.patch │ │ ├── Config.in │ │ ├── harfbuzz.hash │ │ └── harfbuzz.mk │ ├── haserl/ │ │ ├── 0001-add-haserl_lualib.inc.patch │ │ ├── Config.in │ │ ├── haserl.hash │ │ └── haserl.mk │ ├── haveged/ │ │ ├── 0001-Check-for-sys-auxv.h-before-using-it.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── hidapi.hash │ │ └── hidapi.mk │ ├── hiredis/ │ │ ├── 0001-CMakeLists.txt-do-not-force-SHARED.patch │ │ ├── 0002-CMakeLists.txt-allow-building-without-a-C-compiler.patch │ │ ├── 0003-Explicitly-set-c99-in-CMake.patch │ │ ├── Config.in │ │ ├── hiredis.hash │ │ └── hiredis.mk │ ├── hostapd/ │ │ ├── 0001-AP-Silently-ignore-management-frame-from-unexpected-.patch │ │ ├── 0002-ASN.1-Validate-DigestAlgorithmIdentifier-parameters.patch │ │ ├── 0003-Include-stdbool.h-to-allow-C99-bool-to-be-used.patch │ │ ├── 0004-ASN.1-Add-helper-functions-for-recognizing-tag-value.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/ │ │ ├── Config.in │ │ ├── htop.hash │ │ └── htop.mk │ ├── htpdate/ │ │ ├── Config.in │ │ ├── S43htpdate │ │ ├── htpdate.hash │ │ ├── htpdate.mk │ │ └── htpdate.service │ ├── 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/ │ │ ├── Config.in │ │ ├── S99i2pd │ │ ├── i2pd.hash │ │ ├── i2pd.mk │ │ └── i2pd.service │ ├── i7z/ │ │ ├── 0001-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── i7z.hash │ │ └── i7z.mk │ ├── ibm-sw-tpm2/ │ │ ├── 0001-Use-LONG_BIT-to-define-RADIX_BITS.patch │ │ ├── Config.in │ │ ├── ibm-sw-tpm2.hash │ │ └── ibm-sw-tpm2.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/ │ │ ├── Config.in │ │ ├── ibrdtn.hash │ │ └── ibrdtn.mk │ ├── ibrdtn-tools/ │ │ ├── Config.in │ │ ├── ibrdtn-tools.hash │ │ └── ibrdtn-tools.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-ICU-21587-Fix-memory-bug-w-baseName.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 │ │ ├── 0005-src-interface.h-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── ifplugd.hash │ │ └── ifplugd.mk │ ├── iftop/ │ │ ├── 0001-ui_common.h-fix-build-with-gcc-10.patch │ │ ├── 0002-Rename-pcap_filter-to-iftop_pcap_filter.patch │ │ ├── Config.in │ │ ├── iftop.hash │ │ └── iftop.mk │ ├── ifupdown/ │ │ ├── 0001-dont-use-dpkg-architecture.patch │ │ ├── Config.in │ │ ├── ifupdown.hash │ │ └── ifupdown.mk │ ├── ifupdown-scripts/ │ │ ├── Config.in │ │ ├── S40network │ │ ├── ifupdown-scripts.mk │ │ ├── network/ │ │ │ ├── if-down.d/ │ │ │ │ └── .empty │ │ │ ├── if-post-down.d/ │ │ │ │ └── .empty │ │ │ ├── if-pre-up.d/ │ │ │ │ └── wait_iface │ │ │ └── if-up.d/ │ │ │ └── .empty │ │ ├── network.service │ │ └── nfs_check │ ├── 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 │ ├── inih/ │ │ ├── Config.in │ │ ├── inih.hash │ │ └── inih.mk │ ├── initscripts/ │ │ ├── Config.in │ │ ├── init.d/ │ │ │ ├── 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/ │ │ ├── 0001-Drop-hardening-related-flags.patch │ │ ├── Config.in │ │ ├── intel-gmmlib.hash │ │ └── intel-gmmlib.mk │ ├── intel-mediadriver/ │ │ ├── 0001-Add-MEDIA-BUILD-HARDENING-option.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 │ ├── 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 │ ├── ipcalc/ │ │ ├── Config.in │ │ ├── ipcalc.hash │ │ └── ipcalc.mk │ ├── iperf/ │ │ ├── 0001-Fix-build-with-musl-libc.patch │ │ ├── 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 │ │ ├── 0007-hpmfwupg-move-variable-definition-to-c-file.patch │ │ ├── 0008-fru-Fix-buffer-overflow-vulnerabilities.patch │ │ ├── 0009-fru-Fix-buffer-overflow-in-ipmi_spd_print_fru.patch │ │ ├── 0010-session-Fix-buffer-overflow-in-ipmi_get_session_info.patch │ │ ├── 0011-channel-Fix-buffer-overflow.patch │ │ ├── 0012-lanp-Fix-buffer-overflows-in-get_lan_param_select.patch │ │ ├── 0013-fru-sdr-Fix-id_string-buffer-overflows.patch │ │ ├── Config.in │ │ ├── ipmitool.hash │ │ └── ipmitool.mk │ ├── ipmiutil/ │ │ ├── Config.in │ │ ├── ipmiutil.hash │ │ └── ipmiutil.mk │ ├── iproute2/ │ │ ├── Config.in │ │ ├── iproute2.hash │ │ └── iproute2.mk │ ├── iprutils/ │ │ ├── 0001-configure.ac-add-AC_USE_SYSTEM_EXTENSIONS.patch │ │ ├── Config.in │ │ ├── iprutils.hash │ │ └── iprutils.mk │ ├── ipset/ │ │ ├── Config.in │ │ ├── ipset.hash │ │ └── ipset.mk │ ├── iptables/ │ │ ├── Config.in │ │ ├── S35iptables │ │ ├── iptables.hash │ │ └── iptables.mk │ ├── iptraf-ng/ │ │ ├── Config.in │ │ ├── iptraf-ng.hash │ │ └── iptraf-ng.mk │ ├── iputils/ │ │ ├── 0001-meson-Make-tests-optional.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/ │ │ ├── 0001-configure.ac-use-pkg-config-to-find-numa.patch │ │ ├── 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 │ │ ├── 0003-makefile-override-LDFLAGS-and-remove-obsolete-X11R6-.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/ │ │ ├── 0001-build-Add-reallocarray-to-missing-h.patch │ │ ├── 0002-netconfig-Remove-usage-of-in6_addr__in6_u.patch │ │ ├── Config.in │ │ ├── S40iwd │ │ ├── iwd.hash │ │ ├── iwd.mk │ │ └── main.conf │ ├── jack1/ │ │ ├── Config.in │ │ ├── jack1.hash │ │ └── jack1.mk │ ├── jack2/ │ │ ├── Config.in │ │ ├── jack2.hash │ │ └── jack2.mk │ ├── jailhouse/ │ │ ├── Config.in │ │ ├── jailhouse.hash │ │ └── jailhouse.mk │ ├── janet/ │ │ ├── Config.in │ │ ├── janet.hash │ │ └── janet.mk │ ├── jansson/ │ │ ├── Config.in │ │ ├── jansson.hash │ │ └── jansson.mk │ ├── janus-gateway/ │ │ ├── 0001-disable-ssp.patch │ │ ├── 0002-Add-test-for-Wunused-but-set-variable.patch │ │ ├── 0003-Fix-potential-Cross-site-Scripting-XSS-exploits-in-demos.patch │ │ ├── Config.in │ │ ├── janus-gateway.hash │ │ └── janus-gateway.mk │ ├── jasper/ │ │ ├── Config.in │ │ ├── jasper.hash │ │ └── jasper.mk │ ├── jbig2dec/ │ │ ├── Config.in │ │ ├── jbig2dec.hash │ │ └── jbig2dec.mk │ ├── jemalloc/ │ │ ├── Config.in │ │ ├── jemalloc.hash │ │ └── jemalloc.mk │ ├── jh71xx-tools/ │ │ ├── Config.in.host │ │ ├── jh71xx-tools.hash │ │ └── jh71xx-tools.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/ │ │ ├── Config.in │ │ └── jpeg.mk │ ├── jpeg-turbo/ │ │ ├── Config.in.options │ │ ├── jpeg-turbo.hash │ │ └── jpeg-turbo.mk │ ├── jq/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── jq.hash │ │ └── jq.mk │ ├── jquery/ │ │ ├── Config.in │ │ ├── jquery.hash │ │ └── jquery.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/ │ │ ├── Config.in │ │ ├── jquery-ui.hash │ │ └── jquery-ui.mk │ ├── jquery-ui-themes/ │ │ ├── Config.in │ │ ├── jquery-ui-themes.hash │ │ └── jquery-ui-themes.mk │ ├── jquery-validation/ │ │ ├── Config.in │ │ ├── jquery-validation.hash │ │ └── jquery-validation.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/ │ │ ├── Config.in │ │ ├── jsoncpp.hash │ │ └── jsoncpp.mk │ ├── jszip/ │ │ ├── 0001-fix-Use-a-null-prototype-object-for-this-files.patch │ │ ├── Config.in │ │ ├── jszip.hash │ │ └── jszip.mk │ ├── kbd/ │ │ ├── Config.in │ │ ├── kbd.hash │ │ └── kbd.mk │ ├── keepalived/ │ │ ├── 0001-core-Fix-compiling-on-RHEL-9.patch │ │ ├── Config.in │ │ ├── keepalived.hash │ │ └── keepalived.mk │ ├── kexec/ │ │ ├── 0001-kexec-tools-Remove-duplicate-definition-of-ramdisk.patch │ │ ├── Config.in │ │ ├── kexec.hash │ │ └── kexec.mk │ ├── kexec-lite/ │ │ ├── 0001-clean-restart.patch │ │ ├── Config.in │ │ ├── kexec-lite.hash │ │ └── kexec-lite.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/ │ │ ├── Config.in │ │ ├── kismet.hash │ │ └── kismet.mk │ ├── kmod/ │ │ ├── 0001-fix-O_CLOEXEC.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── 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/ │ │ ├── 0001-kodi-config.cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch │ │ ├── Config.in │ │ ├── S50kodi │ │ ├── br-kodi │ │ ├── kodi.hash │ │ ├── kodi.mk │ │ └── kodi.service │ ├── 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-ffmpegdirect/ │ │ ├── Config.in │ │ ├── kodi-inputstream-ffmpegdirect.hash │ │ └── kodi-inputstream-ffmpegdirect.mk │ ├── kodi-inputstream-rtmp/ │ │ ├── Config.in │ │ ├── kodi-inputstream-rtmp.hash │ │ └── kodi-inputstream-rtmp.mk │ ├── kodi-jsonschemabuilder/ │ │ └── kodi-jsonschemabuilder.mk │ ├── kodi-peripheral-joystick/ │ │ ├── Config.in │ │ ├── kodi-peripheral-joystick.hash │ │ └── kodi-peripheral-joystick.mk │ ├── kodi-peripheral-xarcade/ │ │ ├── Config.in │ │ ├── kodi-peripheral-xarcade.hash │ │ └── kodi-peripheral-xarcade.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-octonet/ │ │ ├── Config.in │ │ ├── kodi-pvr-octonet.hash │ │ └── kodi-pvr-octonet.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-pvr-zattoo/ │ │ ├── Config.in │ │ ├── kodi-pvr-zattoo.hash │ │ └── kodi-pvr-zattoo.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/ │ │ ├── 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-greynetic/ │ │ ├── Config.in │ │ ├── kodi-screensaver-greynetic.hash │ │ └── kodi-screensaver-greynetic.mk │ ├── kodi-screensaver-matrixtrails/ │ │ ├── Config.in │ │ ├── kodi-screensaver-matrixtrails.hash │ │ └── kodi-screensaver-matrixtrails.mk │ ├── kodi-screensaver-pingpong/ │ │ ├── Config.in │ │ ├── kodi-screensaver-pingpong.hash │ │ └── kodi-screensaver-pingpong.mk │ ├── kodi-screensaver-pyro/ │ │ ├── Config.in │ │ ├── kodi-screensaver-pyro.hash │ │ └── kodi-screensaver-pyro.mk │ ├── kodi-screensaver-rsxs/ │ │ ├── 0001-impSurface.h-fix-build-with-gcc11.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.mk │ ├── kodi-vfs-libarchive/ │ │ ├── Config.in │ │ ├── kodi-vfs-libarchive.hash │ │ └── kodi-vfs-libarchive.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-matrix/ │ │ ├── Config.in │ │ ├── kodi-visualisation-matrix.hash │ │ └── kodi-visualisation-matrix.mk │ ├── kodi-visualisation-shadertoy/ │ │ ├── Config.in │ │ ├── kodi-visualisation-shadertoy.hash │ │ └── kodi-visualisation-shadertoy.mk │ ├── kodi-visualisation-spectrum/ │ │ ├── Config.in │ │ ├── kodi-visualisation-spectrum.hash │ │ └── kodi-visualisation-spectrum.mk │ ├── kodi-visualisation-starburst/ │ │ ├── Config.in │ │ ├── kodi-visualisation-starburst.hash │ │ └── kodi-visualisation-starburst.mk │ ├── kodi-visualisation-waveform/ │ │ ├── Config.in │ │ ├── kodi-visualisation-waveform.hash │ │ └── kodi-visualisation-waveform.mk │ ├── 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 │ │ ├── 0004-Fix-powerpc-issue-with-the-linker-from-Fedora-32.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 │ ├── lan951x-led-ctl/ │ │ ├── 0001-fix-cross-compile.patch │ │ ├── Config.in │ │ └── lan951x-led-ctl.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-LCDd.conf.patch │ │ ├── 0002-Add-missing-ioctl-header.patch │ │ ├── 0003-Fixcompilation-with-GCC-10-x.patch │ │ ├── Config.in │ │ ├── lcdproc.hash │ │ └── lcdproc.mk │ ├── lcms2/ │ │ ├── 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 │ │ ├── 0004-cmake-Use-find_package-to-find-Snappy.patch │ │ ├── Config.in │ │ ├── leveldb.hash │ │ └── leveldb.mk │ ├── lft/ │ │ ├── Config.in │ │ ├── lft.hash │ │ └── lft.mk │ ├── lftp/ │ │ ├── 0001-Fix-build-with-LibreSSL-following-commit-537f37898.patch │ │ ├── Config.in │ │ ├── lftp.hash │ │ └── lftp.mk │ ├── libaacs/ │ │ ├── 0001-read_file.h-include-sys-types.h.patch │ │ ├── Config.in │ │ ├── libaacs.hash │ │ └── libaacs.mk │ ├── libabseil-cpp/ │ │ ├── 0001-force-position-independent-code.patch │ │ ├── Config.in │ │ ├── libabseil-cpp.hash │ │ └── libabseil-cpp.mk │ ├── libaio/ │ │ ├── Config.in │ │ ├── libaio.hash │ │ └── libaio.mk │ ├── libao/ │ │ ├── Config.in │ │ ├── libao.hash │ │ └── libao.mk │ ├── libapparmor/ │ │ ├── Config.in │ │ ├── libapparmor.hash │ │ └── libapparmor.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 │ ├── libbacktrace/ │ │ ├── Config.in │ │ ├── libbacktrace.hash │ │ └── libbacktrace.mk │ ├── libbdplus/ │ │ ├── Config.in │ │ ├── libbdplus.hash │ │ └── libbdplus.mk │ ├── libblockdev/ │ │ ├── 0001-Provide-replacement-function-for-strerror_l.patch │ │ ├── Config.in │ │ ├── libblockdev.hash │ │ └── libblockdev.mk │ ├── libbluray/ │ │ ├── Config.in │ │ ├── libbluray.hash │ │ └── libbluray.mk │ ├── libbpf/ │ │ ├── Config.in │ │ ├── libbpf.hash │ │ └── libbpf.mk │ ├── libbroadvoice/ │ │ ├── Config.in │ │ ├── libbroadvoice.hash │ │ └── libbroadvoice.mk │ ├── libbsd/ │ │ ├── Config.in │ │ ├── libbsd.hash │ │ └── libbsd.mk │ ├── libbson/ │ │ ├── Config.in │ │ ├── libbson.hash │ │ └── libbson.mk │ ├── libbytesize/ │ │ ├── Config.in │ │ ├── libbytesize.hash │ │ └── libbytesize.mk │ ├── libcamera/ │ │ ├── Config.in │ │ ├── libcamera.hash │ │ └── libcamera.mk │ ├── libcap/ │ │ ├── 0001-libcap-Makefile-don-t-overwrite-empty-when-generatin.patch │ │ ├── Config.in │ │ ├── libcap.hash │ │ └── libcap.mk │ ├── libcap-ng/ │ │ ├── Config.in │ │ ├── libcap-ng.hash │ │ └── libcap-ng.mk │ ├── libcdaudio/ │ │ ├── 0001-libcdaudio-enable-autoreconf.patch │ │ ├── Config.in │ │ ├── libcdaudio.hash │ │ └── libcdaudio.mk │ ├── libcddb/ │ │ ├── Config.in │ │ ├── libcddb.hash │ │ └── libcddb.mk │ ├── libcdio/ │ │ ├── Config.in │ │ ├── libcdio.hash │ │ └── libcdio.mk │ ├── libcdio-paranoia/ │ │ ├── Config.in │ │ ├── libcdio-paranoia.hash │ │ └── libcdio-paranoia.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/ │ │ ├── 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/ │ │ ├── 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/ │ │ ├── Config.in │ │ ├── libcpprestsdk.hash │ │ └── libcpprestsdk.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 │ ├── libcutl/ │ │ ├── libcutl.hash │ │ └── libcutl.mk │ ├── libdaemon/ │ │ ├── 0001-testd-use-unistd-h-instead-of-sys-unistd-h.patch │ │ ├── Config.in │ │ ├── libdaemon.hash │ │ └── libdaemon.mk │ ├── libdbi/ │ │ ├── Config.in │ │ ├── libdbi.hash │ │ └── libdbi.mk │ ├── libdbi-drivers/ │ │ ├── Config.in │ │ ├── libdbi-drivers.hash │ │ └── libdbi-drivers.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-tests-meson.build-disable-nouveau-tests-for-static-b.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/ │ │ ├── Config.in │ │ ├── libeXosip2.hash │ │ └── libeXosip2.mk │ ├── libeastl/ │ │ ├── Config.in │ │ ├── libeastl.hash │ │ └── libeastl.mk │ ├── libebml/ │ │ ├── 0001-include-appropriate-header-files-for-std-numeric_limits.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── libevdev.hash │ │ └── libevdev.mk │ ├── libevent/ │ │ ├── Config.in │ │ ├── libevent.hash │ │ └── libevent.mk │ ├── libexif/ │ │ ├── 0001-libexif-exif-gps-ifd.c-fix-build-with-gcc-4.8.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 │ │ ├── Config.in │ │ ├── libffi.hash │ │ └── libffi.mk │ ├── libfm/ │ │ ├── 0001-modules-fix-cross-compilation.patch │ │ ├── Config.in │ │ ├── libfm.hash │ │ └── libfm.mk │ ├── libfm-extra/ │ │ ├── Config.in │ │ ├── libfm-extra.hash │ │ └── libfm-extra.mk │ ├── libfreefare/ │ │ ├── Config.in │ │ ├── libfreefare.hash │ │ └── libfreefare.mk │ ├── libfreeglut/ │ │ ├── 0001-Work-around-for-an-issue-which-cropped-up-with-the-release-of-gcc-10.patch │ │ ├── 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/ │ │ ├── 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-CMakeLists.txt-fix-paths-when-FTDIPP-is-set.patch │ │ ├── Config.in │ │ ├── libftdi1.hash │ │ └── libftdi1.mk │ ├── libfuse/ │ │ ├── 0001-fix-aarch64-build.patch │ │ ├── 0002-util-ulockmgr_server-c-conditionally-define-closefrom-fix-glibc-2-34.patch │ │ ├── Config.in │ │ ├── libfuse.hash │ │ └── libfuse.mk │ ├── libfuse3/ │ │ ├── Config.in │ │ ├── libfuse3.hash │ │ └── libfuse3.mk │ ├── libg7221/ │ │ ├── Config.in │ │ ├── libg7221.hash │ │ └── libg7221.mk │ ├── libgcrypt/ │ │ ├── 0001-configure.ac-add-an-option-to-disable-tests.patch │ │ ├── Config.in │ │ ├── libgcrypt.hash │ │ └── libgcrypt.mk │ ├── libgdiplus/ │ │ ├── 0001-Build-unit-tests-only-when-enable-unit-tests-is-pass.patch │ │ ├── Config.in │ │ ├── libgdiplus.hash │ │ └── libgdiplus.mk │ ├── libgee/ │ │ ├── 0001-gee-Makefile.am-include-Makefile.introspection.patch │ │ ├── Config.in │ │ ├── libgee.hash │ │ └── libgee.mk │ ├── libgeos/ │ │ ├── Config.in │ │ ├── libgeos.hash │ │ └── libgeos.mk │ ├── libgeotiff/ │ │ ├── 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-remove-cpp-requirement.patch │ │ ├── 0003-Add-Wno-format-nonliteral-to-compiler-arguments.patch │ │ ├── 0004-meson.build-add-girdir-to-gio-2.0.pc-and-glib-2.0.pc.patch │ │ ├── Config.in │ │ ├── libglib2.hash │ │ └── libglib2.mk │ ├── libglob/ │ │ ├── Config.in │ │ ├── libglob.hash │ │ └── libglob.mk │ ├── libglu/ │ │ ├── Config.in │ │ ├── libglu.hash │ │ └── libglu.mk │ ├── libgpg-error/ │ │ ├── 0001-build-Fix-generation-of-lock-obj-pub.native.h-for-cr.patch │ │ ├── 0002-build-Fix-disable-threads.patch │ │ ├── Config.in │ │ ├── libgpg-error.hash │ │ └── libgpg-error.mk │ ├── libgpgme/ │ │ ├── 0001-core-Support-closefrom-also-for-glibc.patch │ │ ├── Config.in │ │ ├── libgpgme.hash │ │ └── libgpgme.mk │ ├── libgphoto2/ │ │ ├── Config.in │ │ ├── libgphoto2.hash │ │ └── libgphoto2.mk │ ├── libgpiod/ │ │ ├── 0001-build-add-a-configure-switch-for-building-examples.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── libhtp.hash │ │ └── libhtp.mk │ ├── libhttpparser/ │ │ ├── Config.in │ │ ├── libhttpparser.hash │ │ └── libhttpparser.mk │ ├── libhttpserver/ │ │ ├── Config.in │ │ ├── libhttpserver.hash │ │ └── libhttpserver.mk │ ├── libiberty/ │ │ ├── libiberty.hash │ │ └── libiberty.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/ │ │ ├── Config.in │ │ ├── id3tag.pc │ │ ├── libid3tag.hash │ │ └── libid3tag.mk │ ├── libidn/ │ │ ├── Config.in │ │ ├── libidn.hash │ │ └── libidn.mk │ ├── libidn2/ │ │ ├── Config.in │ │ ├── libidn2.hash │ │ └── libidn2.mk │ ├── libiec61850/ │ │ ├── Config.in │ │ ├── libiec61850.hash │ │ └── libiec61850.mk │ ├── libiio/ │ │ ├── 0001-C-public-fields-with-getters-setters-cannot-be-marked-readonly.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/ │ │ ├── 0001-Disable-use-of-__NR_io_getevents-when-not-defined.patch │ │ ├── Config.in │ │ ├── libkcapi.hash │ │ └── libkcapi.mk │ ├── libkrb5/ │ │ ├── 0001-Fix-KDC-null-deref-on-TGS-inner-body-null-server.patch │ │ ├── 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-Makefile.in-fix-cross-compilation.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 │ │ ├── 0002-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/ │ │ ├── 0001-src-libmbim-glib-meson.build-fix-static-build.patch │ │ ├── Config.in │ │ ├── libmbim.hash │ │ └── libmbim.mk │ ├── libmbus/ │ │ ├── Config.in │ │ ├── libmbus.hash │ │ └── libmbus.mk │ ├── libmdbx/ │ │ ├── Config.in │ │ ├── libmdbx.hash │ │ └── libmdbx.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-configure.ac-drop-usage-of-git-at-configure-time.patch │ │ ├── 0002-modsecurity.pc.in-add-lstdc.patch │ │ ├── 0003-Revert-Fix-maxminddb-link-on-FreeBSD.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/ │ │ ├── Config.in │ │ ├── libndp.hash │ │ └── libndp.mk │ ├── libnet/ │ │ ├── 0001-Use-standard-int64_t-instead-of-__int64_t-for-mingw-cross-build.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/ │ │ ├── 0001-libnetfilter_conntrack.pc.in-add-LIBMNL_LIBS-to-Libs.patch │ │ ├── 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 │ │ ├── 0002-Add-include-needed-for-integer-type-definition.patch │ │ ├── 0003-src-Use-stdint-types-everywhere.patch │ │ ├── 0004-include-Sync-with-current-kernel-headers.patch │ │ ├── Config.in │ │ ├── libnetfilter_log.hash │ │ └── libnetfilter_log.mk │ ├── libnetfilter_queue/ │ │ ├── Config.in │ │ ├── libnetfilter_queue.hash │ │ └── libnetfilter_queue.mk │ ├── libnfc/ │ │ ├── 0001-autotools-make-example-build-optional.patch │ │ ├── Config.in │ │ ├── libnfc.hash │ │ └── libnfc.mk │ ├── libnfnetlink/ │ │ ├── 0001-uclinux.patch │ │ ├── 0002-include-Sync-with-kernel-headers.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 │ ├── libnids/ │ │ ├── 0001-libpcap-use-pkg-config.patch │ │ ├── Config.in │ │ ├── libnids.hash │ │ └── libnids.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 │ ├── libnpupnp/ │ │ ├── Config.in │ │ ├── libnpupnp.hash │ │ └── libnpupnp.mk │ ├── libnspr/ │ │ ├── Config.in │ │ ├── libnspr.hash │ │ └── libnspr.mk │ ├── libnss/ │ │ ├── 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 │ ├── libodb/ │ │ ├── Config.in │ │ ├── libodb.hash │ │ └── libodb.mk │ ├── libodb-boost/ │ │ ├── Config.in │ │ ├── libodb-boost.hash │ │ └── libodb-boost.mk │ ├── libodb-mysql/ │ │ ├── 0001-fix-syntax-issue-while-checking-ldflags.patch │ │ ├── 0002-mariadb-FTBFS-fix.patch │ │ ├── Config.in │ │ ├── libodb-mysql.hash │ │ └── libodb-mysql.mk │ ├── libodb-pgsql/ │ │ ├── Config.in │ │ ├── libodb-pgsql.hash │ │ └── libodb-pgsql.mk │ ├── libogg/ │ │ ├── Config.in │ │ ├── libogg.hash │ │ └── libogg.mk │ ├── libolm/ │ │ ├── Config.in │ │ ├── libolm.hash │ │ └── libolm.mk │ ├── libopenh264/ │ │ ├── 0001-Add-USE_STACK_PROTECTOR-option.patch │ │ ├── 0002-fix-mips-build.patch │ │ ├── 0003-codec-common-inc-asmdefs_mmi.h-fix-mips32-build.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 │ │ ├── 0004-Configure-use-ELFv2-ABI-on-some-ppc64-big-endian-sys.patch │ │ ├── 0005-crypto-perlasm-ppc-xlate.pl-add-linux64v2-flavour.patch │ │ ├── 0006-Add-support-for-io_pgetevents_time64-syscall.patch │ │ ├── 0007-Fixup-support-for-io_pgetevents_time64-syscall.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/ │ │ ├── Config.in │ │ ├── libosip2.hash │ │ └── libosip2.mk │ ├── libosmium/ │ │ ├── Config.in │ │ ├── libosmium.hash │ │ └── libosmium.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-Add-an-option-to-disable-Werror.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/ │ │ ├── 0001-cmake-require-c-11-as-the-minimum-standard.patch │ │ ├── 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 │ ├── libpsl/ │ │ ├── Config.in │ │ ├── libpsl.hash │ │ └── libpsl.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 │ ├── libqb/ │ │ ├── Config.in │ │ ├── libqb.hash │ │ └── libqb.mk │ ├── libqmi/ │ │ ├── Config.in │ │ ├── libqmi.hash │ │ └── libqmi.mk │ ├── libqrencode/ │ │ ├── Config.in │ │ ├── libqrencode.hash │ │ └── libqrencode.mk │ ├── libqrtr-glib/ │ │ ├── Config.in │ │ ├── libqrtr-glib.hash │ │ └── libqrtr-glib.mk │ ├── libraw/ │ │ ├── 0001-Add-Libs.private-to-libraw.pc.patch │ │ ├── Config.in │ │ ├── libraw.hash │ │ └── libraw.mk │ ├── libraw1394/ │ │ ├── Config.in │ │ ├── libraw1394.hash │ │ └── libraw1394.mk │ ├── librelp/ │ │ ├── Config.in │ │ ├── librelp.hash │ │ └── librelp.mk │ ├── libreplaygain/ │ │ ├── Config.in │ │ ├── libreplaygain.hash │ │ └── libreplaygain.mk │ ├── libressl/ │ │ ├── 0001-always-expose-SSL_OP_NO_TLSv1_3.patch │ │ ├── Config.in │ │ ├── libressl.hash │ │ └── libressl.mk │ ├── libroxml/ │ │ ├── 0001-src-roxml_mem.h-add-missing-extern.patch │ │ ├── Config.in │ │ ├── libroxml.hash │ │ └── libroxml.mk │ ├── librsvg/ │ │ ├── Config.in │ │ ├── librsvg.hash │ │ └── librsvg.mk │ ├── librsync/ │ │ ├── Config.in │ │ ├── librsync.hash │ │ └── librsync.mk │ ├── librtas/ │ │ ├── Config.in │ │ ├── librtas.hash │ │ └── librtas.mk │ ├── librtlsdr/ │ │ ├── 0001-disable_shared_library_target_in_build.patch │ │ ├── 0002-cmake-Modules-Version.cmake-don-t-use-Git-version-if.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/ │ │ ├── Config.in │ │ ├── libseccomp.hash │ │ └── libseccomp.mk │ ├── libsecret/ │ │ ├── Config.in │ │ ├── libsecret.hash │ │ └── libsecret.mk │ ├── libselinux/ │ │ ├── 0001-fix-musl-build.patch │ │ ├── 0002-Do-not-use-PYCEXT-and-rely-on-the-installed-file-nam.patch │ │ ├── 0003-libselinux-utils-getseuser.c-fix-build-with-gcc-4.8.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/ │ │ ├── 0001-configure.ac-add-an-option-to-disable-tools.patch │ │ ├── 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/ │ │ ├── 0001-configure-ac-Add-support-for-Python-3-9.patch │ │ ├── Config.in │ │ ├── libsigrokdecode.hash │ │ └── libsigrokdecode.mk │ ├── libsigsegv/ │ │ ├── Config.in │ │ ├── libsigsegv.hash │ │ └── libsigsegv.mk │ ├── libsilk/ │ │ ├── Config.in │ │ ├── libsilk.hash │ │ └── libsilk.mk │ ├── libsndfile/ │ │ ├── 0001-ms_adpcm-Fix-and-extend-size-checks.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 │ ├── libsoundtouch/ │ │ ├── Config.in │ │ ├── libsoundtouch.hash │ │ └── libsoundtouch.mk │ ├── libsoup/ │ │ ├── 0001-meson.build-set-c_std-to-gnu99.patch │ │ ├── Config.in │ │ ├── libsoup.hash │ │ └── libsoup.mk │ ├── libsoxr/ │ │ ├── 0001-Add-Libs.private-for-static-linking.patch │ │ ├── Config.in │ │ ├── libsoxr.hash │ │ └── libsoxr.mk │ ├── libspatialindex/ │ │ ├── 0001-allow-building-static-libs.patch │ │ ├── 0002-CMakeLists.txt-fix-CMAKE_BUILD_TYPE.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/ │ │ ├── Config.in │ │ ├── libssh2.hash │ │ └── libssh2.mk │ ├── libstrophe/ │ │ ├── Config.in │ │ ├── libstrophe.hash │ │ └── libstrophe.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 │ ├── libsvg-cairo/ │ │ ├── Config.in │ │ ├── libsvg-cairo.hash │ │ └── libsvg-cairo.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 │ ├── libtalloc/ │ │ ├── Config.in │ │ ├── libtalloc-cache.txt │ │ ├── libtalloc.hash │ │ └── libtalloc.mk │ ├── libtasn1/ │ │ ├── 0001-fuzz-Makefile.am-do-not-force-static.patch │ │ ├── Config.in │ │ ├── libtasn1.hash │ │ └── libtasn1.mk │ ├── libteam/ │ │ ├── 0001-revert-disregard-current-state.patch │ │ ├── 0002-fix-build-on-openwrt-musl-libc.patch │ │ ├── 0003-increase-wait-time-for-daemon-kill.patch │ │ ├── Config.in │ │ ├── libteam.hash │ │ └── libteam.mk │ ├── libtelnet/ │ │ ├── 0001-fix-compilation-without-zlib.patch │ │ ├── Config.in │ │ ├── libtelnet.hash │ │ └── libtelnet.mk │ ├── libtextstyle/ │ │ ├── libtextstyle.hash │ │ └── libtextstyle.mk │ ├── libtheora/ │ │ ├── 0001-link-libtheoradec.patch │ │ ├── 0002-fix-autoreconf.patch │ │ ├── Config.in │ │ ├── libtheora.hash │ │ └── libtheora.mk │ ├── libtirpc/ │ │ ├── Config.in │ │ ├── libtirpc.hash │ │ └── libtirpc.mk │ ├── libtomcrypt/ │ │ ├── 0001-fix-CVE-2019-17362.patch │ │ ├── Config.in │ │ ├── libtomcrypt.hash │ │ └── libtomcrypt.mk │ ├── libtommath/ │ │ ├── 0001-Build-test-bn_mp_set_double-c-on-more-platforms.patch │ │ ├── Config.in │ │ ├── libtommath.hash │ │ └── libtommath.mk │ ├── libtool/ │ │ ├── Config.in │ │ ├── libtool.hash │ │ └── libtool.mk │ ├── libtorrent/ │ │ ├── 0001-libtorrent.pc.in-add-Libs.Private.patch │ │ ├── Config.in │ │ ├── libtorrent.hash │ │ └── libtorrent.mk │ ├── libtorrent-rasterbar/ │ │ ├── Config.in │ │ ├── libtorrent-rasterbar.hash │ │ └── libtorrent-rasterbar.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.hash │ │ └── libubox.mk │ ├── libuci/ │ │ ├── Config.in │ │ ├── libuci.hash │ │ └── libuci.mk │ ├── libucl/ │ │ ├── Config.in │ │ ├── libucl.hash │ │ └── libucl.mk │ ├── libudfread/ │ │ ├── Config.in │ │ ├── libudfread.hash │ │ └── libudfread.mk │ ├── libuecc/ │ │ ├── Config.in │ │ ├── libuecc.hash │ │ └── libuecc.mk │ ├── libuev/ │ │ ├── Config.in │ │ ├── libuev.hash │ │ └── libuev.mk │ ├── libuhttpd/ │ │ ├── 0001-openssl.c-fix-build-with-wolfssl.patch │ │ ├── Config.in │ │ ├── libuhttpd.hash │ │ └── libuhttpd.mk │ ├── libuio/ │ │ ├── 0001-configure-remove-po-Makefile.in.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 │ ├── libupnpp/ │ │ ├── Config.in │ │ ├── libupnpp.hash │ │ └── libupnpp.mk │ ├── liburcu/ │ │ ├── 0001-Only-blacklist-ARM-gcc-4.8.0-and-4.8.1.patch │ │ ├── 0002-fix-don-t-use-C-thread_local-on-MacOs.patch │ │ ├── 0003-Always-use-__thread-for-Thread-local-storage-except-on-MSVC.patch │ │ ├── Config.in │ │ ├── liburcu.hash │ │ └── liburcu.mk │ ├── liburiparser/ │ │ ├── Config.in │ │ ├── liburiparser.hash │ │ └── liburiparser.mk │ ├── libusb/ │ │ ├── 0001-linux_usbfs-Fix-parsing-of-descriptors-for-multi-con.patch │ │ ├── Config.in │ │ ├── libusb.hash │ │ └── libusb.mk │ ├── libusb-compat/ │ │ ├── 0001-fix-a-build-issue-on-linux.patch │ │ ├── Config.in │ │ ├── libusb-compat.hash │ │ └── libusb-compat.mk │ ├── libusbgx/ │ │ ├── 0001-Add-include-of-sys-sysmacro.h.patch │ │ ├── Config.in │ │ ├── libusbgx.hash │ │ └── libusbgx.mk │ ├── libuv/ │ │ ├── Config.in │ │ ├── libuv.hash │ │ └── libuv.mk │ ├── libuwsc/ │ │ ├── 0001-CMakeLists.txt-add-BUILD_EXAMPLE.patch │ │ ├── 0002-fix-bad-indentation.patch │ │ ├── Config.in │ │ ├── libuwsc.hash │ │ └── libuwsc.mk │ ├── libv4l/ │ │ ├── 0001-keymap.h-add-missing-includes-to-fix-musl-build.patch │ │ ├── Config.in │ │ ├── libv4l.hash │ │ └── libv4l.mk │ ├── libva/ │ │ ├── Config.in │ │ ├── libva.hash │ │ └── libva.mk │ ├── libva-intel-driver/ │ │ ├── Config.in │ │ ├── libva-intel-driver.hash │ │ └── libva-intel-driver.mk │ ├── libva-utils/ │ │ ├── Config.in │ │ ├── libva-utils.hash │ │ └── libva-utils.mk │ ├── libvdpau/ │ │ ├── Config.in │ │ ├── libvdpau.hash │ │ └── libvdpau.mk │ ├── libvips/ │ │ ├── Config.in │ │ ├── libvips.hash │ │ └── libvips.mk │ ├── libvirt/ │ │ ├── 90-kvm.rules │ │ ├── Config.in │ │ ├── S91virtlogd │ │ ├── S92libvirtd │ │ ├── libvirt.hash │ │ └── libvirt.mk │ ├── libvncserver/ │ │ ├── Config.in │ │ ├── libvncserver.hash │ │ └── libvncserver.mk │ ├── libvorbis/ │ │ ├── Config.in │ │ ├── libvorbis.hash │ │ └── libvorbis.mk │ ├── libvpx/ │ │ ├── 0001-vpx_mem-vpx_mem.h-Fix-compilation-with-uClibc.patch │ │ ├── Config.in │ │ ├── libvpx.hash │ │ └── libvpx.mk │ ├── libwebcam/ │ │ ├── Config.in │ │ └── libwebcam.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/ │ │ ├── Config.in │ │ ├── libwebsockets.hash │ │ └── libwebsockets.mk │ ├── libwpe/ │ │ ├── Config.in │ │ ├── libwpe.hash │ │ └── libwpe.mk │ ├── libxcrypt/ │ │ ├── Config.in │ │ ├── libxcrypt.hash │ │ └── libxcrypt.mk │ ├── libxkbcommon/ │ │ ├── Config.in │ │ ├── libxkbcommon.hash │ │ └── libxkbcommon.mk │ ├── libxml-parser-perl/ │ │ ├── libxml-parser-perl.hash │ │ └── libxml-parser-perl.mk │ ├── libxml2/ │ │ ├── Config.in │ │ ├── libxml2.hash │ │ └── libxml2.mk │ ├── libxmlpp/ │ │ ├── Config.in │ │ ├── libxmlpp.hash │ │ └── libxmlpp.mk │ ├── libxmlrpc/ │ │ ├── Config.in │ │ ├── libxmlrpc.hash │ │ └── libxmlrpc.mk │ ├── libxslt/ │ │ ├── 0001-Fix-xml2-config-check-in-configure-script.patch │ │ ├── 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/ │ │ ├── 0001-Add-FindGnuTLS-cmake-from-3-17-3.patch │ │ ├── 0002-Include-limits.h-for-INT_MAX.patch │ │ ├── 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-configure-ac-tweak-CPPUNIT-conditional.patch │ │ ├── 0002-src-Makefile.am-fix-linking-with-log4cpp.patch │ │ ├── Config.in │ │ ├── linknx.hash │ │ └── linknx.mk │ ├── links/ │ │ ├── Config.in │ │ ├── links.hash │ │ └── links.mk │ ├── linphone/ │ │ ├── 0001-src-core-paths-paths.cpp-fix-powerpc-build.patch │ │ ├── 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.mk │ ├── linux-pam/ │ │ ├── 0001-configure-test-a-o-is-not-POSIX.patch │ │ ├── 0002-Remove-support-for-legacy-xcrypt.patch │ │ ├── 0003-configure.ac-fix-build-with-libxcrypt-and-uclibc-ng.patch │ │ ├── 0004-configure.ac-also-search-libcrypt-through-pkg-config.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-bpftool.mk.in │ │ ├── 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 │ │ ├── Config.in │ │ ├── S65ptp4l │ │ ├── S66phc2sys │ │ ├── linuxptp.cfg │ │ ├── linuxptp.hash │ │ ├── linuxptp.mk │ │ ├── phc2sys.service │ │ └── ptp4l.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 │ │ ├── 0004-plugins-devinput.c-fix-build-with-musl-1.2.0.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/ │ │ ├── 0001-nfc-Fix-missing-include.patch │ │ ├── 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 │ │ ├── 0003-TOO_LONG-100-usec-to-prevent-memsize-from-timingout-.patch │ │ ├── 0004-Fix-garbage-pointer-for-lat_rpc-S-localhost.patch │ │ ├── Config.in │ │ ├── lmbench.hash │ │ └── lmbench.mk │ ├── localedef/ │ │ ├── 2.34-9-g9acab0bba6a5a57323b1f94bf95b21618a9e5aa4/ │ │ │ ├── 0001-HACK-only-build-and-install-localedef.patch │ │ │ ├── 0002-relax-dependency-on-GCC-to-4.8-and-binutils-to-2.24.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/ │ │ ├── Config.in │ │ ├── log4cplus.hash │ │ └── log4cplus.mk │ ├── log4cpp/ │ │ ├── Config.in │ │ ├── log4cpp.hash │ │ └── log4cpp.mk │ ├── log4cxx/ │ │ ├── 0001-LOGCXX-528.patch │ │ ├── Config.in │ │ ├── log4cxx.hash │ │ └── log4cxx.mk │ ├── log4qt/ │ │ ├── Config.in │ │ ├── log4qt.hash │ │ └── log4qt.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/ │ │ ├── Config.in │ │ ├── lrzip.hash │ │ └── lrzip.mk │ ├── lrzsz/ │ │ ├── Config.in │ │ ├── lrzsz.hash │ │ └── lrzsz.mk │ ├── lshw/ │ │ ├── 0001-Fix-musl-build-basename-is-in-libgen.h.patch │ │ ├── 0002-Fix-musl-build-wrong-usage-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/ │ │ ├── 0001-lapi-Add-sysinfo.h-to-fix-build-with-MUSL-libc.patch │ │ ├── 0002-lib-fix-MemAvailable-parsing.patch │ │ ├── 0003-lapi-rtnetlink.h-Fix-include-guards.patch │ │ ├── 0004-lapi-Create-if_addr.h-and-reuse-it-in-rtnetlink.h.patch │ │ ├── 0005-lapi-if_addr.h-Define-IFA_FLAGS.patch │ │ ├── Config.in │ │ ├── ltp-testsuite.hash │ │ └── ltp-testsuite.mk │ ├── ltrace/ │ │ ├── 0001-arm-plt.patch │ │ ├── 0002-sparc-add-missing-library.h-include.patch │ │ ├── 0003-configure.ac-fix-autoreconf-with-autoconf-2.70.patch │ │ ├── Config.in │ │ ├── ltrace.hash │ │ └── ltrace.mk │ ├── ltris/ │ │ ├── 0001-fix-build-with-gcc-4.8.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/ │ │ ├── 0001-configure.ac-add-disable-tests.patch │ │ ├── Config.in │ │ ├── lttng-tools.hash │ │ └── lttng-tools.mk │ ├── lua/ │ │ ├── 5.1.5/ │ │ │ ├── 0001-root-path.patch │ │ │ ├── 0002-shared-libs-for-lua.patch │ │ │ ├── 0011-linenoise.patch │ │ │ ├── 0012-fix-reader-at-eoz.patch │ │ │ └── lua.hash │ │ ├── 5.3.6/ │ │ │ ├── 0001-root-path.patch │ │ │ ├── 0002-shared-libs-for-lua.patch │ │ │ ├── 0003-linenoise.patch │ │ │ └── lua.hash │ │ ├── 5.4.3/ │ │ │ ├── 0001-root-path.patch │ │ │ ├── 0002-shared-libs-for-lua.patch │ │ │ ├── 0011-linenoise.patch │ │ │ └── lua.hash │ │ ├── Config.in │ │ ├── lua.mk │ │ └── lua.pc.in │ ├── lua-augeas/ │ │ ├── Config.in │ │ ├── lua-augeas.hash │ │ └── lua-augeas.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/ │ │ ├── Config.in │ │ ├── lua-livr.hash │ │ └── lua-livr.mk │ ├── lua-livr-extra/ │ │ ├── Config.in │ │ ├── lua-livr-extra.hash │ │ └── lua-livr-extra.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-lunix/ │ │ ├── 0001-fix-with-uClibc.patch │ │ ├── 0002-remove-link-with-librt.patch │ │ ├── 0003-fix-sysctl-detection.patch │ │ ├── Config.in │ │ ├── lua-lunix.hash │ │ └── lua-lunix.mk │ ├── lua-lyaml/ │ │ ├── Config.in │ │ ├── lua-lyaml.hash │ │ └── lua-lyaml.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-zlib/ │ │ ├── Config.in │ │ ├── lua-zlib.hash │ │ └── lua-zlib.mk │ ├── luabitop/ │ │ ├── Config.in │ │ ├── luabitop.hash │ │ └── luabitop.mk │ ├── luadbi/ │ │ ├── Config.in │ │ ├── luadbi.hash │ │ └── luadbi.mk │ ├── luadbi-sqlite3/ │ │ ├── Config.in │ │ ├── luadbi-sqlite3.hash │ │ └── luadbi-sqlite3.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 │ ├── lualdap/ │ │ ├── Config.in │ │ ├── lualdap.hash │ │ └── lualdap.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.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-remove-AX_LUA_LIBS.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/ │ │ ├── Config.in │ │ ├── luv.hash │ │ └── luv.mk │ ├── luvi/ │ │ ├── Config.in │ │ ├── luvi.hash │ │ └── luvi.mk │ ├── lvm2/ │ │ ├── Config.in │ │ ├── lvm2.hash │ │ └── lvm2.mk │ ├── lxc/ │ │ ├── Config.in │ │ ├── lxc.hash │ │ └── lxc.mk │ ├── lynx/ │ │ ├── Config.in │ │ ├── lynx.hash │ │ └── lynx.mk │ ├── lz4/ │ │ ├── 0001-Fix-potential-memory-corruption-with-negative-memmov.patch │ │ ├── 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/ │ │ ├── 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 │ ├── makedumpfile/ │ │ ├── 0001-PATCH-Define-PN_XNUM-if-missing.patch │ │ ├── Config.in │ │ ├── makedumpfile.hash │ │ └── makedumpfile.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/ │ │ ├── 0001-defaulttheme.patch │ │ ├── 0002-src-Fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── matchbox.hash │ │ └── matchbox.mk │ ├── 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 │ ├── matio/ │ │ ├── Config.in │ │ ├── matio.hash │ │ └── matio.mk │ ├── mawk/ │ │ ├── Config.in │ │ ├── mawk.hash │ │ └── mawk.mk │ ├── mbedtls/ │ │ ├── 0001-bn_mul.h-fix-x86-PIC-inline-ASM-compilation-with-GCC.patch │ │ ├── Config.in │ │ ├── mbedtls.hash │ │ └── mbedtls.mk │ ├── mbpfan/ │ │ ├── Config.in │ │ ├── mbpfan.hash │ │ └── mbpfan.mk │ ├── mbuffer/ │ │ ├── Config.in │ │ ├── mbuffer.hash │ │ └── mbuffer.mk │ ├── mc/ │ │ ├── Config.in │ │ ├── mc.hash │ │ └── mc.mk │ ├── mcelog/ │ │ ├── Config.in │ │ ├── mcelog.hash │ │ └── mcelog.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-src-videofilters-nowebcam.c-fix-build-without-ffmpeg.patch │ │ ├── 0002-Use-AV_INPUT_BUFFER_PADDING_SIZE-to-determine-paddin.patch │ │ ├── Config.in │ │ ├── mediastreamer.hash │ │ └── mediastreamer.mk │ ├── memcached/ │ │ ├── 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/ │ │ ├── Config.in │ │ ├── memtester.hash │ │ └── memtester.mk │ ├── memtool/ │ │ ├── Config.in │ │ ├── memtool.hash │ │ └── memtool.mk │ ├── mender/ │ │ ├── Config.in │ │ ├── S42mender │ │ ├── artifact_info │ │ ├── device_type │ │ ├── mender-client.service │ │ ├── mender.conf │ │ ├── mender.hash │ │ ├── mender.mk │ │ ├── readme.txt │ │ └── server.crt │ ├── mender-artifact/ │ │ ├── Config.in.host │ │ ├── mender-artifact.hash │ │ └── mender-artifact.mk │ ├── mender-grubenv/ │ │ ├── Config.in │ │ ├── mender-grubenv.hash │ │ └── mender-grubenv.mk │ ├── menu-cache/ │ │ ├── 0001-Support-gcc10-compilation.patch │ │ ├── Config.in │ │ ├── menu-cache.hash │ │ └── menu-cache.mk │ ├── mesa3d/ │ │ ├── 0001-c99_math-import-isinf-for-uclibc-based-toolchains.patch │ │ ├── 0002-meson-Set-proper-value-for-LIBCLC_INCLUDEDIR.patch │ │ ├── 0003-vc4-add-meson-option-to-disable-optional-neon-suppor.patch │ │ ├── 0004-src-util-rand_xor-Include-stddef.h-to-fix-build-erro.patch │ │ ├── 0005-src-util-futex.h-fix-build-on-32-bit-architectures-u.patch │ │ ├── Config.in │ │ ├── mesa3d.hash │ │ └── mesa3d.mk │ ├── mesa3d-demos/ │ │ ├── 0001-demos-makes-opengl-an-optional-component.patch │ │ ├── Config.in │ │ ├── mesa3d-demos.hash │ │ └── mesa3d-demos.mk │ ├── mesa3d-headers/ │ │ ├── Config.in │ │ ├── dri.pc │ │ └── mesa3d-headers.mk │ ├── meson/ │ │ ├── 0001-Prefer-ext-static-libs-when-default-library-static.patch │ │ ├── 0002-mesonbuild-dependencies-base.py-add-pkg_config_stati.patch │ │ ├── cross-compilation.conf.in │ │ ├── meson.hash │ │ └── meson.mk │ ├── meson-tools/ │ │ ├── 0001-amlbootenc-gxl-remove-non-std-C-convention-in-for.patch │ │ ├── Config.in.host │ │ ├── meson-tools.hash │ │ └── meson-tools.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 │ ├── mg/ │ │ ├── Config.in │ │ ├── mg.hash │ │ └── mg.mk │ ├── micropython/ │ │ ├── Config.in │ │ ├── micropython.hash │ │ └── micropython.mk │ ├── micropython-lib/ │ │ ├── Config.in │ │ ├── micropython-lib.hash │ │ └── micropython-lib.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/ │ │ ├── 0001-Fix-linking-on-gcc-10.2.0-or-newer.patch │ │ ├── Config.in │ │ ├── mimic.hash │ │ └── mimic.mk │ ├── minetest/ │ │ ├── Config.in │ │ ├── minetest.hash │ │ └── minetest.mk │ ├── minetest-game/ │ │ ├── Config.in │ │ ├── minetest-game.hash │ │ └── minetest-game.mk │ ├── mini-snmpd/ │ │ ├── 0001-linux.c-fix-musl-build.patch │ │ ├── Config.in │ │ ├── mini-snmpd │ │ ├── mini-snmpd.hash │ │ └── mini-snmpd.mk │ ├── minicom/ │ │ ├── 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/ │ │ ├── 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/ │ │ ├── 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 │ │ ├── 0002-src-mongo-db-exec-plan_stats.h-fix-build-with-gcc-11.patch │ │ ├── 0003-SERVER-59459-With-glibc-2-34-MINSIGSTKSZ-is-no-longer-a-constant.patch │ │ ├── Config.in │ │ ├── mongodb.hash │ │ └── mongodb.mk │ ├── mongoose/ │ │ ├── Config.in │ │ ├── mongoose.hash │ │ └── mongoose.mk │ ├── mongrel2/ │ │ ├── 0001-Do-not-run-tests.patch │ │ ├── 0002-Fix-Makefiles-for-cross-compilation.patch │ │ ├── 0003-fix-multiple-definition-error-when-building-with-gcc10.patch │ │ ├── 0004-Support-urandom-inside-chroot.patch │ │ ├── Config.in │ │ ├── mongrel2.hash │ │ └── mongrel2.mk │ ├── monit/ │ │ ├── 0001-no-force-static.patch │ │ ├── Config.in │ │ ├── monit.hash │ │ └── monit.mk │ ├── mono/ │ │ ├── 0001-Fix-linkage-with-a-system-libatomic_ops-shared-library.patch │ │ ├── 0002-Ongoing-work-on-the-cmake-build.patch │ │ ├── Config.in │ │ ├── mono.hash │ │ └── mono.mk │ ├── mono-gtksharp3/ │ │ ├── 0001-Fixes-MONO_PROFILE_ENTER_LEAVE-undeclared.patch │ │ ├── 0002-Mono-compilation-error-branch.patch │ │ ├── Config.in │ │ ├── mono-gtksharp3.hash │ │ └── mono-gtksharp3.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/ │ │ ├── 0001-Fix-build-with-GCC-10.patch │ │ ├── 0001-configure.ac-remove-po-Makefile.in.patch │ │ ├── 0001-without-nls.patch │ │ ├── 0002-enable-h264-omx-codec.patch │ │ ├── Config.in │ │ ├── S99motion │ │ ├── motion.hash │ │ ├── motion.mk │ │ └── motion.service │ ├── mp4v2/ │ │ ├── 0001-Fix-GCC7-build.patch │ │ ├── 0002-src-mp4track.cpp-replace-nullptr-by-NULL.patch │ │ ├── 0003-Static-cast-to-unsigned-int-for-cases.patch │ │ ├── Config.in │ │ ├── mp4v2.hash │ │ └── mp4v2.mk │ ├── mpc/ │ │ ├── Config.in │ │ ├── mpc.hash │ │ └── mpc.mk │ ├── mpd/ │ │ ├── 0001-src-event-meson.build-add-atomic-dependency-for-spar.patch │ │ ├── Config.in │ │ ├── S95mpd │ │ ├── mpd.conf │ │ ├── mpd.hash │ │ └── mpd.mk │ ├── mpd-mpc/ │ │ ├── Config.in │ │ ├── mpd-mpc.hash │ │ └── mpd-mpc.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-fix-powerpc64-altivec.patch │ │ ├── Config.in │ │ ├── mpv.hash │ │ └── mpv.mk │ ├── mraa/ │ │ ├── 0001-include-Declare-gVERSION-global-as-extern.patch │ │ ├── 0002-CMakeLists.txt-add-BUILDCPP-option.patch │ │ ├── Config.in │ │ ├── mraa.hash │ │ └── mraa.mk │ ├── mrouted/ │ │ ├── Config.in │ │ ├── S41mrouted │ │ ├── mrouted.hash │ │ └── mrouted.mk │ ├── mrp/ │ │ ├── Config.in │ │ ├── S65mrp │ │ ├── mrp.hash │ │ ├── mrp.mk │ │ └── mrp.service │ ├── msgpack/ │ │ ├── Config.in │ │ ├── msgpack.hash │ │ └── msgpack.mk │ ├── msmtp/ │ │ ├── Config.in │ │ ├── msmtp.hash │ │ └── msmtp.mk │ ├── msr-tools/ │ │ ├── Config.in │ │ ├── msr-tools.hash │ │ └── msr-tools.mk │ ├── mstpd/ │ │ ├── Config.in │ │ ├── mstpd.hash │ │ └── mstpd.mk │ ├── mtd/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── mtd.hash │ │ └── mtd.mk │ ├── mtdev/ │ │ ├── Config.in │ │ ├── mtdev.hash │ │ └── mtdev.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 │ ├── multipath-tools/ │ │ ├── 0001-kpartx-libmultipath-use-pkg-config-to-get-path-to-he.patch │ │ ├── 0002-Makefile.inc-Enable-systemd-if-ENABLE_SYSTEMD-is-def.patch │ │ ├── Config.in │ │ ├── S60multipathd │ │ ├── multipath-tools.hash │ │ └── multipath-tools.mk │ ├── mupdf/ │ │ ├── 0001-Makefile-add-an-install_libs-target.patch │ │ ├── 0002-Bug-703366-Fix-double-free-of-object-during-linearization.patch │ │ ├── 0003-Bug-703791-Stay-within-hash-table-max-key-size-in-cached-color-converter.patch │ │ ├── 0004-Makefile-compile-hexdump.exe-with-HOSTCC.patch │ │ ├── Config.in │ │ ├── mupdf.hash │ │ └── mupdf.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 │ │ ├── 0005-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── musepack.hash │ │ └── musepack.mk │ ├── musl/ │ │ ├── 0001-avoid-kernel-if_ether.h.patch │ │ ├── 0002-package-musl-Make-scheduler-functions-Linux-compatib.patch │ │ ├── Config.in │ │ ├── musl.hash │ │ └── musl.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 │ ├── mutt/ │ │ ├── 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/ │ │ ├── 0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch │ │ ├── Config.in │ │ ├── nano.hash │ │ └── nano.mk │ ├── nanocom/ │ │ ├── 0001-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── nanocom.hash │ │ └── nanocom.mk │ ├── nanomsg/ │ │ ├── Config.in │ │ ├── nanomsg.hash │ │ └── nanomsg.mk │ ├── nasm/ │ │ ├── nasm.hash │ │ └── nasm.mk │ ├── nbd/ │ │ ├── Config.in │ │ ├── nbd.hash │ │ └── nbd.mk │ ├── ncdu/ │ │ ├── Config.in │ │ ├── ncdu.hash │ │ └── ncdu.mk │ ├── ncftp/ │ │ ├── 0001-fix-gcc-10.patch │ │ ├── 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/ │ │ ├── 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/ │ │ ├── 0001-lib-neardal.h-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── neardal.hash │ │ └── neardal.mk │ ├── neofetch/ │ │ ├── Config.in │ │ ├── neofetch.hash │ │ └── neofetch.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 │ │ ├── 0002-fix-ftbs-multiple-def-of-invalid_dircache_entries.patch │ │ ├── Config.in │ │ ├── S50netatalk │ │ ├── netatalk.hash │ │ └── netatalk.mk │ ├── netcalc/ │ │ ├── Config.in │ │ ├── netcalc.hash │ │ └── netcalc.mk │ ├── netcat/ │ │ ├── 0001-signed-bit-counting.patch │ │ ├── Config.in │ │ ├── netcat.hash │ │ └── netcat.mk │ ├── netcat-openbsd/ │ │ ├── Config.in │ │ ├── netcat-openbsd.hash │ │ └── netcat-openbsd.mk │ ├── netdata/ │ │ ├── Config.in │ │ ├── S60netdata │ │ ├── netdata.hash │ │ └── netdata.mk │ ├── netifrc/ │ │ ├── Config.in │ │ ├── netifrc.hash │ │ └── netifrc.mk │ ├── netopeer2/ │ │ ├── Config.in │ │ ├── S52netopeer2 │ │ ├── netopeer2.hash │ │ └── netopeer2.mk │ ├── netperf/ │ │ ├── 0001-src-nettest_omni.c-fix-compilation-with-GCC10.patch │ │ ├── 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/ │ │ ├── 0001-Detect-libpcap-dependencies-using-pkg-config.patch │ │ ├── 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/ │ │ ├── 0001-avoid-system-perl-dependencies.patch │ │ ├── 0002-do-not-cross-compile-nsgenbind.patch │ │ ├── 0003-fix-compilation-without-curl.patch │ │ ├── 0004-framebuffer-Fix-internal-font-generated-source-for-GCC-10.patch │ │ ├── Config.in │ │ ├── netsurf.hash │ │ └── netsurf.mk │ ├── netsurf-buildsystem/ │ │ ├── netsurf-buildsystem.hash │ │ └── netsurf-buildsystem.mk │ ├── nettle/ │ │ ├── 0001-disable-testsuite-examples.patch │ │ ├── Config.in │ │ ├── nettle.hash │ │ └── nettle.mk │ ├── network-manager/ │ │ ├── Config.in │ │ ├── S45network-manager │ │ ├── network-manager.hash │ │ └── network-manager.mk │ ├── network-manager-openvpn/ │ │ ├── Config.in │ │ ├── network-manager-openvpn.hash │ │ └── network-manager-openvpn.mk │ ├── newt/ │ │ ├── Config.in │ │ ├── newt.hash │ │ └── newt.mk │ ├── nfacct/ │ │ ├── Config.in │ │ ├── nfacct.hash │ │ └── nfacct.mk │ ├── nfs-utils/ │ │ ├── 0001-nfsdcltrack-sqlite-Fix-printf-format.patch │ │ ├── 0002-nfsdcltrack-nfsdcltrack.c-Fix-printf-format.patch │ │ ├── 0003-nfsdcltrack-Use-uint64_t-instead-of-time_t.patch │ │ ├── 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/ │ │ ├── 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 │ │ ├── 0009-auto-os-linux-fix-build-with-libxcrypt.patch │ │ ├── 0010-Allow-forcing-of-endianness-for-cross-compilation.patch │ │ ├── Config.in │ │ ├── S50nginx │ │ ├── nginx.hash │ │ ├── nginx.logrotate │ │ ├── nginx.mk │ │ └── nginx.service │ ├── nginx-dav-ext/ │ │ ├── Config.in │ │ ├── nginx-dav-ext.hash │ │ └── nginx-dav-ext.mk │ ├── nginx-modsecurity/ │ │ ├── 0001-config-use-pkg-config.patch │ │ ├── Config.in │ │ ├── nginx-modsecurity.hash │ │ └── nginx-modsecurity.mk │ ├── nginx-naxsi/ │ │ ├── 0001-naxsi_src-naxsi_runtime.c-fix-build-without-x_forwar.patch │ │ ├── Config.in │ │ ├── nginx-naxsi.hash │ │ └── nginx-naxsi.mk │ ├── nginx-upload/ │ │ ├── Config.in │ │ ├── nginx-upload.hash │ │ └── nginx-upload.mk │ ├── 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/ │ │ ├── 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-add-qemu-wrapper-support.patch │ │ ├── 0001-check-if-uclibc-has-backtrace-support.patch │ │ ├── 0003-include-obj-name-in-shared-intermediate.patch │ │ ├── Config.in │ │ ├── nodejs.hash │ │ ├── nodejs.mk │ │ └── v8-qemu-wrapper.in │ ├── 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/ │ │ ├── Config.in │ │ ├── ntfs-3g.hash │ │ └── ntfs-3g.mk │ ├── ntp/ │ │ ├── 0001-nano.patch │ │ ├── 0002-ntp-syscalls-fallback.patch │ │ ├── 0003-override-shell.patch │ │ ├── 0004-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch │ │ ├── Config.in │ │ ├── S48sntp │ │ ├── S49ntp │ │ ├── ntp.hash │ │ ├── ntp.mk │ │ ├── ntpd.etc.conf │ │ └── ntpd.service │ ├── numactl/ │ │ ├── 0001-Do-not-stringify-SYMVER-symbols.patch │ │ ├── 0002-link-with-latomic-if-needed.patch │ │ ├── Config.in │ │ ├── numactl.hash │ │ └── numactl.mk │ ├── nut/ │ │ ├── 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-modprobe/ │ │ ├── Config.in │ │ ├── nvidia-modprobe.hash │ │ └── nvidia-modprobe.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 │ ├── odb/ │ │ ├── 0001-tm.h-include-in-gcc.hxx-appears-to-be-no-longer-nece.patch │ │ ├── 0002-Remove-gratuitous-classes.patch │ │ ├── 0003-Initial-work-to-make-ODB-compatible-with-GCC-6.patch │ │ ├── 0004-Make-compilable-with-GCC-6-in-C-14-mode.patch │ │ ├── 0005-Fix-bug-in-GCC-6-input_location-translation.patch │ │ ├── 0006-Adapt-to-changes-in-GCC-8.patch │ │ ├── 0007-Switch-to-C-11-get-rid-of-auto_ptr-use.patch │ │ ├── 0008-Fix-GCC-8-adaptation-to-be-compatible-with-previous-.patch │ │ ├── 0009-Handle-namespace-aliases-when-parsing-GCC-tree.patch │ │ ├── 0010-Add-initial-support-for-GCC-9.patch │ │ ├── 0011-Adjust-to-changes-in-GCC-10.patch │ │ ├── Config.in.host │ │ ├── odb.hash │ │ └── odb.mk │ ├── odhcp6c/ │ │ ├── Config.in │ │ ├── odhcp6c.hash │ │ └── odhcp6c.mk │ ├── odhcploc/ │ │ ├── Config.in │ │ ├── odhcploc.hash │ │ └── odhcploc.mk │ ├── odroidc2-firmware/ │ │ ├── Config.in │ │ ├── odroidc2-firmware.hash │ │ └── odroidc2-firmware.mk │ ├── ofono/ │ │ ├── 0001-uclibc-backtrace.patch │ │ ├── 0002-fix-musl-compile.patch │ │ ├── Config.in │ │ ├── S46ofono │ │ ├── ofono.hash │ │ └── ofono.mk │ ├── ogre/ │ │ ├── 0001-CMake-Utils-PrecompiledHeader.cmake-Add-c-argument-t.patch │ │ ├── 0002-Checks-for-strtol_l-function.patch │ │ ├── Config.in │ │ ├── ogre.hash │ │ └── ogre.mk │ ├── olsr/ │ │ ├── 0001-olsrd-migrate-to-using-bison-3.7.1.patch │ │ ├── 0002-lib-pud-Makefile-fix-parallel-build.patch │ │ ├── 0003-pud-adapt-to-API-changes-in-gpsd-3-20.patch │ │ ├── 0004-pud-adapt-gpsdclient.c-to-new-gpsd-3.21.patch │ │ ├── 0005-lib-pud-src-gpsdclient.c-drop-handling-of-gpsdata-fi.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── open-lldp.hash │ │ └── open-lldp.mk │ ├── open-plc-utils/ │ │ ├── 0001-Remove-OWNER-and-GROUPS-parameters-to-install.patch │ │ ├── 0002-plc-plc.h-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── open-plc-utils.hash │ │ └── open-plc-utils.mk │ ├── open2300/ │ │ ├── 0001-fix-makefile.patch │ │ ├── Config.in │ │ ├── open2300.hash │ │ └── open2300.mk │ ├── open62541/ │ │ ├── 0001-CMakeLists.txt-project-only-contains-C-code.patch │ │ ├── 0002-arch-posix-CMakeLists.txt-fix-build-without-threads.patch │ │ ├── 0003-fix-core-Explicit-cast-to-avoid-compiler-warning.patch │ │ ├── 0004-CMakeLists.txt-add-UA_FORCE_WERROR.patch │ │ ├── Config.in │ │ ├── open62541.hash │ │ └── open62541.mk │ ├── openal/ │ │ ├── Config.in │ │ ├── openal.hash │ │ └── openal.mk │ ├── openblas/ │ │ ├── 0001-fix-gfortran-detection.patch │ │ ├── 0002-Makefile-fix-support-for-passing-FFLAGS-on-the-make-.patch │ │ ├── 0003-Makefile-also-consider-Os-when-determining-LAPACK_NO.patch │ │ ├── 0004-Makefile.system-don-t-specify-optimization-level-bui.patch │ │ ├── Config.in │ │ ├── openblas.hash │ │ └── openblas.mk │ ├── openbox/ │ │ ├── Config.in │ │ ├── openbox.hash │ │ └── openbox.mk │ ├── opencore-amr/ │ │ ├── Config.in │ │ ├── opencore-amr.hash │ │ └── opencore-amr.mk │ ├── opencv3/ │ │ ├── 0001-Use-the-one-argument-version-of-SetTotalBytesLimit.patch │ │ ├── Config.in │ │ ├── opencv3.hash │ │ └── opencv3.mk │ ├── opencv4/ │ │ ├── 0001-modules-videoio-src-cap_ffmpeg_impl.hpp-fix-build-wi.patch │ │ ├── Config.in │ │ ├── opencv4.hash │ │ └── opencv4.mk │ ├── openfpgaloader/ │ │ ├── Config.in │ │ ├── openfpgaloader.hash │ │ └── openfpgaloader.mk │ ├── opengl/ │ │ ├── Config.in │ │ ├── libegl/ │ │ │ ├── Config.in │ │ │ └── libegl.mk │ │ ├── libgbm/ │ │ │ ├── Config.in │ │ │ └── libgbm.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 │ │ ├── Config.in │ │ ├── openipmi.hash │ │ └── openipmi.mk │ ├── openjdk/ │ │ ├── Config.in │ │ ├── openjdk.hash │ │ └── openjdk.mk │ ├── openjdk-bin/ │ │ ├── openjdk-bin.hash │ │ └── openjdk-bin.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-Revert-Use-INC_DIR-for-OPENJPEG_INCLUDE_DIRS-fixes-u.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/ │ │ ├── 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-configure.ac-fix-autoreconf-with-autoconf-2.70.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── openocd.hash │ │ └── openocd.mk │ ├── openpgm/ │ │ ├── 0001-Rename-openpgm-5.2.pc.in.patch │ │ ├── 0002-openpgm-pgm-checksum.c-fix-build-with-32-bits-MMX.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 │ │ ├── 0003-init.d-agetty-replace-sbin-agetty-by-sbin-getty.patch │ │ ├── 0004-init.d-agetty-start-agetty-after-all-sevices.patch │ │ ├── 0005-runlevels-do-not-add-agetty.tty-1-6-if-MKSYSVINIT-ye.patch │ │ ├── Config.in │ │ ├── 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/ │ │ ├── 0001-Move-definitions-that-don-t-need-to-be-exposed-from-opl-h-to-opl-c.patch │ │ ├── Config.in │ │ ├── opentyrian.hash │ │ └── opentyrian.mk │ ├── opentyrian-data/ │ │ ├── Config.in │ │ ├── opentyrian-data.hash │ │ └── opentyrian-data.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 │ │ ├── 0012-Make-HgfsConvertFromNtTimeNsec-aware-of-64-bit-time_.patch │ │ ├── Config.in │ │ ├── S10vmtoolsd │ │ ├── openvmtools.hash │ │ ├── openvmtools.mk │ │ ├── shutdown │ │ └── vmtoolsd.service │ ├── openvpn/ │ │ ├── Config.in │ │ ├── S60openvpn │ │ ├── openvpn.hash │ │ └── openvpn.mk │ ├── openzwave/ │ │ ├── Config.in │ │ ├── openzwave.hash │ │ └── openzwave.mk │ ├── opkg/ │ │ ├── Config.in │ │ ├── opkg.hash │ │ └── opkg.mk │ ├── opkg-utils/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── opkg-utils.hash │ │ └── opkg-utils.mk │ ├── oprofile/ │ │ ├── 0001-musl.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/ │ │ ├── Config.in │ │ ├── optee-test.hash │ │ └── optee-test.mk │ ├── opus/ │ │ ├── Config.in │ │ ├── opus.hash │ │ └── opus.mk │ ├── opus-tools/ │ │ ├── Config.in │ │ ├── opus-tools.hash │ │ └── opus-tools.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 │ │ ├── 0009-gcc7.patch │ │ ├── 0010-fix-build-without-zlib.patch │ │ ├── 0011-config-ac-macros-alloca.m4-Remove-obsolete-Cray-supp.patch │ │ ├── S97mysqld │ │ ├── mysqld.service │ │ ├── oracle-mysql.hash │ │ └── oracle-mysql.mk │ ├── orbit/ │ │ ├── Config.in │ │ ├── orbit.hash │ │ └── orbit.mk │ ├── orc/ │ │ ├── 0001-orc-orccpu-powerpc.c-fix-build-with-kernel-4.11.patch │ │ ├── Config.in │ │ ├── orc.hash │ │ └── orc.mk │ ├── ortp/ │ │ ├── Config.in │ │ ├── ortp.hash │ │ └── ortp.mk │ ├── osm2pgsql/ │ │ ├── Config.in │ │ ├── osm2pgsql.hash │ │ └── osm2pgsql.mk │ ├── owfs/ │ │ ├── 0001-Fix-compilation-with-GCC10.patch │ │ ├── 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/ │ │ ├── 0001-p11-kit-lists-c-Add-stdint-h-to-fix-compilation.patch │ │ ├── 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 │ ├── parprouted/ │ │ ├── Config.in │ │ ├── parprouted.hash │ │ └── parprouted.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 │ │ ├── 0005-Avoid-inflating-file-sizes-needlessly-and-allow-bina.patch │ │ ├── 0006-Fix-shared-library-corruption-when-rerunning-patchel.patch │ │ ├── 0007-fix-adjusting-startPage.patch │ │ ├── 0008-Use-sh_offset-instead-of-sh_addr-when-checking-alrea.patch │ │ ├── 0009-Fix-issue-66-by-ignoring-the-first-section-header-wh.patch │ │ ├── 0010-Fix-endianness-issues-for-powerpc-PIE.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/ │ │ ├── 0001-po-de-po-fix-build-with-gettext-tiny.patch │ │ ├── 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/ │ │ ├── 0001-template-Fix-alignment.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── perl.hash │ │ └── perl.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/ │ │ ├── Config.in │ │ ├── perl-class-std.hash │ │ └── perl-class-std.mk │ ├── perl-class-std-fast/ │ │ ├── Config.in │ │ ├── perl-class-std-fast.hash │ │ └── perl-class-std-fast.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-cycle/ │ │ ├── Config.in │ │ ├── perl-devel-cycle.hash │ │ └── perl-devel-cycle.mk │ ├── perl-devel-globaldestruction/ │ │ ├── Config.in │ │ ├── perl-devel-globaldestruction.hash │ │ └── perl-devel-globaldestruction.mk │ ├── perl-devel-size/ │ │ ├── Config.in │ │ ├── perl-devel-size.hash │ │ └── perl-devel-size.mk │ ├── perl-devel-stacktrace/ │ │ ├── Config.in │ │ ├── perl-devel-stacktrace.hash │ │ └── perl-devel-stacktrace.mk │ ├── perl-devel-stacktrace-ashtml/ │ │ ├── Config.in │ │ ├── perl-devel-stacktrace-ashtml.hash │ │ └── perl-devel-stacktrace-ashtml.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-extutils-pkgconfig/ │ │ ├── perl-extutils-pkgconfig.hash │ │ └── perl-extutils-pkgconfig.mk │ ├── perl-file-listing/ │ │ ├── Config.in │ │ ├── perl-file-listing.hash │ │ └── perl-file-listing.mk │ ├── perl-file-sharedir/ │ │ ├── Config.in │ │ ├── perl-file-sharedir.hash │ │ └── perl-file-sharedir.mk │ ├── perl-file-sharedir-install/ │ │ ├── perl-file-sharedir-install.hash │ │ └── perl-file-sharedir-install.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/ │ │ ├── 0001-Makefile.PL-fix-cross-compilation-with-gdlib.pc.patch │ │ ├── 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-i18n/ │ │ ├── Config.in │ │ ├── perl-i18n.hash │ │ └── perl-i18n.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-locale-maketext-lexicon/ │ │ ├── Config.in │ │ ├── perl-locale-maketext-lexicon.hash │ │ └── perl-locale-maketext-lexicon.mk │ ├── perl-lwp-mediatypes/ │ │ ├── Config.in │ │ ├── perl-lwp-mediatypes.hash │ │ └── perl-lwp-mediatypes.mk │ ├── perl-lwp-protocol-https/ │ │ ├── Config.in │ │ ├── perl-lwp-protocol-https.hash │ │ └── perl-lwp-protocol-https.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-int64/ │ │ ├── Config.in │ │ ├── perl-math-int64.hash │ │ └── perl-math-int64.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/ │ │ ├── perl-module-build.hash │ │ └── perl-module-build.mk │ ├── perl-module-build-tiny/ │ │ ├── perl-module-build-tiny.hash │ │ └── perl-module-build-tiny.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/ │ │ ├── Config.in │ │ ├── perl-mojolicious.hash │ │ └── perl-mojolicious.mk │ ├── perl-mojolicious-plugin-authentication/ │ │ ├── Config.in │ │ ├── perl-mojolicious-plugin-authentication.hash │ │ └── perl-mojolicious-plugin-authentication.mk │ ├── perl-mojolicious-plugin-authorization/ │ │ ├── Config.in │ │ ├── perl-mojolicious-plugin-authorization.hash │ │ └── perl-mojolicious-plugin-authorization.mk │ ├── perl-mojolicious-plugin-cspheader/ │ │ ├── Config.in │ │ ├── perl-mojolicious-plugin-cspheader.hash │ │ └── perl-mojolicious-plugin-cspheader.mk │ ├── perl-mojolicious-plugin-i18n/ │ │ ├── Config.in │ │ ├── perl-mojolicious-plugin-i18n.hash │ │ └── perl-mojolicious-plugin-i18n.mk │ ├── perl-mojolicious-plugin-securityheader/ │ │ ├── Config.in │ │ ├── perl-mojolicious-plugin-securityheader.hash │ │ └── perl-mojolicious-plugin-securityheader.mk │ ├── perl-moo/ │ │ ├── Config.in │ │ ├── perl-moo.hash │ │ └── perl-moo.mk │ ├── perl-mozilla-ca/ │ │ ├── Config.in │ │ ├── perl-mozilla-ca.hash │ │ └── perl-mozilla-ca.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-parse-yapp/ │ │ ├── Config.in │ │ ├── perl-parse-yapp.hash │ │ └── perl-parse-yapp.mk │ ├── perl-path-class/ │ │ ├── perl-path-class.hash │ │ └── perl-path-class.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/ │ │ ├── Config.in │ │ ├── perl-xml-sax.hash │ │ └── perl-xml-sax.mk │ ├── perl-xml-sax-base/ │ │ ├── Config.in │ │ ├── perl-xml-sax-base.hash │ │ └── perl-xml-sax-base.mk │ ├── phidgetwebservice/ │ │ ├── Config.in │ │ ├── phidgetwebservice.hash │ │ └── phidgetwebservice.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-allow-opcache-cross-compiling.patch │ │ ├── Config.ext │ │ ├── Config.in │ │ ├── php-fpm.conf │ │ ├── php.hash │ │ └── php.mk │ ├── php-amqp/ │ │ ├── 0001-add-build-support-for-php-8.patch │ │ ├── 0002-more-work-for-php-8.patch │ │ ├── Config.in │ │ ├── php-amqp.hash │ │ └── php-amqp.mk │ ├── php-geoip/ │ │ ├── 0001-add-build-support-for-php8.patch │ │ ├── Config.in │ │ ├── php-geoip.hash │ │ └── php-geoip.mk │ ├── php-gnupg/ │ │ ├── 0001-Remove-inlining-_phpc_res_close.patch │ │ ├── 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-pecl-dbus/ │ │ ├── 0001-php8-compat.patch │ │ ├── 0002-Fix-compatibility-with-php8-call_user_function_ex.patch │ │ ├── Config.in │ │ ├── php-pecl-dbus.hash │ │ └── php-pecl-dbus.mk │ ├── php-ssh2/ │ │ ├── Config.in │ │ ├── php-ssh2.hash │ │ └── php-ssh2.mk │ ├── php-xdebug/ │ │ ├── Config.in │ │ ├── php-xdebug.hash │ │ └── php-xdebug.mk │ ├── php-yaml/ │ │ ├── Config.in │ │ ├── php-yaml.hash │ │ └── php-yaml.mk │ ├── php-zmq/ │ │ ├── 0001-updates-for-php7.4-and-php8.0.patch │ │ ├── 0002-fix-for-php-7.3.patch │ │ ├── 0003-fix-for-php-8.0.0beta2.patch │ │ ├── Config.in │ │ ├── php-zmq.hash │ │ └── php-zmq.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/ │ │ ├── Config.in │ │ ├── piglit.hash │ │ └── piglit.mk │ ├── pigpio/ │ │ ├── Config.in │ │ ├── S50pigpio │ │ ├── pigpio.hash │ │ ├── pigpio.mk │ │ └── pigpio.service │ ├── pigz/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── pigz.hash │ │ └── pigz.mk │ ├── pimd/ │ │ ├── Config.in │ │ ├── pimd.hash │ │ └── pimd.mk │ ├── pinentry/ │ │ ├── Config.in │ │ ├── pinentry.hash │ │ └── pinentry.mk │ ├── pipewire/ │ │ ├── 0001-cpu-fix-compilation-on-some-architectures.patch │ │ ├── 0002-cpu-disable-VFP-asm-when-not-available.patch │ │ ├── Config.in │ │ ├── pipewire.hash │ │ └── pipewire.mk │ ├── pipewire-media-session/ │ │ ├── 0001-meson-remove-session-managers-option-check.patch │ │ ├── Config.in │ │ ├── pipewire-media-session.hash │ │ └── pipewire-media-session.mk │ ├── pistache/ │ │ ├── 0001-CMakeLists.txt-add-C-language-to-project-statement.patch │ │ ├── 0002-CMakeLists.txt-respect-BUILD_SHARED_LIBS.patch │ │ ├── 0003-include-pistache-typeid.h-include-cstddef.patch │ │ ├── Config.in │ │ ├── pistache.hash │ │ └── pistache.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 │ ├── pkcs11-helper/ │ │ ├── 0001-nss-use-nss-pkcs11-h.patch │ │ ├── Config.in │ │ ├── pkcs11-helper.hash │ │ └── pkcs11-helper.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-qmake.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 │ ├── ply/ │ │ ├── 0001-configure.ac-fix-error-with-version-string.patch │ │ ├── 0002-printxf.h-add-stdarg.h-in-include.patch │ │ ├── Config.in │ │ ├── ply.hash │ │ └── ply.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 │ ├── poke/ │ │ ├── 0001-build-do-not-check-for-Tcl-Tk-if-disable-gui-is-spec.patch │ │ ├── 0002-tentatively-change-cppflags-to-omit-I-prefix-on-cros.patch │ │ ├── 0003-configure.ac-HELP2MAN-replace-by-true-when-cross-com.patch │ │ ├── 0004-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch │ │ ├── Config.in │ │ ├── poke.hash │ │ └── poke.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 │ │ ├── 0002-Improve-meson_post_install-script.patch │ │ ├── 0003-build-Remove-redundant-computation-of-dbus-data-directory.patch │ │ ├── 0004-build-Don-t-require-dbus-development-files.patch │ │ ├── Config.in │ │ ├── S50polkit │ │ ├── polkit.hash │ │ ├── polkit.mk │ │ └── polkit.service │ ├── popperjs/ │ │ ├── Config.in │ │ ├── popperjs.hash │ │ └── popperjs.mk │ ├── poppler/ │ │ ├── 0001-glib-poppler-private.h-fix-build-with-gcc-11.patch │ │ ├── Config.in │ │ ├── poppler.hash │ │ └── poppler.mk │ ├── popt/ │ │ ├── 0001-add-libiconv-to-popt.pc.patch │ │ ├── 0002-Detect-glob_pattern_p.patch │ │ ├── 0003-configure-replace-deprecated-macros.patch │ │ ├── 0004-fix-build-without-wchar.patch │ │ ├── 0005-fix-build-without-mbstate_t.patch │ │ ├── Config.in │ │ ├── popt.hash │ │ └── popt.mk │ ├── portaudio/ │ │ ├── Config.in │ │ ├── portaudio.hash │ │ └── portaudio.mk │ ├── postgis/ │ │ ├── 0001-Add-HAVE_VASPRINTF-HAVE_ASPRINTF-templates.patch │ │ ├── 0002-Add-POSTGIS_DEBUG_LEVEL-define-to-configure.ac.patch │ │ ├── 0003-Disable-forced-static-linking-of-liblwgeom.patch │ │ ├── 0004-Use-pkg-config-to-get-PROJ-version-if-available.patch │ │ ├── 0005-configure.ac-fix-cross-compilation-with-protobuf-c.patch │ │ ├── Config.in │ │ ├── postgis.hash │ │ └── postgis.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 │ ├── prelink-cross/ │ │ ├── 0001-src-rtld-dl-tls.c-Fix-TLS-offsets-computation-for-s3.patch │ │ ├── prelink-cross.hash │ │ └── prelink-cross.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/ │ │ ├── 0001-mod_quotatab-fix-build-failure-against-gcc-10.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── protobuf.hash │ │ └── protobuf.mk │ ├── protobuf-c/ │ │ ├── Config.in │ │ ├── protobuf-c.hash │ │ └── protobuf-c.mk │ ├── protozero/ │ │ ├── 0001-CMakeLists.txt-respect-BUILD_TESTING.patch │ │ ├── Config.in │ │ ├── protozero.hash │ │ └── protozero.mk │ ├── proxychains-ng/ │ │ ├── 0001-configure-fix-check_link_silent-test.patch │ │ ├── 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 │ ├── psmisc/ │ │ ├── Config.in │ │ ├── psmisc.hash │ │ └── psmisc.mk │ ├── psplash/ │ │ ├── Config.in │ │ ├── psplash-start.service │ │ ├── psplash-systemd.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-Replace-obsolete-deprecated-Qt-methods.patch │ │ ├── 0002-Fix-broken-build-due-to-C-template-behind-C-linkage.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 │ │ ├── 0004-Initialize-the-max-upload-file-size-when-quotas-are-enabled.patch │ │ ├── Config.in │ │ ├── pure-ftpd.hash │ │ └── pure-ftpd.mk │ ├── putty/ │ │ ├── 0001-unix-uxutils.h-fix-build-on-uclibc.patch │ │ ├── Config.in │ │ ├── putty.hash │ │ └── putty.mk │ ├── pv/ │ │ ├── Config.in │ │ ├── pv.hash │ │ └── pv.mk │ ├── pwgen/ │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── pwgen.hash │ │ └── pwgen.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 │ ├── 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-aiofiles/ │ │ ├── Config.in │ │ ├── python-aiofiles.hash │ │ └── python-aiofiles.mk │ ├── python-aiohttp/ │ │ ├── Config.in │ │ ├── python-aiohttp.hash │ │ └── python-aiohttp.mk │ ├── python-aiohttp-apispec/ │ │ ├── Config.in │ │ ├── python-aiohttp-apispec.hash │ │ └── python-aiohttp-apispec.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-swagger/ │ │ ├── Config.in │ │ └── python-aiohttp-swagger.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-aioprocessing/ │ │ ├── Config.in │ │ ├── python-aioprocessing.hash │ │ └── python-aioprocessing.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-ansicolors/ │ │ ├── Config.in │ │ ├── python-ansicolors.hash │ │ └── python-ansicolors.mk │ ├── python-apispec/ │ │ ├── Config.in │ │ ├── python-apispec.hash │ │ └── python-apispec.mk │ ├── python-argh/ │ │ ├── Config.in │ │ ├── python-argh.hash │ │ └── python-argh.mk │ ├── python-argon2-cffi/ │ │ ├── Config.in │ │ ├── python-argon2-cffi.hash │ │ └── python-argon2-cffi.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-asyncpg/ │ │ ├── Config.in │ │ ├── python-asyncpg.hash │ │ └── python-asyncpg.mk │ ├── python-attrs/ │ │ ├── Config.in │ │ ├── python-attrs.hash │ │ └── python-attrs.mk │ ├── python-augeas/ │ │ ├── 0001-Use-CFFI-in-out-of-line-API-mode-49.patch │ │ ├── Config.in │ │ ├── python-augeas.hash │ │ └── python-augeas.mk │ ├── python-autobahn/ │ │ ├── 0001-Fix-duplicate-xbr-packages-and-xbr-templates-package.patch │ │ ├── 0002-Build-with-nvx-by-default-and-don-t-publish-universa.patch │ │ ├── Config.in │ │ ├── python-autobahn.hash │ │ └── python-autobahn.mk │ ├── python-automat/ │ │ ├── Config.in │ │ ├── python-automat.hash │ │ └── python-automat.mk │ ├── python-avro/ │ │ ├── 0002-drop-install-time-linting-and-imports-sorting.patch │ │ ├── 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-base58/ │ │ ├── Config.in │ │ ├── python-base58.hash │ │ └── python-base58.mk │ ├── python-bcrypt/ │ │ ├── Config.in │ │ ├── python-bcrypt.hash │ │ └── python-bcrypt.mk │ ├── python-beautifulsoup4/ │ │ ├── Config.in │ │ ├── python-beautifulsoup4.hash │ │ └── python-beautifulsoup4.mk │ ├── python-bidict/ │ │ ├── Config.in │ │ ├── python-bidict.hash │ │ └── python-bidict.mk │ ├── python-bitstring/ │ │ ├── Config.in │ │ ├── python-bitstring.hash │ │ └── python-bitstring.mk │ ├── python-bleak/ │ │ ├── Config.in │ │ ├── python-bleak.hash │ │ └── python-bleak.mk │ ├── python-bluepy/ │ │ ├── Config.in │ │ ├── python-bluepy.hash │ │ └── python-bluepy.mk │ ├── python-bluezero/ │ │ ├── Config.in │ │ ├── python-bluezero.hash │ │ └── python-bluezero.mk │ ├── python-boto3/ │ │ ├── Config.in │ │ ├── python-boto3.hash │ │ └── python-boto3.mk │ ├── python-botocore/ │ │ ├── Config.in │ │ ├── python-botocore.hash │ │ └── python-botocore.mk │ ├── python-bottle/ │ │ ├── Config.in │ │ ├── python-bottle.hash │ │ └── python-bottle.mk │ ├── python-brotli/ │ │ ├── Config.in │ │ ├── python-brotli.hash │ │ └── python-brotli.mk │ ├── python-bsdiff4/ │ │ ├── Config.in │ │ ├── python-bsdiff4.hash │ │ └── python-bsdiff4.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-canopen/ │ │ ├── Config.in │ │ ├── python-canopen.hash │ │ └── python-canopen.mk │ ├── python-cbor/ │ │ ├── Config.in │ │ ├── python-cbor.hash │ │ └── python-cbor.mk │ ├── python-cbor2/ │ │ ├── Config.in │ │ ├── python-cbor2.hash │ │ └── python-cbor2.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/ │ │ ├── Config.in │ │ ├── python-channels.hash │ │ └── python-channels.mk │ ├── python-channels-redis/ │ │ ├── Config.in │ │ ├── python-channels-redis.hash │ │ └── python-channels-redis.mk │ ├── python-characteristic/ │ │ ├── Config.in │ │ ├── python-characteristic.hash │ │ └── python-characteristic.mk │ ├── python-chardet/ │ │ ├── Config.in │ │ ├── python-chardet.hash │ │ └── python-chardet.mk │ ├── python-charset-normalizer/ │ │ ├── Config.in │ │ ├── python-charset-normalizer.hash │ │ └── python-charset-normalizer.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-colibris/ │ │ ├── Config.in │ │ ├── python-colibris.hash │ │ └── python-colibris.mk │ ├── python-colorama/ │ │ ├── Config.in │ │ ├── python-colorama.hash │ │ └── python-colorama.mk │ ├── python-colorlog/ │ │ ├── Config.in │ │ ├── python-colorlog.hash │ │ └── python-colorlog.mk │ ├── python-colorzero/ │ │ ├── Config.in │ │ ├── python-colorzero.hash │ │ └── python-colorzero.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-crayons/ │ │ ├── Config.in │ │ ├── python-crayons.hash │ │ └── python-crayons.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-dbus-fast/ │ │ ├── Config.in │ │ ├── python-dbus-fast.hash │ │ └── python-dbus-fast.mk │ ├── python-dbus-next/ │ │ ├── Config.in │ │ ├── python-dbus-next.hash │ │ └── python-dbus-next.mk │ ├── python-decorator/ │ │ ├── Config.in │ │ ├── python-decorator.hash │ │ └── python-decorator.mk │ ├── python-defusedxml/ │ │ ├── Config.in │ │ ├── python-defusedxml.hash │ │ └── python-defusedxml.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/ │ │ ├── Config.in │ │ ├── python-django.hash │ │ └── python-django.mk │ ├── python-django-enumfields/ │ │ ├── Config.in │ │ ├── python-django-enumfields.hash │ │ └── python-django-enumfields.mk │ ├── python-dnspython/ │ │ ├── Config.in │ │ ├── python-dnspython.hash │ │ └── python-dnspython.mk │ ├── python-docker/ │ │ ├── Config.in │ │ ├── python-docker.hash │ │ └── python-docker.mk │ ├── python-docker-pycreds/ │ │ ├── Config.in │ │ ├── python-docker-pycreds.hash │ │ └── python-docker-pycreds.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-dotenv/ │ │ ├── Config.in │ │ ├── python-dotenv.hash │ │ └── python-dotenv.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-filelock/ │ │ ├── Config.in │ │ ├── python-filelock.hash │ │ └── python-filelock.mk │ ├── python-fire/ │ │ ├── Config.in │ │ ├── python-fire.hash │ │ └── python-fire.mk │ ├── python-flask/ │ │ ├── Config.in │ │ ├── python-flask.hash │ │ └── python-flask.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-expects-json/ │ │ ├── Config.in │ │ ├── python-flask-expects-json.hash │ │ └── python-flask-expects-json.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-wtf/ │ │ ├── Config.in │ │ ├── python-flask-wtf.hash │ │ └── python-flask-wtf.mk │ ├── python-flatbuffers/ │ │ ├── Config.in │ │ ├── python-flatbuffers.hash │ │ └── python-flatbuffers.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-git/ │ │ ├── Config.in │ │ ├── python-git.hash │ │ └── python-git.mk │ ├── python-gitdb2/ │ │ ├── Config.in │ │ ├── python-gitdb2.hash │ │ └── python-gitdb2.mk │ ├── python-gobject/ │ │ ├── Config.in │ │ ├── python-gobject.hash │ │ └── python-gobject.mk │ ├── python-gpiozero/ │ │ ├── Config.in │ │ ├── python-gpiozero.hash │ │ └── python-gpiozero.mk │ ├── python-greenlet/ │ │ ├── Config.in │ │ ├── python-greenlet.hash │ │ └── python-greenlet.mk │ ├── python-gunicorn/ │ │ ├── Config.in │ │ ├── python-gunicorn.hash │ │ └── python-gunicorn.mk │ ├── python-h2/ │ │ ├── Config.in │ │ ├── python-h2.hash │ │ └── python-h2.mk │ ├── python-hiredis/ │ │ ├── 0001-setup.py-fix-build-with-gcc-4.8.patch │ │ ├── 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-idna-ssl/ │ │ ├── Config.in │ │ ├── python-idna-ssl.hash │ │ └── python-idna-ssl.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-iniconfig/ │ │ ├── Config.in │ │ ├── python-iniconfig.hash │ │ └── python-iniconfig.mk │ ├── python-iniparse/ │ │ ├── Config.in │ │ ├── python-iniparse.hash │ │ └── python-iniparse.mk │ ├── python-intelhex/ │ │ ├── Config.in │ │ ├── python-intelhex.hash │ │ └── python-intelhex.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-ipdb/ │ │ ├── Config.in │ │ ├── python-ipdb.hash │ │ └── python-ipdb.mk │ ├── python-iptables/ │ │ ├── Config.in │ │ ├── python-iptables.hash │ │ └── python-iptables.mk │ ├── python-ipy/ │ │ ├── Config.in │ │ ├── python-ipy.hash │ │ └── python-ipy.mk │ ├── python-ipython/ │ │ ├── 0001-set-correct-python-executable-path.patch │ │ ├── Config.in │ │ ├── python-ipython.hash │ │ └── python-ipython.mk │ ├── python-ipython-genutils/ │ │ ├── Config.in │ │ ├── python-ipython-genutils.hash │ │ └── python-ipython-genutils.mk │ ├── python-iso8601/ │ │ ├── Config.in │ │ ├── python-iso8601.hash │ │ └── python-iso8601.mk │ ├── python-itsdangerous/ │ │ ├── Config.in │ │ ├── python-itsdangerous.hash │ │ └── python-itsdangerous.mk │ ├── python-iwlib/ │ │ ├── Config.in │ │ ├── python-iwlib.hash │ │ └── python-iwlib.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-jmespath/ │ │ ├── Config.in │ │ ├── python-jmespath.hash │ │ └── python-jmespath.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-jsonpointer/ │ │ ├── Config.in │ │ ├── python-jsonpointer.hash │ │ └── python-jsonpointer.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-m2crypto/ │ │ ├── Config.in │ │ ├── python-m2crypto.hash │ │ └── python-m2crypto.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-marshmallow/ │ │ ├── Config.in │ │ ├── python-marshmallow.hash │ │ └── python-marshmallow.mk │ ├── python-marshmallow-peewee/ │ │ ├── Config.in │ │ ├── python-marshmallow-peewee.hash │ │ └── python-marshmallow-peewee.mk │ ├── python-matplotlib/ │ │ ├── Config.in │ │ ├── python-matplotlib.hash │ │ ├── python-matplotlib.mk │ │ └── setup.cfg │ ├── python-mbstrdecoder/ │ │ ├── Config.in │ │ ├── python-mbstrdecoder.hash │ │ └── python-mbstrdecoder.mk │ ├── python-mimeparse/ │ │ ├── Config.in │ │ ├── python-mimeparse.hash │ │ └── python-mimeparse.mk │ ├── python-mistune/ │ │ ├── Config.in │ │ ├── python-mistune.hash │ │ └── python-mistune.mk │ ├── python-mock/ │ │ ├── Config.in │ │ ├── python-mock.hash │ │ └── python-mock.mk │ ├── python-modbus-tk/ │ │ ├── Config.in │ │ ├── python-modbus-tk.hash │ │ └── python-modbus-tk.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-opcua-asyncio/ │ │ ├── Config.in │ │ ├── python-opcua-asyncio.hash │ │ └── python-opcua-asyncio.mk │ ├── python-packaging/ │ │ ├── Config.in │ │ ├── python-packaging.hash │ │ └── python-packaging.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-peewee/ │ │ ├── Config.in │ │ ├── python-peewee.hash │ │ └── python-peewee.mk │ ├── python-peewee-migrate/ │ │ ├── Config.in │ │ ├── python-peewee-migrate.hash │ │ └── python-peewee-migrate.mk │ ├── python-periphery/ │ │ ├── Config.in │ │ ├── python-periphery.hash │ │ └── python-periphery.mk │ ├── python-pexpect/ │ │ ├── Config.in │ │ ├── python-pexpect.hash │ │ └── python-pexpect.mk │ ├── python-picamera/ │ │ ├── 0001-enable-awb-greyworld-mode.patch │ │ ├── Config.in │ │ └── python-picamera.mk │ ├── python-pickleshare/ │ │ ├── Config.in │ │ ├── python-pickleshare.hash │ │ └── python-pickleshare.mk │ ├── python-piexif/ │ │ ├── Config.in │ │ ├── python-piexif.hash │ │ └── python-piexif.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-pluggy/ │ │ ├── Config.in │ │ ├── python-pluggy.hash │ │ └── python-pluggy.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-pyalsa/ │ │ ├── Config.in │ │ ├── python-pyalsa.hash │ │ └── python-pyalsa.mk │ ├── python-pyasn1/ │ │ ├── Config.in │ │ ├── python-pyasn1.hash │ │ └── python-pyasn1.mk │ ├── python-pyasn1-modules/ │ │ ├── Config.in │ │ ├── python-pyasn1-modules.hash │ │ └── python-pyasn1-modules.mk │ ├── python-pybind/ │ │ ├── Config.in │ │ ├── python-pybind.hash │ │ └── python-pybind.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-pycryptodomex/ │ │ ├── Config.in │ │ ├── python-pycryptodomex.hash │ │ └── python-pycryptodomex.mk │ ├── python-pycups/ │ │ ├── Config.in │ │ ├── python-pycups.hash │ │ └── python-pycups.mk │ ├── python-pycurl/ │ │ ├── Config.in │ │ ├── python-pycurl.hash │ │ └── python-pycurl.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-pyhocon/ │ │ ├── Config.in │ │ ├── python-pyhocon.hash │ │ └── python-pyhocon.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-pymongo/ │ │ ├── Config.in │ │ ├── python-pymongo.hash │ │ └── python-pymongo.mk │ ├── python-pymupdf/ │ │ ├── Config.in │ │ ├── python-pymupdf.hash │ │ └── python-pymupdf.mk │ ├── python-pymysql/ │ │ ├── Config.in │ │ ├── python-pymysql.hash │ │ └── python-pymysql.mk │ ├── python-pynacl/ │ │ ├── 0001-Remove-spurious-requirement-for-wheel-596.patch │ │ ├── Config.in │ │ ├── python-pynacl.hash │ │ └── python-pynacl.mk │ ├── python-pyndiff/ │ │ ├── Config.in │ │ ├── python-pyndiff.hash │ │ └── python-pyndiff.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-pysftp/ │ │ ├── Config.in │ │ ├── python-pysftp.hash │ │ └── python-pysftp.mk │ ├── python-pysmb/ │ │ ├── Config.in │ │ ├── python-pysmb.hash │ │ └── python-pysmb.mk │ ├── python-pysmi/ │ │ ├── Config.in │ │ ├── python-pysmi.hash │ │ └── python-pysmi.mk │ ├── python-pysnmp/ │ │ ├── Config.in │ │ ├── python-pysnmp.hash │ │ └── python-pysnmp.mk │ ├── python-pysnmp-mibs/ │ │ ├── Config.in │ │ ├── python-pysnmp-mibs.hash │ │ └── python-pysnmp-mibs.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-pytest/ │ │ ├── Config.in │ │ ├── python-pytest.hash │ │ └── python-pytest.mk │ ├── python-pytest-asyncio/ │ │ ├── Config.in │ │ ├── python-pytest-asyncio.hash │ │ └── python-pytest-asyncio.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-regex/ │ │ ├── Config.in │ │ ├── python-regex.hash │ │ └── python-regex.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/ │ │ ├── Config.in │ │ ├── python-requests.hash │ │ └── python-requests.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-rpi-gpio/ │ │ ├── 0001-fix-build-with-gcc-10.x.patch │ │ ├── Config.in │ │ ├── python-rpi-gpio.hash │ │ └── python-rpi-gpio.mk │ ├── python-rpi-ws281x/ │ │ ├── Config.in │ │ ├── python-rpi-ws281x.hash │ │ └── python-rpi-ws281x.mk │ ├── python-rq/ │ │ ├── Config.in │ │ ├── python-rq.hash │ │ └── python-rq.mk │ ├── python-rsa/ │ │ ├── Config.in │ │ ├── python-rsa.hash │ │ └── python-rsa.mk │ ├── python-rtslib-fb/ │ │ ├── Config.in │ │ ├── python-rtslib-fb.hash │ │ └── python-rtslib-fb.mk │ ├── python-s3transfer/ │ │ ├── Config.in │ │ ├── python-s3transfer.hash │ │ └── python-s3transfer.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-semantic-version/ │ │ ├── python-semantic-version.hash │ │ └── python-semantic-version.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/ │ │ ├── Config.in │ │ ├── python-serial.hash │ │ └── python-serial.mk │ ├── python-serial-asyncio/ │ │ ├── Config.in │ │ ├── python-serial-asyncio.hash │ │ └── python-serial-asyncio.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-setupnovernormalize/ │ │ ├── Config.in.host │ │ ├── python-setupnovernormalize.hash │ │ └── python-setupnovernormalize.mk │ ├── python-setuptools/ │ │ ├── 0001-add-executable.patch │ │ ├── Config.in │ │ ├── python-setuptools.hash │ │ └── python-setuptools.mk │ ├── python-setuptools-rust/ │ │ ├── python-setuptools-rust.hash │ │ └── python-setuptools-rust.mk │ ├── python-setuptools-scm/ │ │ ├── python-setuptools-scm.hash │ │ └── python-setuptools-scm.mk │ ├── python-setuptools-scm-git-archive/ │ │ ├── python-setuptools-scm-git-archive.hash │ │ └── python-setuptools-scm-git-archive.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-smbus2/ │ │ ├── Config.in │ │ ├── python-smbus2.hash │ │ └── python-smbus2.mk │ ├── python-smmap2/ │ │ ├── Config.in │ │ ├── python-smmap2.hash │ │ └── python-smmap2.mk │ ├── python-snappy/ │ │ ├── Config.in │ │ ├── python-snappy.hash │ │ └── python-snappy.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-typing-extensions/ │ │ ├── Config.in │ │ ├── python-typing-extensions.hash │ │ └── python-typing-extensions.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/ │ │ ├── 0001-Add-support-for-aarch64_be-or1k-and-microblazebe.patch │ │ ├── 0002-Add-support-of-ARC-architecture.patch │ │ ├── 0003-Add-support-for-microblaze.patch │ │ ├── 0004-Pseiderer-add-nios2-and-xtensa-001.patch │ │ ├── Config.in │ │ ├── python-ujson.hash │ │ └── python-ujson.mk │ ├── python-unittest-xml-reporting/ │ │ ├── Config.in │ │ ├── python-unittest-xml-reporting.hash │ │ └── python-unittest-xml-reporting.mk │ ├── python-unqlite/ │ │ ├── Config.in │ │ ├── python-unqlite.hash │ │ └── python-unqlite.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/ │ │ ├── Config.in │ │ ├── S51web2py │ │ ├── python-web2py.hash │ │ ├── python-web2py.mk │ │ └── web2py.service │ ├── python-webargs/ │ │ ├── Config.in │ │ ├── python-webargs.hash │ │ └── python-webargs.mk │ ├── 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-xmljson/ │ │ ├── Config.in │ │ ├── python-xmljson.hash │ │ └── python-xmljson.mk │ ├── python-xmltodict/ │ │ ├── Config.in │ │ ├── python-xmltodict.hash │ │ └── python-xmltodict.mk │ ├── python-xmodem/ │ │ ├── Config.in │ │ ├── python-xmodem.hash │ │ └── python-xmodem.mk │ ├── python-yarl/ │ │ ├── Config.in │ │ ├── python-yarl.hash │ │ └── python-yarl.mk │ ├── python-yatl/ │ │ ├── Config.in │ │ ├── python-yatl.hash │ │ └── python-yatl.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 │ ├── 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 │ │ ├── 0034-Add-an-option-to-disable-the-berkeleydb-module.patch │ │ ├── 0035-lib-crypt-uClibc-ng-doesn-t-set-errno-when-encryptio.patch │ │ ├── 0036-Fix-dictionary-iteration-error-in-_ExecutorManagerTh.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── python3.hash │ │ └── python3.mk │ ├── python3-cffi/ │ │ └── python3-cffi.mk │ ├── python3-cheetah/ │ │ └── python3-cheetah.mk │ ├── python3-cython/ │ │ └── python3-cython.mk │ ├── python3-ply/ │ │ └── python3-ply.mk │ ├── python3-psutil/ │ │ └── python3-psutil.mk │ ├── python3-pycparser/ │ │ └── python3-pycparser.mk │ ├── python3-pycryptodomex/ │ │ └── python3-pycryptodomex.mk │ ├── python3-pyelftools/ │ │ └── python3-pyelftools.mk │ ├── python3-pyyaml/ │ │ └── python3-pyyaml.mk │ ├── python3-regex/ │ │ └── python3-regex.mk │ ├── python3-setuptools/ │ │ └── python3-setuptools.mk │ ├── python3-six/ │ │ └── python3-six.mk │ ├── qcom-db410c-firmware/ │ │ ├── Config.in │ │ ├── qcom-db410c-firmware.hash │ │ └── qcom-db410c-firmware.mk │ ├── qdecoder/ │ │ ├── Config.in │ │ ├── qdecoder.hash │ │ └── qdecoder.mk │ ├── qemu/ │ │ ├── 0002-softmmu-qemu-seccomp.c-add-missing-header-for-CLONE_.patch │ │ ├── 0002-tests-fp-disable-fp-bench-build-by-default.patch │ │ ├── 0003-target-sh4-Mask-restore-of-env-flags-from-tb-flags.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 │ ├── qoriq-rcw/ │ │ ├── Config.in.host │ │ ├── qoriq-rcw.hash │ │ └── qoriq-rcw.mk │ ├── qpdf/ │ │ ├── 0001-libtests-cxx11.cc-fix-build-with-gcc-4.8.patch │ │ ├── 0002-Fix-some-pipelines-to-be-safe-if-downstream-write-fails.patch │ │ ├── Config.in │ │ ├── qpdf.hash │ │ └── qpdf.mk │ ├── qpid-proton/ │ │ ├── Config.in │ │ ├── qpid-proton.hash │ │ └── qpid-proton.mk │ ├── qprint/ │ │ ├── Config.in │ │ ├── qprint.hash │ │ └── qprint.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/ │ │ │ ├── 0001-qtbase-Fix-build-error-when-using-EGL.patch │ │ │ ├── 0002-double-conversion-enable-for-microblaze.patch │ │ │ ├── 0003-double-conversion-enable-for-nios2.patch │ │ │ ├── 0004-double-conversion-enable-for-xtensa.patch │ │ │ ├── 0005-eglfs-avoid-breaking-compilation-for-obscure-EGLNativeDisplayType-types.patch │ │ │ ├── 0006-Fix-build-with-GCC-11-include-limits.patch │ │ │ ├── 0007-Build-fixes-for-GCC-11.patch │ │ │ ├── 0008-Add-missing-limits-include.patch │ │ │ ├── 0009-Fix-build-on-riscv32.patch │ │ │ ├── Config.in │ │ │ ├── qmake.conf.in │ │ │ ├── qplatformdefs.h │ │ │ ├── qt.conf.in │ │ │ ├── qt5base.hash │ │ │ └── qt5base.mk │ │ ├── qt5charts/ │ │ │ ├── Config.in │ │ │ ├── qt5charts.hash │ │ │ └── qt5charts.mk │ │ ├── qt5coap/ │ │ │ ├── Config.in │ │ │ ├── qt5coap.hash │ │ │ └── qt5coap.mk │ │ ├── qt5connectivity/ │ │ │ ├── Config.in │ │ │ ├── qt5connectivity.hash │ │ │ └── qt5connectivity.mk │ │ ├── qt5declarative/ │ │ │ ├── 0001-qsgtexture-fix-debug-build-with-uclibc.patch │ │ │ ├── 0002-qv4regexp_p-needs-c-limits-include-instead-of-plain-.patch │ │ │ ├── 0003-qqmlprofilerevent_p-needs-c-limits-inlcude-fixes-gcc.patch │ │ │ ├── Config.in │ │ │ ├── qt5declarative.hash │ │ │ └── qt5declarative.mk │ │ ├── qt5enginio/ │ │ │ ├── 0001-Do-not-use-deprecated-QLinkedList.patch │ │ │ ├── Config.in │ │ │ ├── qt5enginio.hash │ │ │ └── qt5enginio.mk │ │ ├── qt5graphicaleffects/ │ │ │ ├── Config.in │ │ │ ├── qt5graphicaleffects.hash │ │ │ └── qt5graphicaleffects.mk │ │ ├── qt5imageformats/ │ │ │ ├── Config.in │ │ │ ├── qt5imageformats.hash │ │ │ └── qt5imageformats.mk │ │ ├── qt5knx/ │ │ │ ├── Config.in │ │ │ ├── qt5knx.hash │ │ │ └── qt5knx.mk │ │ ├── qt5location/ │ │ │ ├── 0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch │ │ │ ├── Config.in │ │ │ ├── qt5location.hash │ │ │ └── qt5location.mk │ │ ├── qt5lottie/ │ │ │ ├── Config.in │ │ │ ├── qt5lottie.hash │ │ │ └── qt5lottie.mk │ │ ├── qt5mqtt/ │ │ │ ├── Config.in │ │ │ ├── qt5mqtt.hash │ │ │ └── qt5mqtt.mk │ │ ├── qt5multimedia/ │ │ │ ├── Config.in │ │ │ ├── qt5multimedia.hash │ │ │ └── qt5multimedia.mk │ │ ├── qt5opcua/ │ │ │ ├── Config.in │ │ │ ├── qt5opcua.hash │ │ │ └── qt5opcua.mk │ │ ├── qt5quickcontrols/ │ │ │ ├── Config.in │ │ │ ├── qt5quickcontrols.hash │ │ │ └── qt5quickcontrols.mk │ │ ├── qt5quickcontrols2/ │ │ │ ├── Config.in │ │ │ ├── qt5quickcontrols2.hash │ │ │ └── qt5quickcontrols2.mk │ │ ├── qt5quicktimeline/ │ │ │ ├── Config.in │ │ │ ├── qt5quicktimeline.hash │ │ │ └── qt5quicktimeline.mk │ │ ├── qt5remoteobjects/ │ │ │ ├── Config.in │ │ │ ├── qt5remoteobjects.hash │ │ │ └── qt5remoteobjects.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/ │ │ │ ├── Config.in │ │ │ ├── qt5serialbus.hash │ │ │ └── qt5serialbus.mk │ │ ├── qt5serialport/ │ │ │ ├── Config.in │ │ │ ├── qt5serialport.hash │ │ │ └── qt5serialport.mk │ │ ├── qt5svg/ │ │ │ ├── Config.in │ │ │ ├── qt5svg.hash │ │ │ └── qt5svg.mk │ │ ├── qt5tools/ │ │ │ ├── 0001-Disable-designer-tool-fixes-configure-error.patch │ │ │ ├── Config.in │ │ │ ├── qt5tools.hash │ │ │ └── qt5tools.mk │ │ ├── qt5virtualkeyboard/ │ │ │ ├── Config.in │ │ │ ├── qt5virtualkeyboard.hash │ │ │ └── qt5virtualkeyboard.mk │ │ ├── qt5wayland/ │ │ │ ├── Config.in │ │ │ ├── qt5wayland.hash │ │ │ └── qt5wayland.mk │ │ ├── qt5webchannel/ │ │ │ ├── Config.in │ │ │ ├── qt5webchannel.hash │ │ │ └── qt5webchannel.mk │ │ ├── qt5webengine/ │ │ │ ├── 0001-gn.pro-don-t-link-statically-with-libstc.patch │ │ │ ├── Config.in │ │ │ ├── chromium-latest.inc │ │ │ ├── host-pkg-config.in │ │ │ ├── qt5webengine.hash │ │ │ └── qt5webengine.mk │ │ ├── qt5webkit/ │ │ │ ├── 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 │ │ │ ├── 0006-configure-remove-legacy-reference-to-qtConfig-mircli.patch │ │ │ ├── 0007-Let-Bison-generate-the-header-directly-to-fix-build-.patch │ │ │ ├── 0008-let-bison-generate-the-header-directly-to-fix-build-.patch │ │ │ ├── 0009-Fix-ICU-related-compile-failures-from-capital-bool-d.patch │ │ │ ├── Config.in │ │ │ ├── qt5webkit.hash │ │ │ └── qt5webkit.mk │ │ ├── qt5webkit-examples/ │ │ │ ├── 0001-Build-examples.patch │ │ │ ├── 0002-Fix-QWebView-path.patch │ │ │ ├── 0003-Fix-QPainterPath-include.patch │ │ │ ├── Config.in │ │ │ ├── qt5webkit-examples.hash │ │ │ └── qt5webkit-examples.mk │ │ ├── qt5websockets/ │ │ │ ├── Config.in │ │ │ ├── qt5websockets.hash │ │ │ └── qt5websockets.mk │ │ ├── qt5webview/ │ │ │ ├── Config.in │ │ │ ├── qt5webview.hash │ │ │ └── qt5webview.mk │ │ ├── qt5x11extras/ │ │ │ ├── Config.in │ │ │ ├── qt5x11extras.hash │ │ │ └── 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 │ │ ├── 0002-lib-prefix.h-fix-build-with-gcc-10.patch │ │ ├── 0003-Fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── quagga.hash │ │ ├── quagga.mk │ │ ├── quagga@.service │ │ └── quagga_tmpfiles.conf │ ├── quazip/ │ │ ├── Config.in │ │ ├── quazip.hash │ │ └── quazip.mk │ ├── quickjs/ │ │ ├── Config.in │ │ ├── quickjs.hash │ │ └── quickjs.mk │ ├── quota/ │ │ ├── 0001-quota-Use-realloc-3-instead-of-reallocarray-3.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/ │ │ ├── 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 │ │ ├── 0002-Calcualte-max-nspace-declarations-correctly-for-XML-.patch │ │ ├── Config.in │ │ ├── raptor.hash │ │ └── raptor.mk │ ├── raspberrypi-usbboot/ │ │ ├── 0001-Makefile-allow-passing-CFLAGS-LDFLAGS.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-smarc-sal28/ │ │ ├── Config.in │ │ ├── rcw-smarc-sal28.hash │ │ └── rcw-smarc-sal28.mk │ ├── rdesktop/ │ │ ├── 0001-8bit-colors.patch │ │ ├── Config.in │ │ ├── rdesktop.hash │ │ └── rdesktop.mk │ ├── re2/ │ │ ├── Config.in │ │ ├── re2.hash │ │ └── re2.mk │ ├── read-edid/ │ │ ├── 0001-Fix-install-file-list.patch │ │ ├── 0002-Fix-compiler-check.patch │ │ ├── 0003-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── read-edid.hash │ │ └── read-edid.mk │ ├── readline/ │ │ ├── 0001-curses-link.patch │ │ ├── Config.in │ │ ├── inputrc │ │ ├── readline.hash │ │ └── readline.mk │ ├── reaver/ │ │ ├── Config.in │ │ ├── reaver.hash │ │ └── reaver.mk │ ├── redir/ │ │ ├── Config.in │ │ ├── redir.hash │ │ └── redir.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/ │ │ ├── 2.20210908/ │ │ │ ├── 0001-policy-modules-services-samba.te-make-crack-optional.patch │ │ │ └── 0002-policy-modules-services-wireguard.te-make-iptables-o.patch │ │ ├── Config.in │ │ ├── config │ │ ├── refpolicy.hash │ │ └── refpolicy.mk │ ├── resiprocate/ │ │ ├── Config.in │ │ ├── resiprocate.hash │ │ └── resiprocate.mk │ ├── restclient-cpp/ │ │ ├── Config.in │ │ ├── restclient-cpp.hash │ │ └── restclient-cpp.mk │ ├── restorecond/ │ │ ├── Config.in │ │ ├── S02restorecond │ │ ├── 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/ │ │ ├── 0001-puts-jemalloc-allocator-behind-a-cargo-feature-flag.patch │ │ ├── Config.in │ │ ├── ripgrep.hash │ │ └── ripgrep.mk │ ├── riscv64-elf-toolchain/ │ │ └── riscv64-elf-toolchain.mk │ ├── rkbin/ │ │ ├── Config.in │ │ └── rkbin.mk │ ├── rng-tools/ │ │ ├── Config.in │ │ ├── S21rngd │ │ ├── rng-tools.hash │ │ ├── rng-tools.mk │ │ └── rngd.service │ ├── rocksdb/ │ │ ├── 0001-build_tools-build_detect_platform-fix-C-tests.patch │ │ ├── Config.in │ │ ├── rocksdb.hash │ │ └── rocksdb.mk │ ├── rp-pppoe/ │ │ ├── 0001-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 │ ├── rpi-armmem/ │ │ ├── Config.in │ │ └── rpi-armmem.mk │ ├── rpi-bt-firmware/ │ │ ├── Config.in │ │ ├── rpi-bt-firmware.hash │ │ └── rpi-bt-firmware.mk │ ├── rpi-firmware/ │ │ ├── Config.in │ │ ├── cmdline.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/ │ │ ├── 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/ │ │ ├── 0001-rsync-ssl-Verify-the-hostname-in-the-certificate-when-using-openssl.patch │ │ ├── Config.in │ │ ├── rsync.hash │ │ └── rsync.mk │ ├── rsyslog/ │ │ ├── Config.in │ │ ├── S01rsyslogd │ │ ├── rsyslog.hash │ │ ├── rsyslog.mk │ │ └── rsyslog.service │ ├── rt-tests/ │ │ ├── 0001-Fix-a-build-issue-with-uClibc-ng.patch │ │ ├── 0002-Makefile-drop-explicit-undefine-PYLIB-for-compatibil.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/ │ │ ├── 0001-include-disable-debug-messages.patch │ │ ├── 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 │ ├── rtl8812au-aircrack-ng/ │ │ ├── Config.in │ │ ├── rtl8812au-aircrack-ng.hash │ │ └── rtl8812au-aircrack-ng.mk │ ├── rtl8821au/ │ │ ├── 0001-Fix-implicit-fallthrough-comments-for-kernel-5.3.patch │ │ ├── 0002-Fix-kernel-5.3-driver-crashes-from-aircrack-ng-rtl88.patch │ │ ├── 0003-Fix-using-sprintf-for-extending-string-which-causes-.patch │ │ ├── 0004-rename-sha256_state-to-rtl_sha256_state-to-avoid-nam.patch │ │ ├── 0005-disable-rtw_mgmt_frame_register-on-kernel-5.8.0.patch │ │ ├── 0006-rtw_proc-convert-file_operations-to-proc_ops-for-5.6.patch │ │ ├── Config.in │ │ ├── rtl8821au.hash │ │ └── rtl8821au.mk │ ├── rtl_433/ │ │ ├── Config.in │ │ ├── rtl_433.hash │ │ └── rtl_433.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 │ ├── rtty/ │ │ ├── Config.in │ │ ├── rtty.hash │ │ └── rtty.mk │ ├── rubix/ │ │ ├── 0001-dont-use-legacy-functions.patch │ │ ├── 0002-misc-fixes.patch │ │ ├── Config.in │ │ ├── rubix.hash │ │ └── rubix.mk │ ├── ruby/ │ │ ├── 0001-fix-default-coroutine-selection.patch │ │ ├── 0002-Needs-AC_PROG_CC.patch │ │ ├── Config.in │ │ ├── ruby.hash │ │ └── ruby.mk │ ├── runc/ │ │ ├── Config.in │ │ ├── runc.hash │ │ └── runc.mk │ ├── rust/ │ │ ├── rust.hash │ │ └── rust.mk │ ├── rust-bin/ │ │ ├── rust-bin.hash │ │ └── rust-bin.mk │ ├── rustc/ │ │ ├── Config.in.host │ │ ├── cargo-config.in │ │ └── rustc.mk │ ├── rwmem/ │ │ ├── Config.in │ │ ├── rwmem.hash │ │ └── rwmem.mk │ ├── rygel/ │ │ ├── Config.in │ │ ├── S99rygel │ │ ├── rygel.hash │ │ ├── rygel.mk │ │ └── rygel.service │ ├── s390-tools/ │ │ ├── 0004-zipl-boot-Makefile-no-pie-is-not-a-valid-ld-flag.patch │ │ ├── Config.in │ │ ├── s390-tools.hash │ │ └── s390-tools.mk │ ├── s6/ │ │ ├── Config.in │ │ ├── s6.hash │ │ └── s6.mk │ ├── s6-dns/ │ │ ├── Config.in │ │ ├── s6-dns.hash │ │ └── s6-dns.mk │ ├── s6-linux-init/ │ │ ├── 0001-configure-add-D_GNU_SOURCE.patch │ │ ├── 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 │ ├── 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-ldap_message_test.c-include-stdint.h-before-cmoka.h.patch │ │ ├── 0004-dcesrv_core-fix-build.patch │ │ ├── Config.in │ │ ├── S91smb │ │ ├── samba4-cache.txt │ │ ├── samba4.hash │ │ └── samba4.mk │ ├── sane-backends/ │ │ ├── 0001-sane_backend-add-missing-config.h.patch │ │ ├── 0002-genesys-fix-gcc-4.8-compile.patch │ │ ├── 0003-genesys-use-usleep-instead-of-std-this_thread-sleep_.patch │ │ ├── 0004-backend-microtek-fix-uclibc-compile-include-stdarg.h.patch │ │ ├── 0005-backend-sm3600-scanutil-fix-uclibc-compile-include-s.patch │ │ ├── Config.in │ │ ├── sane-backends.hash │ │ ├── sane-backends.mk │ │ ├── saned.socket │ │ └── saned@.service │ ├── sbc/ │ │ ├── 0001-sbc_primitives-Fix-build-on-non-x86.patch │ │ ├── Config.in │ │ ├── sbc.hash │ │ └── sbc.mk │ ├── sconeserver/ │ │ ├── 0001-sconex-Descriptor.cpp-fix-build-with-gcc-11.patch │ │ ├── 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 │ │ ├── 0008_CVE-2021-26937.patch │ │ ├── Config.in │ │ ├── screen.hash │ │ └── screen.mk │ ├── screenfetch/ │ │ ├── Config.in │ │ ├── screenfetch.hash │ │ └── screenfetch.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/ │ │ ├── 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-configure__set_macro_directory.patch │ │ ├── 0003-configure.ac-fix-static-linking-with-tremor.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 │ ├── seatd/ │ │ ├── Config.in │ │ ├── S70seatd │ │ ├── seatd.hash │ │ └── seatd.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 │ ├── semver-sort/ │ │ ├── Config.in │ │ └── semver-sort.mk │ ├── sentry-native/ │ │ ├── 0001-sentry.h-include-ucontext.h.patch │ │ ├── Config.in │ │ ├── sentry-native.hash │ │ └── sentry-native.mk │ ├── ser2net/ │ │ ├── Config.in │ │ ├── S50ser2net │ │ ├── ser2net.hash │ │ └── ser2net.mk │ ├── setools/ │ │ ├── 0001-Do-not-export-use-setools.InfoFlowAnalysis-and-setoo.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-src-sg_dd.c-fix-musl-build.patch │ │ ├── 0002-configure.ac-fix-uclibc-ng-build.patch │ │ ├── Config.in │ │ ├── sg3_utils.hash │ │ └── sg3_utils.mk │ ├── shadowsocks-libev/ │ │ ├── 0001-configure.ac-use-pkg-config-to-find-netfilter_conntr.patch │ │ ├── Config.in │ │ ├── shadowsocks-libev.hash │ │ └── shadowsocks-libev.mk │ ├── shairport-sync/ │ │ ├── 0001-configure.ac-find-sndfile-through-pkg-config.patch │ │ ├── 0002-configure.ac-fix-build-with-automake-1.16.5.patch │ │ ├── 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 │ ├── siproxd/ │ │ ├── Config.in │ │ ├── siproxd.hash │ │ └── siproxd.mk │ ├── sispmctl/ │ │ ├── Config.in │ │ ├── sispmctl.hash │ │ └── sispmctl.mk │ ├── skalibs/ │ │ ├── Config.in │ │ ├── skalibs.hash │ │ └── skalibs.mk │ ├── skeleton/ │ │ ├── Config.in │ │ └── skeleton.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/ │ │ │ └── etc/ │ │ │ ├── conf.d/ │ │ │ │ └── .empty │ │ │ ├── fstab │ │ │ └── runlevels/ │ │ │ └── default/ │ │ │ └── .empty │ │ └── skeleton-init-openrc.mk │ ├── skeleton-init-systemd/ │ │ ├── Config.in │ │ └── skeleton-init-systemd.mk │ ├── skeleton-init-sysv/ │ │ ├── Config.in │ │ ├── skeleton/ │ │ │ ├── dev/ │ │ │ │ ├── pts/ │ │ │ │ │ └── .empty │ │ │ │ └── shm/ │ │ │ │ └── .empty │ │ │ └── etc/ │ │ │ └── fstab │ │ └── skeleton-init-sysv.mk │ ├── sl/ │ │ ├── Config.in │ │ ├── sl.hash │ │ └── sl.mk │ ├── slang/ │ │ ├── 0001-slsh-libs.patch │ │ ├── Config.in │ │ ├── slang.hash │ │ └── slang.mk │ ├── slirp/ │ │ ├── Config.in │ │ ├── slirp.hash │ │ └── slirp.mk │ ├── sloci-image/ │ │ ├── Config.in.host │ │ ├── sloci-image.hash │ │ └── sloci-image.mk │ ├── smack/ │ │ ├── Config.in │ │ ├── smack.hash │ │ └── smack.mk │ ├── smartmontools/ │ │ ├── Config.in │ │ ├── smartmontools.hash │ │ └── smartmontools.mk │ ├── smcroute/ │ │ ├── 0001-Avoid-trying-to-delete-inactive-VIFs.patch │ │ ├── Config.in │ │ ├── S41smcroute │ │ ├── smcroute.hash │ │ └── smcroute.mk │ ├── smstools3/ │ │ ├── 0001-fix-Makefile.patch │ │ ├── 0002-fix-build-with-gcc-10.x.patch │ │ ├── Config.in │ │ ├── S50smsd │ │ ├── smstools3.hash │ │ └── smstools3.mk │ ├── snappy/ │ │ ├── Config.in │ │ ├── snappy.hash │ │ └── snappy.mk │ ├── sngrep/ │ │ ├── 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 │ ├── snort3/ │ │ ├── Config.in │ │ ├── snort3.hash │ │ └── snort3.mk │ ├── socat/ │ │ ├── 0001-no-documentation.patch │ │ ├── 0002-compat-set-NETDB_INTERNAL.patch │ │ ├── Config.in │ │ ├── socat.hash │ │ └── socat.mk │ ├── socketcand/ │ │ ├── 0001-Fix-GCC10-build-failure.patch │ │ ├── Config.in │ │ ├── socketcand.hash │ │ └── socketcand.mk │ ├── sofia-sip/ │ │ ├── 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 │ ├── softhsm2/ │ │ ├── Config.in │ │ ├── softhsm2.hash │ │ └── softhsm2.mk │ ├── solarus/ │ │ ├── 0001-cmake-remove-Werror.patch │ │ ├── 0002-Add-a-basic-FindOpenGLES2.cmake.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 │ │ ├── 0002-configure.ac-put-back-disable-stack-protector.patch │ │ ├── 0003-configure.ac-fix-static-linking-with-id3tag.patch │ │ ├── 0004-configure.ac-fix-static-linking-with-magic.patch │ │ ├── 0005-configure.ac-fix-static-linking-with-sndfile.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/ │ │ ├── 0001-configure.ac-fix-AVX-SSE-and-MMX-options.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── spice.hash │ │ └── spice.mk │ ├── spice-protocol/ │ │ ├── Config.in │ │ ├── spice-protocol.hash │ │ └── spice-protocol.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/ │ │ ├── 0001-squashfs-tools-fix-build-failure-against-gcc-10.patch │ │ ├── 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 │ ├── ssdp-responder/ │ │ ├── Config.in │ │ ├── S50ssdpd │ │ ├── ssdp-responder.hash │ │ └── ssdp-responder.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-Makefile-fix-static-linking-with-pcre.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/ │ │ ├── Config.in │ │ ├── stella.hash │ │ └── stella.mk │ ├── stellarium/ │ │ ├── Config.in │ │ ├── stellarium.hash │ │ └── stellarium.mk │ ├── stm32flash/ │ │ ├── Config.in │ │ ├── stm32flash.hash │ │ └── stm32flash.mk │ ├── strace/ │ │ ├── 0001-Avoid-relying-on-presence-of-ipx-h.patch │ │ ├── Config.in │ │ ├── strace.hash │ │ └── strace.mk │ ├── streameye/ │ │ ├── Config.in │ │ └── streameye.mk │ ├── stress/ │ │ ├── Config.in │ │ ├── stress.hash │ │ └── stress.mk │ ├── stress-ng/ │ │ ├── Config.in │ │ ├── stress-ng.hash │ │ └── stress-ng.mk │ ├── strongswan/ │ │ ├── Config.in │ │ ├── strongswan.hash │ │ └── strongswan.mk │ ├── stunnel/ │ │ ├── Config.in │ │ ├── S50stunnel │ │ ├── stunnel.hash │ │ └── stunnel.mk │ ├── subversion/ │ │ ├── 0001-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/ │ │ ├── Config.in │ │ ├── egl.pc │ │ ├── glesv2.pc │ │ ├── sunxi-mali-mainline.hash │ │ └── sunxi-mali-mainline.mk │ ├── sunxi-mali-mainline-driver/ │ │ ├── Config.in │ │ ├── sunxi-mali-mainline-driver.hash │ │ └── sunxi-mali-mainline-driver.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-CMakeLists.txt-compile-squirrel-with-fPIC.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-python-ensure-proper-shabang-on-python-scripts.patch │ │ ├── 0002-configure.ac-allow-the-user-to-override-RUST_TARGET.patch │ │ ├── Config.in │ │ ├── S99suricata │ │ ├── suricata.hash │ │ ├── suricata.mk │ │ └── suricata.service │ ├── swig/ │ │ ├── Config.in.host │ │ ├── swig.hash │ │ └── swig.mk │ ├── swupdate/ │ │ ├── 10-mongoose-args │ │ ├── 90-start-progress │ │ ├── Config.in │ │ ├── S80swupdate │ │ ├── swupdate-progress.service │ │ ├── swupdate-usb.rules │ │ ├── swupdate-usb@.service │ │ ├── swupdate.config │ │ ├── swupdate.hash │ │ ├── swupdate.mk │ │ ├── swupdate.service │ │ ├── swupdate.sh │ │ ├── swupdate.socket │ │ └── tmpfiles-swupdate.conf │ ├── sylpheed/ │ │ ├── 0001-harden-link-checker-before-accepting-click.patch │ │ ├── Config.in │ │ ├── sylpheed.hash │ │ └── sylpheed.mk │ ├── synergy/ │ │ ├── Config.in │ │ ├── synergy.hash │ │ └── synergy.mk │ ├── sysdig/ │ │ ├── Config.in │ │ ├── sysdig.hash │ │ └── sysdig.mk │ ├── sysklogd/ │ │ ├── Config.in │ │ ├── S01syslogd │ │ ├── sysklogd.hash │ │ ├── sysklogd.mk │ │ └── syslogd.service │ ├── syslog-ng/ │ │ ├── 0001-fix-build-on-uclibc.patch │ │ ├── Config.in │ │ ├── S01syslog-ng │ │ ├── syslog-ng.conf │ │ ├── syslog-ng.hash │ │ └── syslog-ng.mk │ ├── sysprof/ │ │ ├── 0001-define-NT_GNU_BUILD_ID.patch │ │ ├── Config.in │ │ ├── sysprof.hash │ │ └── sysprof.mk │ ├── sysrepo/ │ │ ├── Config.in │ │ ├── S51sysrepo-plugind │ │ ├── sysrepo.hash │ │ └── sysrepo.mk │ ├── sysstat/ │ │ ├── Config.in │ │ ├── sysstat.hash │ │ └── sysstat.mk │ ├── system-config-printer/ │ │ ├── 0001-Add-option-to-disable-xmlto-manual-generation.patch │ │ ├── 0002-configure-accept-non-system-cups-config.patch │ │ ├── Config.in │ │ ├── system-config-printer.hash │ │ └── system-config-printer.mk │ ├── systemd/ │ │ ├── 0001-Add-meson-option-to-disable-urlify.patch │ │ ├── 80-buildroot.preset │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── boot-files/ │ │ │ ├── buildroot.conf │ │ │ └── loader.conf │ │ ├── dhcp.network │ │ ├── systemd.hash │ │ └── systemd.mk │ ├── systemd-bootchart/ │ │ ├── Config.in │ │ ├── systemd-bootchart.hash │ │ └── systemd-bootchart.mk │ ├── sysvinit/ │ │ ├── 0001-Makefile-disable-stack-protector-strong.patch │ │ ├── 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/ │ │ ├── 0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch │ │ ├── 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/ │ │ ├── 0001-Use-extern-qualifier-to-fix-gcc-10.x-build.patch │ │ ├── Config.in │ │ ├── S80tftpd-hpa │ │ ├── tftpd.hash │ │ └── tftpd.mk │ ├── thermald/ │ │ ├── 0001-thd_trip_point-fix-32-bit-build-error-with-musl-v1.2.patch │ │ ├── Config.in │ │ ├── thermald.hash │ │ └── thermald.mk │ ├── thrift/ │ │ ├── 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-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/ │ │ ├── 0001-plt.h-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── ti-utils.hash │ │ └── ti-utils.mk │ ├── tiff/ │ │ ├── Config.in │ │ ├── tiff.hash │ │ └── tiff.mk │ ├── time/ │ │ ├── Config.in │ │ ├── time.hash │ │ └── time.mk │ ├── timescaledb/ │ │ ├── Config.in │ │ ├── timescaledb.hash │ │ └── timescaledb.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-sha2-sha2.c-fix-build-on-big-endian.patch │ │ ├── Config.in │ │ ├── tinydtls.hash │ │ └── tinydtls.mk │ ├── tinymembench/ │ │ ├── 0001-arm-fix-build-on-Thumb-only-architectures.patch │ │ ├── Config.in │ │ ├── tinymembench.hash │ │ └── tinymembench.mk │ ├── tinyproxy/ │ │ ├── Config.in │ │ ├── tinyproxy.hash │ │ └── tinyproxy.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-pkcs11/ │ │ ├── Config.in │ │ ├── tpm2-pkcs11.hash │ │ └── tpm2-pkcs11.mk │ ├── tpm2-tools/ │ │ ├── 0001-configure-make-build-gnu99.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── trace-cmd.hash │ │ └── trace-cmd.mk │ ├── traceroute/ │ │ ├── Config.in │ │ ├── traceroute.hash │ │ └── traceroute.mk │ ├── transmission/ │ │ ├── 0001-fix-utypes.patch │ │ ├── 0002-fix-utp-include.patch │ │ ├── 0003-configure.ac-fix-autoreconf-with-autoconf-2.70.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/ │ │ ├── 0001-Fix-build-with-GCC-10.patch │ │ ├── 0002-net-proto-ip-raw.c-fix-build-with-kernel-5.13.patch │ │ ├── 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/ │ │ ├── Config.in │ │ ├── tslib.hash │ │ └── tslib.mk │ ├── tstools/ │ │ ├── 0001-build-get-along-with-buildroot.patch │ │ ├── Config.in │ │ ├── tstools.hash │ │ └── tstools.mk │ ├── ttyd/ │ │ ├── Config.in │ │ ├── ttyd.hash │ │ └── ttyd.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-tools-Makefile-fix-C-LD-FLAGS-with-CROSS_BUILD_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/ │ │ ├── Config.in │ │ ├── uClibc-ng.config │ │ ├── uclibc.hash │ │ └── uclibc.mk │ ├── uclibc-ng-test/ │ │ ├── Config.in │ │ ├── uclibc-ng-test.hash │ │ └── uclibc-ng-test.mk │ ├── udev/ │ │ ├── Config.in │ │ └── udev.mk │ ├── udev-gentoo-scripts/ │ │ ├── Config.in │ │ ├── udev-gentoo-scripts.hash │ │ └── udev-gentoo-scripts.mk │ ├── udftools/ │ │ ├── Config.in │ │ ├── udftools.hash │ │ └── udftools.mk │ ├── udisks/ │ │ ├── Config.in │ │ ├── udisks.hash │ │ └── udisks.mk │ ├── udpcast/ │ │ ├── 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 │ ├── uftrace/ │ │ ├── 0001-cmds-records-replace-ADDR_NO_RANDOMIZE-by-its-value.patch │ │ ├── 0002-arch-arm-mcount-support.c-define-EF_ARM_VFP_FLOAT-wh.patch │ │ ├── Config.in │ │ ├── uftrace.hash │ │ └── uftrace.mk │ ├── uhd/ │ │ ├── 0001-host-CMakeLists-add-boost-unit_test_framework-requir.patch │ │ ├── 0002-host-fix-build-boost-173.patch │ │ ├── 0003-add-RISC-V-endian-detection.patch │ │ ├── 0004-lib-Fix-missing-includes-in-rpc-hpp.patch │ │ ├── 0005-core-remove-boost-math-in-favor-of-std-cmath.patch │ │ ├── 0006-usrp2-Replace-boost-math-iround-math-sign-with-std-l.patch │ │ ├── 0007-usrp2-Use-explicit-template-type-for-std-min-T.patch │ │ ├── Config.in │ │ ├── uhd.hash │ │ └── uhd.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 │ ├── unbound/ │ │ ├── Config.in │ │ ├── S70unbound │ │ ├── unbound.hash │ │ └── unbound.mk │ ├── unclutter-xfixes/ │ │ ├── Config.in │ │ ├── unclutter-xfixes.hash │ │ └── unclutter-xfixes.mk │ ├── unionfs/ │ │ ├── Config.in │ │ ├── unionfs.hash │ │ └── unionfs.mk │ ├── unixodbc/ │ │ ├── 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/ │ │ ├── 0001-Check-DT_REL-DT_RELA-DT_RELSZ-DT_RELASZ.patch │ │ ├── upx.hash │ │ └── upx.mk │ ├── uqmi/ │ │ ├── Config.in │ │ ├── uqmi.hash │ │ └── uqmi.mk │ ├── urandom-scripts/ │ │ ├── Config.in │ │ ├── S20urandom │ │ └── urandom-scripts.mk │ ├── uredir/ │ │ ├── Config.in │ │ ├── uredir.hash │ │ └── uredir.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 │ ├── usbguard/ │ │ ├── Config.in │ │ ├── S20usbguard │ │ ├── usbguard.hash │ │ └── usbguard.mk │ ├── usbmount/ │ │ ├── 0001-rules-fix.patch │ │ ├── 0002-use-udev-environment-instead-of-blkid.patch │ │ ├── Config.in │ │ ├── usbmount.hash │ │ └── usbmount.mk │ ├── usbredir/ │ │ ├── 0001-meson-add-tests-option.patch │ │ ├── 0002-meson-add-stack_protector-option.patch │ │ ├── 0003-meson.build-make-C-optional.patch │ │ ├── Config.in │ │ ├── usbredir.hash │ │ └── usbredir.mk │ ├── usbutils/ │ │ ├── Config.in │ │ ├── usbutils.hash │ │ └── usbutils.mk │ ├── ushare/ │ │ ├── 0001-Don-t-build-po-files-if-NLS-is-disabled.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/ │ │ ├── 0001-libuuid-include-c-h-to-cover-restrict-keyword.patch │ │ ├── 0002-libblkid-don-t-mark-cache-as-probed-if-sys-not-available.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── su.pam │ │ ├── util-linux-libs/ │ │ │ └── util-linux-libs.mk │ │ ├── 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 │ ├── v4l2cpp/ │ │ ├── 0001-no-log4cpp.patch.bak │ │ ├── 0001-shared-lib.patch │ │ ├── Config.in │ │ └── v4l2cpp.mk │ ├── v4l2grab/ │ │ ├── Config.in │ │ ├── v4l2grab.hash │ │ └── v4l2grab.mk │ ├── v4l2loopback/ │ │ ├── Config.in │ │ ├── v4l2loopback.hash │ │ └── v4l2loopback.mk │ ├── v4l2rtspserver/ │ │ ├── 0001-use-custom-makefile.patch │ │ ├── 0001-use-system-v4l2wrapper.patch.bak │ │ ├── Config.in │ │ └── v4l2rtspserver.mk │ ├── v4l2tools/ │ │ ├── 02-enable-cross-compile.patch │ │ ├── Config.in │ │ └── v4l2tools.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 │ │ ├── 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 │ │ ├── 0007-Make-vboot_version-extern-in-header.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/ │ │ ├── Config.in │ │ ├── vdr.hash │ │ └── vdr.mk │ ├── vdr-plugin-vnsiserver/ │ │ ├── Config.in │ │ ├── vdr-plugin-vnsiserver.hash │ │ └── vdr-plugin-vnsiserver.mk │ ├── vim/ │ │ ├── Config.in │ │ ├── vim.hash │ │ └── vim.mk │ ├── vlc/ │ │ ├── 0001-Disable-building-of-statically-linked-vlc-binary.patch │ │ ├── 0002-automake-add-subdir-objects-option.patch │ │ ├── 0003-build-use-pkg-config-to-get-tremor-libs.patch │ │ ├── 0004-Fix-build-error-using-uClibc-by-adding-sys-types.h.patch │ │ ├── 0005-Don-t-assume-strerror_l-is-available.patch │ │ ├── 0006-posix-remove-ancient-run-time-fallback-to-real-time-.patch │ │ ├── 0007-Add-support-for-freerdp2.patch │ │ ├── 0008-configure.ac-also-use-AC_PATH_PROG-to-check-for-wayl.patch │ │ ├── 0009-modules-video_filter-opencv_example.cpp-fix-build-wi.patch │ │ ├── 0010-modules-access-live555.cpp-fix-build-with-live555-20.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/ │ │ ├── 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 │ │ ├── 0002-fix-CVE-2015-1419.patch │ │ ├── 0003-Prevent-hang-in-SIGCHLD-handler.patch │ │ ├── Config.in │ │ ├── S70vsftpd │ │ ├── vsftpd.hash │ │ ├── vsftpd.mk │ │ └── vsftpd.service │ ├── 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 │ ├── vuejs/ │ │ ├── Config.in │ │ ├── vuejs.hash │ │ └── vuejs.mk │ ├── vuejs-router/ │ │ ├── Config.in │ │ ├── vuejs-router.hash │ │ └── vuejs-router.mk │ ├── w_scan/ │ │ ├── 0001-musl.patch │ │ ├── 0002-si_types-h-fix-build-with-gcc-10.patch │ │ ├── Config.in │ │ ├── w_scan.hash │ │ └── w_scan.mk │ ├── waf/ │ │ ├── waf.hash │ │ └── waf.mk │ ├── waffle/ │ │ ├── 0001-cmake-forward-cflags-from-.pc-files-to-waffle-cflags.patch │ │ ├── Config.in │ │ ├── waffle.hash │ │ └── waffle.mk │ ├── wampcc/ │ │ ├── 0001-Add-RISC-V-endian-detection.patch │ │ ├── 0002-include-wampcc-platform.h-fix-build-with-musl-1.2.0.patch │ │ ├── 0003-Broken-build-on-Windows.patch │ │ ├── Config.in │ │ ├── wampcc.hash │ │ └── wampcc.mk │ ├── watchdog/ │ │ ├── Config.in │ │ ├── watchdog.hash │ │ └── watchdog.mk │ ├── watchdogd/ │ │ ├── Config.in │ │ ├── S01watchdogd │ │ ├── watchdogd.hash │ │ └── watchdogd.mk │ ├── wavemon/ │ │ ├── Config.in │ │ ├── wavemon.hash │ │ └── wavemon.mk │ ├── wavpack/ │ │ ├── Config.in │ │ ├── wavpack.hash │ │ └── wavpack.mk │ ├── wayland/ │ │ ├── 0001-build-add-option-to-disable-tests.patch │ │ ├── 0002-meson-only-require-cpp-for-tests.patch │ │ ├── Config.in │ │ ├── wayland.hash │ │ └── wayland.mk │ ├── wayland-protocols/ │ │ ├── 0001-meson.build-wayland-scanner-is-only-needed-for-tests.patch │ │ ├── Config.in │ │ ├── wayland-protocols.hash │ │ └── wayland-protocols.mk │ ├── wayland-utils/ │ │ ├── Config.in │ │ ├── wayland-utils.hash │ │ └── wayland-utils.mk │ ├── waylandpp/ │ │ ├── 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/ │ │ ├── Config.in │ │ ├── websocketpp.hash │ │ └── websocketpp.mk │ ├── weston/ │ │ ├── 0001-tests-include-fcntl.h-for-open-O_RDWR-O_CLOEXEC-and-.patch │ │ ├── 0002-libweston-backend-drm-might-need-EGL.patch │ │ ├── 0003-pipewire-add-support-for-0.3-API.patch │ │ ├── 0004-pipewire-fix-null-deref-in-0-3-API.patch │ │ ├── Config.in │ │ ├── weston.hash │ │ └── weston.mk │ ├── wf111/ │ │ ├── Config.in │ │ ├── wf111.hash │ │ └── wf111.mk │ ├── wget/ │ │ ├── 0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch │ │ ├── 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 │ ├── wireplumber/ │ │ ├── Config.in │ │ ├── wireplumber.hash │ │ └── wireplumber.mk │ ├── wireshark/ │ │ ├── 0001-cmake-lemon-wipe-CMAKE_-EXE_LINKER_FLAGS-SYSROOT-if-.patch │ │ ├── Config.in │ │ ├── wireshark.hash │ │ └── wireshark.mk │ ├── wlroots/ │ │ ├── 0001-Add-feature-macros-to-more-C-files-.patch │ │ ├── Config.in │ │ ├── wlroots.hash │ │ └── wlroots.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 │ │ ├── 0002-ASN.1-Validate-DigestAlgorithmIdentifier-parameters.patch │ │ ├── 0003-Include-stdbool.h-to-allow-C99-bool-to-be-used.patch │ │ ├── 0004-ASN.1-Add-helper-functions-for-recognizing-tag-value.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/ │ │ ├── Config.in │ │ ├── wpewebkit.hash │ │ └── wpewebkit.mk │ ├── wqy-zenhei/ │ │ ├── Config.in │ │ ├── wqy-zenhei.hash │ │ └── wqy-zenhei.mk │ ├── wsapi/ │ │ ├── Config.in │ │ ├── wsapi.hash │ │ └── wsapi.mk │ ├── wsapi-fcgi/ │ │ ├── Config.in │ │ ├── wsapi-fcgi.hash │ │ └── wsapi-fcgi.mk │ ├── wsapi-xavante/ │ │ ├── Config.in │ │ ├── wsapi-xavante.hash │ │ └── wsapi-xavante.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/ │ │ │ ├── Config.in │ │ │ ├── xapp_xinput.hash │ │ │ └── xapp_xinput.mk │ │ ├── xapp_xinput-calibrator/ │ │ │ ├── Config.in │ │ │ ├── xapp_xinput-calibrator.hash │ │ │ └── xapp_xinput-calibrator.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/ │ │ │ ├── Config.in │ │ │ ├── xcb-util.hash │ │ │ └── xcb-util.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 │ │ ├── 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/ │ │ │ ├── 0001-Fix-link-failure-with-gcc-10.patch │ │ │ ├── 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 │ │ │ ├── 0002-Use-own-thunk-functions-instead-of-fbdevHW-Weak.patch │ │ │ ├── 0003-Update-for-1.20-ABI.patch │ │ │ ├── 0004-xorg.conf-add-mandatory-modules-fb-shadow-fbdevhw.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-fbturbo.hash │ │ │ └── xdriver_xf86-video-fbturbo.mk │ │ ├── xdriver_xf86-video-geode/ │ │ │ ├── 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/ │ │ │ ├── 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-imx-viv/ │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-imx-viv.hash │ │ │ └── xdriver_xf86-video-imx-viv.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/ │ │ │ ├── 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/ │ │ │ ├── 0001-modesettings-needs-dri2.patch │ │ │ ├── 0002-include-misc.h-fix-uClibc-build.patch │ │ │ ├── 0003-hw-xwayland-Makefile.am-fix-build-without-glx.patch │ │ │ ├── 0004-hw-xfree86-common-xf86Init.c-fix-build-without-glx.patch │ │ │ ├── 0005-Fix-segfault-on-probing-a-non-PCI-platform-device-on.patch │ │ │ ├── 0006-compiler.h-don-t-define-inb-outb-and-friends-on-mips.patch │ │ │ ├── Config.in │ │ │ ├── S40xorg │ │ │ ├── xorg.service │ │ │ ├── xserver_xorg-server.hash │ │ │ └── xserver_xorg-server.mk │ │ └── xutil_makedepend/ │ │ ├── Config.in │ │ ├── xutil_makedepend.hash │ │ └── xutil_makedepend.mk │ ├── x11vnc/ │ │ ├── 0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch │ │ ├── 0002-scan-limit-access-to-shared-memory-segments-to-current-user.patch │ │ ├── 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-9pfs-include-linux-limits.h-for-XATTR_SIZE_MAX.patch │ │ ├── 0002-Fix-build-with-64-bits-time_t.patch │ │ ├── 0003-libs-light-fix-tv_sec-printf-format.patch │ │ ├── 0004-libs-light-fix-tv_sec-fprintf-format.patch │ │ ├── Config.in │ │ ├── xen.hash │ │ └── xen.mk │ ├── xenomai/ │ │ ├── 3.0.10/ │ │ │ ├── 0001-lib-boilerplate-iniparser-Allow-building-with-GCC-10-2-2020101.patch │ │ │ └── 0002-Add-disable-demo-testsuite-options.patch │ │ ├── Config.in │ │ ├── xenomai.hash │ │ └── xenomai.mk │ ├── xerces/ │ │ ├── 0001-fix-static-linking-with-curl.patch │ │ ├── 0002-InMemMsgLoader-loadMsg-fix-memory-leak-when-transcod.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 │ │ ├── 0005-CVE-2013-4342-xinetd-ignores-user-and-group-directiv.patch │ │ ├── Config.in │ │ ├── xinetd.hash │ │ └── xinetd.mk │ ├── xl2tp/ │ │ ├── Config.in │ │ ├── xl2tp.hash │ │ ├── xl2tp.mk │ │ └── xl2tpd │ ├── xml-security-c/ │ │ ├── 0001-autoconf-variable-cache-option-for-getcwd-test.patch │ │ ├── Config.in │ │ ├── xml-security-c.hash │ │ └── xml-security-c.mk │ ├── xmlstarlet/ │ │ ├── Config.in │ │ ├── xmlstarlet.hash │ │ └── xmlstarlet.mk │ ├── xmrig/ │ │ ├── Config.in │ │ ├── xmrig.hash │ │ └── xmrig.mk │ ├── xorcurses/ │ │ ├── Config.in │ │ ├── xorcurses.hash │ │ └── xorcurses.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-fix-build-with-gcc-10.patch │ │ ├── 0002-psmouse-back.c-fix-build-with-gcc-11.patch │ │ ├── Config.in │ │ ├── xvisor.hash │ │ └── xvisor.mk │ ├── xvkbd/ │ │ ├── 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.hash │ │ └── yavta.mk │ ├── ympd/ │ │ ├── 0001-only-c-language.patch │ │ ├── 0002-added-forward-declarations.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/ │ │ ├── Config.in │ │ ├── zeromq.hash │ │ └── zeromq.mk │ ├── zfs/ │ │ ├── Config.in │ │ ├── zfs.hash │ │ └── zfs.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 │ │ ├── 0008-fix-musl-static-build.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── zip.hash │ │ └── zip.mk │ ├── zisofs-tools/ │ │ ├── zisofs-tools.hash │ │ └── zisofs-tools.mk │ ├── zlib/ │ │ ├── Config.in │ │ └── zlib.mk │ ├── zlib-ng/ │ │ ├── zlib-ng.hash │ │ └── zlib-ng.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/ │ ├── Config.in │ ├── zziplib.hash │ └── zziplib.mk ├── support/ │ ├── config-fragments/ │ │ ├── autobuild/ │ │ │ ├── andes-nds32.config │ │ │ ├── arm-aarch64.config │ │ │ ├── bootlin-aarch64-glibc.config │ │ │ ├── bootlin-arcle-hs38-uclibc.config │ │ │ ├── bootlin-armv5-uclibc.config │ │ │ ├── bootlin-armv7-glibc.config │ │ │ ├── bootlin-armv7-musl.config │ │ │ ├── bootlin-armv7m-uclibc.config │ │ │ ├── bootlin-m68k-5208-uclibc.config │ │ │ ├── bootlin-m68k-68040-uclibc.config │ │ │ ├── bootlin-microblazeel-uclibc.config │ │ │ ├── bootlin-mipsel-uclibc.config │ │ │ ├── bootlin-mipsel32r6-glibc.config │ │ │ ├── bootlin-nios2-glibc.config │ │ │ ├── bootlin-openrisc-uclibc.config │ │ │ ├── bootlin-powerpc-e500mc-uclibc.config │ │ │ ├── bootlin-powerpc64le-power8-glibc.config │ │ │ ├── bootlin-riscv32-glibc.config │ │ │ ├── bootlin-riscv64-glibc.config │ │ │ ├── bootlin-riscv64-musl.config │ │ │ ├── bootlin-sh4-uclibc.config │ │ │ ├── bootlin-sparc-uclibc.config │ │ │ ├── bootlin-sparc64-glibc.config │ │ │ ├── bootlin-x86-64-glibc.config │ │ │ ├── bootlin-x86-64-musl.config │ │ │ ├── bootlin-x86-64-uclibc.config │ │ │ ├── bootlin-xtensa-uclibc.config │ │ │ ├── br-arc-full-internal.config │ │ │ ├── br-arc-internal-glibc.config │ │ │ ├── br-arm-basic.config │ │ │ ├── br-arm-full-nothread.config │ │ │ ├── br-arm-full-static.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-microblazeel-full-internal.config │ │ │ ├── br-mips64-n64-full.config │ │ │ ├── br-mips64r6-el-hf-glibc.config │ │ │ ├── br-powerpc-603e-basic-cpp.config │ │ │ ├── br-powerpc-internal-full.config │ │ │ ├── br-powerpc64-power7-glibc.config │ │ │ ├── br-riscv64-full-internal.config │ │ │ ├── br-s390x-z13-internal-glibc.config │ │ │ ├── br-xtensa-full-internal.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 │ │ │ └── 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 │ │ ├── cargo-post-process │ │ ├── check-hash │ │ ├── cvs │ │ ├── dl-wrapper │ │ ├── file │ │ ├── git │ │ ├── helpers │ │ ├── hg │ │ ├── scp │ │ ├── svn │ │ └── wget │ ├── gnuconfig/ │ │ ├── README.buildroot │ │ ├── config.guess │ │ ├── config.sub │ │ └── update │ ├── 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 │ │ ├── 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 │ │ ├── gen-glibc-locales.mk │ │ ├── gitlab-ci.yml.in │ │ ├── relocate-sdk.sh │ │ ├── target-dir-warning.txt │ │ ├── toolchainfile.cmake.in │ │ └── utils.mk │ ├── scripts/ │ │ ├── apply-patches.sh │ │ ├── boot-qemu-image.py │ │ ├── br2-external │ │ ├── brpkgutil.py │ │ ├── check-bin-arch │ │ ├── check-dotconfig.py │ │ ├── check-host-rpath │ │ ├── check-kernel-headers.sh │ │ ├── check-merged-usr.sh │ │ ├── cpedb.py │ │ ├── cve.py │ │ ├── eclipse-register-toolchain │ │ ├── expunge-gconv-modules │ │ ├── fix-configure-powerpc64.sh │ │ ├── fix-rpath │ │ ├── gen-bootlin-toolchains │ │ ├── gen-missing-cpe │ │ ├── generate-gitlab-ci-yml │ │ ├── genimage.sh │ │ ├── graph-build-time │ │ ├── graph-depends │ │ ├── hardlink-or-copy │ │ ├── mkimage.sh │ │ ├── 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-efi.cfg │ │ ├── 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 │ │ ├── test_edk2.py │ │ └── test_syslinux.py │ ├── core/ │ │ ├── __init__.py │ │ ├── br2-external/ │ │ │ └── detect-bad-arch/ │ │ │ ├── Config.in │ │ │ ├── external.desc │ │ │ ├── external.mk │ │ │ └── package/ │ │ │ └── detect-bad-arch/ │ │ │ ├── Config.in │ │ │ └── detect-bad-arch.mk │ │ ├── cpeid-br2-external/ │ │ │ ├── Config.in │ │ │ ├── external.desc │ │ │ ├── external.mk │ │ │ └── package/ │ │ │ ├── cpe-id-pkg1/ │ │ │ │ └── cpe-id-pkg1.mk │ │ │ ├── cpe-id-pkg2/ │ │ │ │ └── cpe-id-pkg2.mk │ │ │ ├── cpe-id-pkg3/ │ │ │ │ └── cpe-id-pkg3.mk │ │ │ ├── cpe-id-pkg4/ │ │ │ │ └── cpe-id-pkg4.mk │ │ │ └── cpe-id-pkg5/ │ │ │ └── cpe-id-pkg5.mk │ │ ├── device_table2.txt │ │ ├── post-build.sh │ │ ├── rootfs-overlay1/ │ │ │ └── test-file1 │ │ ├── rootfs-overlay2/ │ │ │ └── etc/ │ │ │ └── test-file2 │ │ ├── squashfs-xattr-kernel.config │ │ ├── test_bad_arch.py │ │ ├── test_cpeid.py │ │ ├── test_file_capabilities.py │ │ ├── test_hardening.py │ │ ├── test_post_scripts.py │ │ ├── test_root_password.py │ │ ├── test_rootfs_overlay.py │ │ ├── test_selinux/ │ │ │ ├── br2_external/ │ │ │ │ ├── Config.in │ │ │ │ ├── external.desc │ │ │ │ ├── external.mk │ │ │ │ └── package/ │ │ │ │ └── selinux-test/ │ │ │ │ ├── Config.in │ │ │ │ ├── selinux/ │ │ │ │ │ ├── buildroot.fc │ │ │ │ │ ├── buildroot.if │ │ │ │ │ └── buildroot.te │ │ │ │ └── selinux-test.mk │ │ │ └── extra_modules/ │ │ │ ├── buildroot.fc │ │ │ ├── buildroot.if │ │ │ └── buildroot.te │ │ ├── test_selinux.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/ │ │ │ │ │ ├── 07/ │ │ │ │ │ │ └── cabc655213bdf7087d8dd50fda95124e935570 │ │ │ │ │ ├── 1d/ │ │ │ │ │ │ └── f823cb8a6d1866148ae50a8009762a9c4c777f │ │ │ │ │ ├── 7d/ │ │ │ │ │ │ └── 52f458bdb0f9f5a4beb46fa82824421b8b988e │ │ │ │ │ ├── 99/ │ │ │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ │ │ ├── a1/ │ │ │ │ │ │ └── 30af1626bbadd64841b2cbcb6ac4ed0638ba1a │ │ │ │ │ ├── bc/ │ │ │ │ │ │ └── c81ba6e5bd8bf52c95688ae8d3e697e131fa23 │ │ │ │ │ ├── cb/ │ │ │ │ │ │ └── 545facf77bbc5f24f95b6d503c338d10b7b717 │ │ │ │ │ ├── dd/ │ │ │ │ │ │ └── 130f6f4629514adaf2e03407f3ed9344eb6cd6 │ │ │ │ │ ├── e7/ │ │ │ │ │ │ └── 9c5e8f964493290a409888d5413a737e8e5dd5 │ │ │ │ │ └── f8/ │ │ │ │ │ └── 001e5780100962a5e30a25cbc4c9609cfc7bf3 │ │ │ │ └── refs/ │ │ │ │ └── heads/ │ │ │ │ └── submodule │ │ │ ├── refs-sub2.git/ │ │ │ │ ├── .gitattributes │ │ │ │ ├── HEAD │ │ │ │ ├── config │ │ │ │ ├── objects/ │ │ │ │ │ ├── 0a/ │ │ │ │ │ │ └── 846af45c3e455789435f49f80d70e86b65b9d7 │ │ │ │ │ ├── 0b/ │ │ │ │ │ │ └── 32ebd8fc52cec991f18c94be980e85a8341585 │ │ │ │ │ ├── 32/ │ │ │ │ │ │ └── d61bae693af7879da63b89a60d3ae67f851e56 │ │ │ │ │ ├── 3e/ │ │ │ │ │ │ └── 9b0a5198c64cea9c00f820433411e3b4d50c1c │ │ │ │ │ ├── 85/ │ │ │ │ │ │ └── 8f666af75b7c0dfba6b8be7eac5f196e7a1221 │ │ │ │ │ ├── 99/ │ │ │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ │ │ ├── cd/ │ │ │ │ │ │ └── 4d62ff218ab7b4a04f5bfdf800ace087af3ceb │ │ │ │ │ ├── e7/ │ │ │ │ │ │ └── 9c5e8f964493290a409888d5413a737e8e5dd5 │ │ │ │ │ └── e8/ │ │ │ │ │ └── 3f6f805bd016b90acafc8702c52d778eb57310 │ │ │ │ └── refs/ │ │ │ │ └── heads/ │ │ │ │ └── submodule │ │ │ └── repo.git/ │ │ │ ├── .gitattributes │ │ │ ├── HEAD │ │ │ ├── config │ │ │ ├── objects/ │ │ │ │ ├── 0b/ │ │ │ │ │ └── d8ceb961c3b2b210f64a67d57f4b5cd669d343 │ │ │ │ ├── 11/ │ │ │ │ │ └── 93ff46343f4f6a0522e2b28b871e905178c1f0 │ │ │ │ ├── 25/ │ │ │ │ │ └── 59d83bfe937fc0412d96ed664663c9e8a99055 │ │ │ │ ├── 2b/ │ │ │ │ │ └── 0e0d98a49c97da6a618ab36337e2058eb733a2 │ │ │ │ ├── 2f/ │ │ │ │ │ └── a37f6885d7eb746df75eccaddbacf3ac82799d │ │ │ │ ├── 31/ │ │ │ │ │ └── 7406308d9259e2231bd0d6ddad3de3832bce08 │ │ │ │ ├── 34/ │ │ │ │ │ └── d1da713bf7de1c535e1d7d3ca985afd84bc7e5 │ │ │ │ ├── 46/ │ │ │ │ │ └── bae5b639e5a18e2cc4dc508f080d566baeff59 │ │ │ │ ├── 51/ │ │ │ │ │ └── 6c9c5f64ec66534d4d069c2e408d9ae4dce023 │ │ │ │ ├── 68/ │ │ │ │ │ └── c197d0879d485f4f6cee85544722b79e68e59f │ │ │ │ ├── 8b/ │ │ │ │ │ └── 8a7e885a041da72b1ee9a47c5b9300b172a9e7 │ │ │ │ ├── 92/ │ │ │ │ │ └── ef85be57d627f280d8ce3724452ac21c9a6452 │ │ │ │ ├── 99/ │ │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ │ ├── 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_oci.py │ │ ├── test_squashfs.py │ │ ├── test_ubi/ │ │ │ └── ubinize_qemu_pflash_cfi01.cfg │ │ ├── test_ubi.py │ │ └── test_yaffs2.py │ ├── init/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── systemd-factory/ │ │ │ └── var/ │ │ │ └── foo/ │ │ │ └── bar │ │ ├── test_busybox.py │ │ ├── test_none.py │ │ ├── test_openrc.py │ │ ├── test_systemd.py │ │ ├── test_systemd_selinux/ │ │ │ └── linux-squashfs.fragment │ │ └── test_systemd_selinux.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 │ │ │ └── polkit/ │ │ │ ├── Config.in │ │ │ ├── external.desc │ │ │ ├── external.mk │ │ │ └── package/ │ │ │ └── polkit-rules-test/ │ │ │ ├── Config.in │ │ │ ├── initd/ │ │ │ │ ├── hello-polkit.c │ │ │ │ ├── hello-polkit.policy │ │ │ │ └── hello-polkit.rules │ │ │ ├── polkit-rules-test.mk │ │ │ └── systemd/ │ │ │ └── systemd-timesyncd-restart.rules │ │ ├── copy-sample-script-to-target.sh │ │ ├── sample_bmap_tools.sh │ │ ├── sample_gst1_python.py │ │ ├── sample_libftdi1.py │ │ ├── sample_python_argh.py │ │ ├── sample_python_attrs.py │ │ ├── sample_python_augeas.py │ │ ├── sample_python_autobahn.py │ │ ├── sample_python_automat.py │ │ ├── sample_python_avro.py │ │ ├── sample_python_bitstring.py │ │ ├── sample_python_boto3.py │ │ ├── sample_python_botocore.py │ │ ├── sample_python_can.py │ │ ├── sample_python_cbor_dec.py │ │ ├── sample_python_cbor_enc.py │ │ ├── sample_python_click.py │ │ ├── sample_python_colorzero.py │ │ ├── sample_python_constantly.py │ │ ├── sample_python_crossbar.py │ │ ├── sample_python_cryptography.py │ │ ├── sample_python_dbus_fast.py │ │ ├── sample_python_dbus_next.py │ │ ├── sample_python_django.py │ │ ├── sample_python_flask.py │ │ ├── sample_python_flask_expects_json.py │ │ ├── sample_python_git.py │ │ ├── sample_python_gitdb2.py │ │ ├── sample_python_gobject.py │ │ ├── sample_python_gpiozero.py │ │ ├── sample_python_incremental.py │ │ ├── sample_python_passlib.py │ │ ├── sample_python_pexpect.py │ │ ├── sample_python_pynacl.py │ │ ├── sample_python_pytest.py │ │ ├── sample_python_pytest_asyncio.py │ │ ├── sample_python_pyyaml_dec.py │ │ ├── sample_python_pyyaml_enc.py │ │ ├── sample_python_rpi_gpio.py │ │ ├── sample_python_rsa.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 │ │ ├── sample_python_unittest_xml_reporting.py │ │ ├── test_atop.py │ │ ├── test_bmap_tools.py │ │ ├── test_crudini.py │ │ ├── test_docker_compose.py │ │ ├── test_dropbear.py │ │ ├── test_dtbocfg.py │ │ ├── test_execline.py │ │ ├── test_gdb.py │ │ ├── test_glxinfo/ │ │ │ └── rootfs-overlay/ │ │ │ └── etc/ │ │ │ └── X11/ │ │ │ └── xorg.conf.d/ │ │ │ └── 01-modules.conf │ │ ├── test_glxinfo.py │ │ ├── test_gst1_python.py │ │ ├── test_ipython.py │ │ ├── test_libftdi1.py │ │ ├── test_lpeg.py │ │ ├── test_lsqlite3.py │ │ ├── test_lua.py │ │ ├── test_lua_augeas.py │ │ ├── test_lua_cqueues.py │ │ ├── test_lua_curl.py │ │ ├── test_lua_gd.py │ │ ├── test_lua_http.py │ │ ├── test_lua_lunix.py │ │ ├── test_lua_lyaml.py │ │ ├── test_lua_sdl2.py │ │ ├── test_lua_utf8.py │ │ ├── test_lua_zlib.py │ │ ├── test_luaexpat.py │ │ ├── test_luafilesystem.py │ │ ├── test_lualdap.py │ │ ├── test_luaossl.py │ │ ├── test_luaposix.py │ │ ├── test_luasec.py │ │ ├── test_luasocket.py │ │ ├── test_luasyslog.py │ │ ├── test_luvi.py │ │ ├── test_lxc/ │ │ │ ├── lxc-kernel.config │ │ │ └── rootfs-overlay/ │ │ │ └── usr/ │ │ │ ├── bin/ │ │ │ │ └── iperf3.sh │ │ │ └── share/ │ │ │ └── lxc/ │ │ │ └── config/ │ │ │ ├── minimal-iperf3.conf │ │ │ └── minimal.conf │ │ ├── test_lxc.py │ │ ├── test_lzlib.py │ │ ├── test_netdata.py │ │ ├── test_openjdk.py │ │ ├── test_openssh/ │ │ │ └── post-build.sh │ │ ├── test_openssh.py │ │ ├── test_opkg/ │ │ │ └── post-build.sh │ │ ├── test_opkg.py │ │ ├── test_perl.py │ │ ├── test_perl_class_load.py │ │ ├── test_perl_dbd_mysql.py │ │ ├── test_perl_encode_detect.py │ │ ├── test_perl_gdgraph.py │ │ ├── test_perl_html_parser.py │ │ ├── test_perl_io_socket_multicast.py │ │ ├── test_perl_io_socket_ssl.py │ │ ├── test_perl_libwww_perl.py │ │ ├── test_perl_lwp_protocol_https.py │ │ ├── test_perl_mail_dkim.py │ │ ├── test_perl_x10.py │ │ ├── test_perl_xml_libxml.py │ │ ├── test_php_pecl_dbus.py │ │ ├── test_polkit.py │ │ ├── test_prosody.py │ │ ├── test_python.py │ │ ├── test_python_argh.py │ │ ├── test_python_attrs.py │ │ ├── test_python_augeas.py │ │ ├── test_python_autobahn.py │ │ ├── test_python_automat.py │ │ ├── test_python_avro.py │ │ ├── test_python_bitstring.py │ │ ├── test_python_boto3.py │ │ ├── test_python_botocore.py │ │ ├── test_python_can.py │ │ ├── test_python_cbor.py │ │ ├── test_python_click.py │ │ ├── test_python_colorzero.py │ │ ├── test_python_constantly.py │ │ ├── test_python_crossbar.py │ │ ├── test_python_cryptography.py │ │ ├── test_python_dbus_fast.py │ │ ├── test_python_dbus_next.py │ │ ├── test_python_django.py │ │ ├── test_python_flask.py │ │ ├── test_python_flask_expects_json.py │ │ ├── test_python_git.py │ │ ├── test_python_gitdb2.py │ │ ├── test_python_gobject.py │ │ ├── test_python_gpiozero.py │ │ ├── test_python_incremental.py │ │ ├── test_python_passlib.py │ │ ├── test_python_pexpect.py │ │ ├── test_python_pynacl.py │ │ ├── test_python_pyndiff.py │ │ ├── test_python_pytest.py │ │ ├── test_python_pytest_asyncio.py │ │ ├── test_python_pyyaml.py │ │ ├── test_python_rpi_gpio.py │ │ ├── test_python_rsa.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_python_unittest_xml_reporting.py │ │ ├── test_redis.py │ │ ├── test_rings.py │ │ ├── test_rust.py │ │ ├── test_s6.py │ │ ├── test_s6_networking.py │ │ ├── test_s6_portable_utils.py │ │ ├── test_s6_rc.py │ │ ├── test_sudo.py │ │ ├── test_syslog_ng.py │ │ ├── test_tmux.py │ │ ├── test_turbolua.py │ │ ├── test_uboot_openssl_pkgconfig.py │ │ └── test_zfs.py │ ├── toolchain/ │ │ ├── __init__.py │ │ ├── test_external.py │ │ └── test_external_bootlin.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 │ │ ├── etc/ │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── passwd │ │ │ ├── profile │ │ │ ├── profile.d/ │ │ │ │ └── umask.sh │ │ │ ├── protocols │ │ │ ├── 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/ │ │ └── toolchain.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/ │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-arm-aarch64.hash │ │ │ └── toolchain-external-arm-aarch64.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-arm/ │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-arm-arm.hash │ │ │ └── toolchain-external-arm-arm.mk │ │ ├── toolchain-external-bootlin/ │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-bootlin.hash │ │ │ └── toolchain-external-bootlin.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-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/ │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-linaro-aarch64.hash │ │ │ └── toolchain-external-linaro-aarch64.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-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 ├── 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 └── writeimage.sh