├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── pull_request_template.md └── stale.yml ├── .gitignore ├── .gitreview ├── .templateconf ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── bitbake ├── meta ├── meta-alibaba ├── OWNERS ├── conf │ └── layer.conf ├── meta-comm-oem │ └── recipes-phosphor │ │ └── packagegroups │ │ └── packagegroup-alibaba-apps.bb └── meta-thor │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── thor.conf │ └── recipes-bsp │ └── linux │ ├── linux-aspeed │ ├── alibaba.cfg │ └── aspeed-alibaba-thor.dts │ └── linux-aspeed_%.bbappend ├── meta-amd ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── conf │ └── layer.conf ├── meta-common │ ├── recipes-amd │ │ ├── amd-apml │ │ │ ├── amd-apml.bb │ │ │ └── files │ │ │ │ └── 0001-amd-apml-Enable-apml-library-with-i3c.patch │ │ ├── amd-clear-cmos │ │ │ ├── amd-clear-cmos.bb │ │ │ └── files │ │ │ │ └── amd-clear-cmos.sh │ │ ├── amd-dimm │ │ │ ├── amd-dimm.bb │ │ │ └── files │ │ │ │ ├── dimm-info.service │ │ │ │ ├── dimm-info.sh │ │ │ │ ├── dimm-pmic-data.sh │ │ │ │ ├── dimm-pmic-err.sh │ │ │ │ ├── dimm-re-bind.sh │ │ │ │ └── dimm-spd-data.sh │ │ ├── amd-lcd-lib │ │ │ └── amd-lcd-lib.bb │ │ ├── amd-mctp-tool │ │ │ ├── amd-mctp-tool.bb │ │ │ └── files │ │ │ │ ├── amd-mctp-tool.c │ │ │ │ └── amd-mctp-tool.h │ │ ├── amd-mdc-sdu │ │ │ └── amd-mdc-sdu.bb │ │ ├── amd-ras │ │ │ └── amd-ras.bb │ │ ├── bmc-retimer-update │ │ │ ├── bmc-retimer-update.bb │ │ │ └── libaries-retimer.bb │ │ ├── cpu-info │ │ │ └── cpu-info.bb │ │ ├── debug-apps │ │ │ ├── debug-apps.bb │ │ │ └── files │ │ │ │ ├── AMI_MG9100_001_ALL_PCIE.sh │ │ │ │ ├── AMI_MG9100_001_Update_CFRU_S16_23_SATA.sh │ │ │ │ ├── Makefile │ │ │ │ ├── aspeed-espi.h │ │ │ │ ├── get-Lenovo-bp-config.sh │ │ │ │ ├── mafs-test.c │ │ │ │ ├── mg9100test_RL20220323_1709 │ │ │ │ ├── oob-pch-test.c │ │ │ │ ├── oob-test.c │ │ │ │ ├── perif-test.c │ │ │ │ ├── safs-addr-translator.service │ │ │ │ ├── safs-test.c │ │ │ │ ├── set-Lenovo-fp-led.sh │ │ │ │ ├── sm-test.c │ │ │ │ ├── ubm_fru_update │ │ │ │ └── vw-test.c │ │ ├── i3c-tools │ │ │ └── i3c-tools.bb │ │ ├── packagegroups │ │ │ └── packagegroup-amd-apps.bb │ │ ├── power-capping │ │ │ └── power-capping.bb │ │ ├── usb-network │ │ │ ├── files │ │ │ │ ├── 00-bmc-usb0.network │ │ │ │ └── usb_network.service │ │ │ └── usb-network.bb │ │ └── vr-update │ │ │ └── vr-update.bb │ ├── recipes-bsp │ │ └── u-boot │ │ │ ├── files │ │ │ ├── 0001-u-boot-aspeed-sdk-add-Initial-Hawaii-device-tree.patch │ │ │ ├── 0002-u-boot-aspeed-sdk-add-spi-nor-MT25Q01G-set-MAC-addr-BMC-Root-cause.patch │ │ │ ├── 0003-u-boot-aspeed-sdk-add-platform-based-board_id-and-hostname.patch │ │ │ ├── 0004-u-boot-aspeed-sdk-modify-Platform-based-device-tree-selection.patch │ │ │ ├── 0005-u-boot-add-new-env-param-for-all-platforms.patch │ │ │ ├── 0006-u-boot-Turin-APML-over-i2c-i3c.patch │ │ │ ├── 0007-u-boot-SP5-APML-over-i2c-i3c.patch │ │ │ ├── 0008-u-boot-Add-Turin-Volcano-with-4-Pump-Fans.patch │ │ │ ├── 0009-u-boot-Boot-from-first-DTB-on-unknown-board-ID.patch │ │ │ ├── 0010-u-boot-Add-Board-rev-to-UBOOT-parameters.patch │ │ │ ├── 0011-u-boot-Add-enable-gpios-to-mount-Lanai-flash.patch │ │ │ ├── 0012-u-boot-Add-env-variable-for-SAFS-boot.patch │ │ │ └── amd-ast2600-u-boot.cfg │ │ │ └── u-boot-aspeed-sdk_%.bbappend │ ├── recipes-connectivity │ │ └── openssl │ │ │ └── openssl_1.1.1k.bbappend │ ├── recipes-core │ │ ├── base-files │ │ │ └── base-files_%.bbappend │ │ └── systemd │ │ │ ├── systemd-conf │ │ │ ├── 00-bmc-eth0.network │ │ │ └── 00-bmc-eth1.network │ │ │ ├── systemd-conf_%.bbappend │ │ │ ├── systemd │ │ │ └── 0001-recipes-core-systemd-Modify-default-hostname-setup-logic.patch │ │ │ └── systemd_%.bbappend │ ├── recipes-extended │ │ └── rsyslog │ │ │ ├── rsyslog │ │ │ ├── rotate-event-logs.service │ │ │ ├── rotate-event-logs.sh │ │ │ ├── rsyslog-override.conf │ │ │ ├── rsyslog.conf │ │ │ └── rsyslog.logrotate │ │ │ └── rsyslog_%.bbappend │ ├── recipes-graphics │ │ └── obmc-ikvm │ │ │ ├── files │ │ │ ├── 0001-obmc-ikvm-server-set-to-listen-on-any-interface.patch │ │ │ └── 0002-upstream-sync-jan-2023.patch │ │ │ └── obmc-ikvm_git.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ ├── 0001-drivers-soc-aspeed-Add-MCTP-driver.patch │ │ │ ├── 0002-drivers-i3c-Modify-I3C-driver.patch │ │ │ ├── 0003-drivers-soc-aspeed-Add-eSPI-drivers.patch │ │ │ ├── 0004-drivers-jtag-Add-JTAG-driver.patch │ │ │ ├── 0005-drivers-soc-Add-uart-DMA-driver.patch │ │ │ ├── 0006-drivers-soc-aspeed-Add-UART-Routing-driver.patch │ │ │ ├── 0007-drivers-media-Ignore-known-bogus-interrupts-in-Video.patch │ │ │ ├── 0008-drivers-hwmon-Add-amd_cpld-and-emc2301-fan-sensor-dr.patch │ │ │ ├── 0009-drivers-hwmon-Add-tmp468-temperature-sensor-driver.patch │ │ │ ├── 0010-drivers-mtd-Add-support-for-gigadevice-and-macronix-.patch │ │ │ ├── 0011-drivers-hwmon-Extend-support-for-infineon-xdpe19283-.patch │ │ │ ├── 0012-drivers-net-Suppress-warning-message-from-network-dr.patch │ │ │ ├── 0013-drivers-i2c-Hack-to-restrict-i2c-bus-to-50-KHz-for-l.patch │ │ │ ├── 0014-linux-aspeed-modify-MP2975-VR-driver-to-support-MP2862-controller.patch │ │ │ ├── 0015-drivers-misc-Add-APML-SB-TSI-and-SB-RMI-drivers.patch │ │ │ ├── 0016-ARM-dts-aspeed-Initial-device-tree-for-AMD-Genoa-Pla.patch │ │ │ ├── 0017-ARM-dts-aspeed-Initial-device-tree-for-AMD-Siena-Pla.patch │ │ │ ├── 0018-ARM-dts-aspeed-Initial-device-tree-for-AMD-Turin-Pla.patch │ │ │ ├── 0019-ARM-dts-aspeed-Initial-device-tree-for-AMD-MI-300-Pl.patch │ │ │ ├── 0020-ARM-dts-aspeed-Add-UART-routing-to-Turin.patch │ │ │ ├── 0021-drivers-hwmon-add-aspeed-chassis-driver.patch │ │ │ ├── 0022-ARM-dts-aspeed-Initial-device-tree-for-Galena-Recluse.patch │ │ │ ├── 0023-ARM-dts-aspeed-initial-Huambo-DTS-file-for-AMD-Turin.patch │ │ │ ├── 0024-drivers-hwmon-Add-nct7362-fan-controller-driver.patch │ │ │ ├── 0025-ARM-dts-aspeed-Add-new-HWMON-for-Turin-Lenovo.patch │ │ │ ├── 0026-ARM-dts-aspeed-Add-UART-routing-to-sh5.patch │ │ │ ├── 0027-drivers-hwmon-modify-nct7362-driver-for-setting-default-pwm.patch │ │ │ ├── 0028-ARM-dts-aspeed-modify-Volcano-device-tree-for-VR-device-id.patch │ │ │ ├── 0029-linux-aspeed-modify-sh5d807-device-tree-for-VR-sensors.patch │ │ │ ├── 0030-linux-aspeed-driver-Modify-disable-watchdog-timer-in-nct7362.patch │ │ │ ├── 0031-ARM-dts-aspeed-Initial-device-tree-for-AMD-G304-Plat.patch │ │ │ ├── 0032-ARM-dts-aspeed-Add-Volcano-sensors.patch │ │ │ ├── 0033-ARM-dts-aspeed-APML-over-I2C.patch │ │ │ ├── 0034-drivers-usb-gadget-aspeed-virtual-hub-updates.patch │ │ │ ├── 0035-ARM-dts-aspeed-Add-Turin-Lenovo-UBM.patch │ │ │ ├── 0036-ARM-dts-aspeed-Turin-APML-over-i2c-i3c-DTS-changes.patch │ │ │ ├── 0037-ARM-dts-aspeed-SP5-APML-over-i2c-i3c.patch │ │ │ ├── 0038-linux-aspeed-driver-i2c-Add-i2c-slave-backend-driver.patch │ │ │ ├── 0039-apml_sbrmi-Wait-for-fops-to-complete-cleanly-on-devi.patch │ │ │ ├── 0040-Add-TDA-voltage-regulators-to-dts.patch │ │ │ ├── 0041-ARM-dts-aspeed-Modify-Genoa-device-trees-for-i2c-slave.patch │ │ │ ├── 0042-Add-LM95234-to-dts-file.patch │ │ │ ├── 0043-ARM-dts-aspeed-Add-Riser-PSU-FP-sensors-to-Turin-Lenovo.patch │ │ │ ├── 0044-ARM-dts-Add-Thermtrip-RSMRST-i3c-at-6MHz-DIMM-Ch1-to-Turin.patch │ │ │ ├── 0045-ARM-dts-aspeed-Enable-eSPI-UART-and-COM-port.patch │ │ │ ├── 0046-ARM-dts-aspeed-Enable-eSPI-UART-and-COM-port-for-Tur.patch │ │ │ ├── 0047-ARM-DTS-Aspeed-Modify-I3c-and-UDC-device-node-enable-with-G304.patch │ │ │ ├── 0048-Added-Aspeed-BMC-device-drivers-from-Aspeed-Tech-ups.patch │ │ │ ├── 0049-Enabled-BMC-device-and-configuration-for-SP5-and-SP6.patch │ │ │ ├── 0050-ARM-dts-aspeed-MP2857-VR-Purico-dts-file-for-AMD-Turin.patch │ │ │ ├── 0051-drivers-hwmon-Add-mp2857-vr-driver.patch │ │ │ ├── 0052-linux-aspeed-driver-Add-aspeed_udc-driver-for-BMC-USB-Device.patch │ │ │ ├── 0053-ARM-DTS-aspped-Add-usb-device-node-for-G304-platfom.patch │ │ │ ├── 0054-ARM-DTS-aspeed-Modify-g304-dts-for-SPI2-Single-mode.patch │ │ │ ├── 0055-apml_sbrmi-Use-API-provided-by-linux-to-set-and-clea.patch │ │ │ ├── 0056-apml_sbrmi-Add-New-member-sock_num-to-the-rmi-device.patch │ │ │ ├── 0057-apml_sbrmi-Add-support-to-identify-register-address-.patch │ │ │ ├── 0058-sbrmi-Implement-CPUID-and-MCAMSR-protocol-for-rev-0x.patch │ │ │ ├── 0059-drivers-jtag-Add-support-for-hardware-mode-2.patch │ │ │ ├── 0060-linux-aspeed-change-DIMM-i3c-freq-to-2-MHz.patch │ │ │ ├── 0061-ARM-dts-aspeed-Add-eSPI-peripheral-and-flash-channel.patch │ │ │ ├── 0062-DTS-changes-to-map-GPIO-line-P0_PRESENT_L-and-P1_PRE.patch │ │ │ ├── 0063-ARM-dts-aspeed-Enabled-BMC-device-for-I3c-DTS-file.patch │ │ │ ├── 0064-drivers-soc-aspeed-Increased-DMA-buffer-size.patch │ │ │ ├── 0065-ARM-dts-aspeed-Add-Turin-U3-i2c-buses.patch │ │ │ ├── 0066-recipes-kernel-linux-Add-support-for-Winbond-w25q01j.patch │ │ │ ├── 0067-Add-MPS-driver-for-Purico-VR-in-dts.patch │ │ │ ├── 0068-Add-MP2857-VR-driver.patch │ │ │ ├── 0069-linux-speed-Remove-debug-prints-from-i3c-driver.patch │ │ │ ├── 0070-arm-dts-aspeed-enable-safs-mix-mode.patch │ │ │ ├── 0071-recipes-kernel-Enable-i2c-slave-backend-device.patch │ │ │ ├── 0072-Remove-VR-at-slave-address-0x60-for-chalupa-platform.patch │ │ │ ├── 0073-arm-dts-aspeed-modify-sh5-device-tree-for-VRs-DIMM-and-adc.patch │ │ │ ├── 0074-Add-TDA-VR-devices-to-dts-for-turin.patch │ │ │ ├── 0075-drivers-mtd-spi-Add-support-for-GD55-SPI.patch │ │ │ ├── 0076-ARM-dts-aspeed-Add-Turin-FP-ID-Button-to-GPIO.patch │ │ │ ├── 0077-Add-sic458-VR-driver.patch │ │ │ ├── 0078-Add-sic458-driver-for-Purico-VR-in-dts.patch │ │ │ ├── 0079-Replace-i2c-address-with-pmbus-address-for-TDA-VR.patch │ │ │ ├── 0080-drivers-soc-Modify-aspeed-bmc-dev-driver-read-to-wak.patch │ │ │ ├── 0081-ARM-dts-aspeed-Turin-Add-MON_RSMRST_L-line-to-GPIO-G.patch │ │ │ ├── 0082-Map-RSMRST-GPIO-line-for-Genoa-legacy-boards.patch │ │ │ ├── 0083-ARM-dts-aspeed-Genoa-Add-MON_RSMRST_L-to-GPIO-G7.patch │ │ │ ├── 0084-linux-aspeed-port-new-i3c-driver-from-aspeed-repo.patch │ │ │ ├── 0085-linux-aspeed-dts-changes-for-new-i3c-driver.patch │ │ │ ├── 0086-drivers-mtd-Add-support-for-Gigadevice-GD25LB-series.patch │ │ │ ├── 0087-recipes-kernel-linux-linux-aspeed-SPDM-driver-update.patch │ │ │ ├── 0088-recipes-kernel-linux-aspeed-Device-name-changed.patch │ │ │ ├── 0089-recipes-kernel-linux-aspeed-corrected-compatible-sla.patch │ │ │ ├── 0090-sbrmi-check-for-DIMM-MR4-Reg-for-Temp-range.patch │ │ │ ├── 0091-mp2857-Purico-do-not-init-VR-reg-in-driver-prob.patch │ │ │ ├── 0092-drivers-mtd-Added-GD25LR512-SPI-from-Gigadevice.patch │ │ │ ├── 0093-ARM-dts-aspeed-Add-eSPI-SAFS-to-AMD-IRME-platforms.patch │ │ │ ├── 0094-sbrmi-Add-additional-error-code-0x5.patch │ │ │ └── amd-bmc-baseline.cfg │ │ │ └── linux-aspeed_%.bbappend │ ├── recipes-phosphor │ │ ├── clear-once │ │ │ ├── clear-once.bbappend │ │ │ └── files │ │ │ │ └── clear-once.service │ │ ├── configuration │ │ │ ├── entity-manager │ │ │ │ └── blocklist.json │ │ │ └── entity-manager_%.bbappend │ │ ├── console │ │ │ ├── obmc-console │ │ │ │ ├── 0001-Route-io1-to-uart1.patch │ │ │ │ ├── client.2200.conf │ │ │ │ ├── client.2201.conf │ │ │ │ ├── server.ttyS0.conf │ │ │ │ └── server.ttyVUART0.conf │ │ │ └── obmc-console_%.bbappend │ │ ├── dbus │ │ │ ├── phosphor-dbus-interfaces-mapper-config-native.bbappend │ │ │ ├── phosphor-dbus-interfaces │ │ │ │ ├── 0001-recipes-phosphor-dbus-Add-enumeration-SCM_FPGA-for-v.patch │ │ │ │ ├── 0002-recipes-phosphor-dbus-Add-enumeration-HPM_FPGA-for.patch │ │ │ │ ├── 0003-recipe-phosphor-dbus-interfaces-Adding-VR-Support.patch │ │ │ │ ├── 0004-add-retimer-fw-update-support.patch │ │ │ │ ├── 0005-New-DBus-property-has-been-added-for-CPU-info.patch │ │ │ │ ├── 0006-recipes-phosphor-dbus-Add-DIMM-Info-param.patch │ │ │ │ ├── 0007-recipe-phosphor-dbus-Added-processor-DBus-property.patch │ │ │ │ ├── 0008-phosphor-dbus-interfaces-Added-PPIN-entry.patch │ │ │ │ ├── 0009-Power-cap-CPUID1-and-CPUID2-will-not-be-used-for-CPU.patch │ │ │ │ ├── 0010-Added-configuration-for-VR-Bundle-Update.patch │ │ │ │ ├── 0011-add-support-for-bp-fw-update.patch │ │ │ │ ├── 0012-Added-Present-property-to-check-processor-present.patch │ │ │ │ ├── 0013-Add-a-new-Post-Package-Repair-Interface.patch │ │ │ │ ├── 0014-phosphor-dbus-interfaces-Made-PprData-to-return-Arra.patch │ │ │ │ ├── 0015-Add-ResetFwInventory-to-FactoryReset-interface.patch │ │ │ │ ├── 0016-phosphor-dbus-interface-add-dbus-interface-for-retim.patch │ │ │ │ ├── 0017-Add-boot-initiator-mailbox-interface.patch │ │ │ │ ├── 0018-DBus-add-PPR-Config-variables-and-methods.patch │ │ │ │ └── 0019-Add-methods-to-support-MDC-SDU.patch │ │ │ └── phosphor-dbus-interfaces_%.bbappend │ │ ├── flash │ │ │ ├── phosphor-software-manager │ │ │ │ ├── 0001-Add-support-for-SCM-FPGA-firmware-update.patch │ │ │ │ ├── 0002-Add-support-for-HPM-FPGA-firmware-update.patch │ │ │ │ ├── 0003-save-version-to-persistent-store.patch │ │ │ │ ├── 0004-change-backup-version-as-invalid-after-activation.patch │ │ │ │ ├── 0005-fix-image-updater-crash-on-invalid-version.patch │ │ │ │ ├── 0006-delete-stale-objects-after-activation.patch │ │ │ │ ├── 0007-phosphor-software-manager-Add-LCD-write-for-FW-ver.patch │ │ │ │ ├── 0008-phosphor-software-manager-Delete-LCD-extra-char.patch │ │ │ │ ├── 0009-recipes-phosphor-software-manager-Adding-service.in.patch │ │ │ │ ├── 0010-recipes-phosphor-software-manager-Fixing-activation.patch │ │ │ │ ├── 0011-add-support-for-retimer-update.patch │ │ │ │ ├── 0012-read-HPM-FPGA-version-from-FPGA-i2c-slave.patch │ │ │ │ ├── 0013-add-host-factory-reset-to-resetAll-handler.patch │ │ │ │ ├── 0014-phosphor-software-manager-Modify-to-call-u-boot-env-script.patch │ │ │ │ ├── 0015-phosphor-software-manager-LCD-clean-BMC-version.patch │ │ │ │ ├── 0016-Added-support-for-VR-Bundle-firmware-update.patch │ │ │ │ ├── 0017-recipes-phosphor-flash-Add-support-for-backplane-upd.patch │ │ │ │ ├── 0018-Preserve-firmware-inventory-on-factory-reset.patch │ │ │ │ ├── 0019-recipes-phosphor-flash-add-support-for-retimer-bundl.patch │ │ │ │ ├── amd-reset-u-boot-env.sh │ │ │ │ ├── bios-update.sh │ │ │ │ ├── hpm-fpga-update.sh │ │ │ │ ├── obmc-flash-bp-fw@.service │ │ │ │ ├── obmc-flash-host-bios@.service │ │ │ │ ├── obmc-flash-hpm-fpga@.service │ │ │ │ ├── obmc-flash-retimer-bundle@.service │ │ │ │ ├── obmc-flash-retimer@.service │ │ │ │ ├── obmc-flash-scm-fpga@.service │ │ │ │ ├── obmc-flash-vr-bundle@.service │ │ │ │ └── scm-fpga-update.sh │ │ │ └── phosphor-software-manager_%.bbappend │ │ ├── host │ │ │ ├── phosphor-host-postd │ │ │ │ ├── 0001-espi-post-code-capture-handler.patch │ │ │ │ └── 0002-fix-to-return-four-byte-post-code.patch │ │ │ └── phosphor-host-postd_%.bbappend │ │ ├── initrdscripts │ │ │ ├── files │ │ │ │ ├── amd-whitelist │ │ │ │ ├── obmc-init.sh │ │ │ │ └── obmc-update.sh │ │ │ └── obmc-phosphor-initfs.bbappend │ │ ├── interfaces │ │ │ ├── bmcweb │ │ │ │ ├── 0001-Reset-server-settings-only-changes-to-invoke-CMOS.patch │ │ │ │ ├── 0002-show-only-latest-boot-entries.patch │ │ │ │ ├── 0003-added-cpuInfo-in-Redfish-API.patch │ │ │ │ ├── 0004-increase-update-task-timeouts.patch │ │ │ │ ├── 0005-Add-DIMM-info-to-Redfish-API.patch │ │ │ │ ├── 0006-recipes-phosphor-bmcweb-Use-Amd-crashdump-interface.patch │ │ │ │ ├── 0007-enable-power-cap-based-on-limit-value.patch │ │ │ │ ├── 0008-To-display-Processors-information-using-redfish-API.patch │ │ │ │ ├── 0009-bmcweb-Added-support-for-PPIN.patch │ │ │ │ ├── 0010-recipes-bmcweb-Add-redfish-implementation-of-RAS-con.patch │ │ │ │ ├── 0011-bmcweb-Removed-Power-cap-code-to-populate-CPU-Info.patch │ │ │ │ ├── 0012-Redfish-Interface-for-crashdump-signature-ID.patch │ │ │ │ ├── 0013-bmcweb-changes-to-support-vrbundle-update.patch │ │ │ │ ├── 0014-Fixed-PostCodes-Entries-API-to-return-latest-Post-co.patch │ │ │ │ ├── 0015-Add-socket-id-for-multi-host-support.patch │ │ │ │ ├── 0016-Redfish-support-for-PCIe-Device.patch │ │ │ │ ├── 0017-bmcweb-bmcweb-changes-to-return-error-message.patch │ │ │ │ ├── 0018-bmcweb-Fixed-bmcweb-build-issue.patch │ │ │ │ ├── 0019-redfish-ras-runtime-error-configuration.patch │ │ │ │ ├── 0020-Redfish-support-for-Dimm-Fru-Text.patch │ │ │ │ ├── 0021-bmcweb-Turin-Add-PPR-Redfish-support.patch │ │ │ │ ├── 0022-bmcweb-handle-multiple-PPR-Request.patch │ │ │ │ ├── 0023-bmcweb-limit-Runtime-PPR-to-Max-8.patch │ │ │ │ ├── 0024-Redfish-command-to-set-ResetFwInventory-property.patch │ │ │ │ ├── 0025-Implement-Error-message-for-PCIe-and-Storage-endpoin.patch │ │ │ │ ├── 0026-bmcweb-add-redfish-support-for-retimer-bundle-update.patch │ │ │ │ ├── 0027-bmcweb-removed-Storage-uri-from-system-uri.patch │ │ │ │ ├── 0028-RAS-configuration-to-select-cold-reboot-option.patch │ │ │ │ ├── 0029-Removed-PCIeDevices-uri-from-main-system-uri.patch │ │ │ │ ├── 0030-bmcweb-Add-PPR-Config-Class.patch │ │ │ │ ├── 0031-Display-correctable-error-count-via-redfish.patch │ │ │ │ ├── 0032-Add-Aifs-conifguration-parameters.patch │ │ │ │ ├── 0033-Add-Redfish-URI-to-support-MDC-SDU-features.patch │ │ │ │ └── 0034-Rename-RAS-Configuration-properties.patch │ │ │ └── bmcweb_%.bbappend │ │ ├── inventory │ │ │ ├── phosphor-inventory-manager-chassis.bb │ │ │ └── phosphor-inventory-manager-chassis │ │ │ │ └── chassis.yaml │ │ ├── ipmi │ │ │ ├── phosphor-ipmi-config.bbappend │ │ │ ├── phosphor-ipmi-config │ │ │ │ ├── channel_config.json │ │ │ │ └── dcmi_sensors.json │ │ │ ├── phosphor-ipmi-host │ │ │ │ ├── 0001-set-BIOS-boot-type-to-EFI.patch │ │ │ │ ├── 0002-Add-Set-Sensor-threshold-IPMI-command.patch │ │ │ │ ├── 0003-Add-support-for-persistent-only-settings.patch │ │ │ │ └── 0004-Add-support-for-boot-initiator-mailbox.patch │ │ │ ├── phosphor-ipmi-host_%.bbappend │ │ │ ├── phosphor-ipmi-net │ │ │ │ ├── 0001-change-defaults-for-SOL-buffering.patch │ │ │ │ └── 0002-Fixed-the-Console-Socket-path-for-IPMI-Sol.patch │ │ │ └── phosphor-ipmi-net_%.bbappend │ │ ├── leds │ │ │ ├── phosphor-led-manager │ │ │ │ └── 0001-led-Replace-upstream-yaml-file-with-AMD-specific-yam.patch │ │ │ ├── phosphor-led-manager_%.bbappend │ │ │ ├── sp5-led-manager-config-native.bb │ │ │ └── sp5-led-manager-config │ │ │ │ └── led.yaml │ │ ├── logging │ │ │ ├── phosphor-hostlogger │ │ │ │ └── ttyS0.conf │ │ │ └── phosphor-hostlogger_%.bbappend │ │ ├── network │ │ │ ├── phosphor-network │ │ │ │ └── 0001-phosphor-network-Add-LCD-write-for-BMC-IP.patch │ │ │ └── phosphor-network_%.bbappend │ │ ├── pmci │ │ │ └── libmctp-intel_git.bb │ │ ├── sel-logger │ │ │ └── phosphor-sel-logger_%.bbappend │ │ ├── settings │ │ │ ├── phosphor-settings-manager │ │ │ │ ├── bootmailbox.override.yml │ │ │ │ └── sol-default.override.yml │ │ │ └── phosphor-settings-manager_%.bbappend │ │ ├── state │ │ │ ├── phosphor-post-code-manager │ │ │ │ ├── 0001-phosphor-post-code-manager-Add-LCD-write-POST-CODE.patch │ │ │ │ ├── 0002-phosphor-post-code-manager-Del-POST-Index-from-LCD.patch │ │ │ │ ├── 0003-fixed-delete-all-method-and-added-enhancements.patch │ │ │ │ ├── 0004-add-thread-to-flush-post-codes-periodically.patch │ │ │ │ ├── 0005-dump-current-boot-post-code-to-text-file.patch │ │ │ │ ├── 0006-Limit-maximum-post-code-entries-per-boot.patch │ │ │ │ └── 0007-post_code-Increase-the-maximum-number-of-post-codes-.patch │ │ │ └── phosphor-post-code-manager_%.bbappend │ │ ├── watchdog │ │ │ ├── phosphor-watchdog │ │ │ │ ├── phosphor-watchdog-host-cycle.service │ │ │ │ ├── phosphor-watchdog-host-poweroff.service │ │ │ │ ├── phosphor-watchdog-host-reset.service │ │ │ │ └── phosphor-watchdog.service │ │ │ └── phosphor-watchdog_%.bbappend │ │ └── webui │ │ │ ├── webui-vue │ │ │ ├── 0001-webvue-ui-Support-HPM-and-SCM-FPGA-firmware-updates.patch │ │ │ ├── 0002-poll-for-firmware-update-progress-and-completion.patch │ │ │ ├── 0003-order-sensor-array-by-new-values.patch │ │ │ ├── 0004-SOL-console-shows-disconnected-when-opened-with-Open.patch │ │ │ ├── 0005-Enable-AMD-power-cap-application.patch │ │ │ ├── 0006-VR-webui-changes.patch │ │ │ ├── 0007-add-support-for-retimer-firmware-update.patch │ │ │ ├── 0008-add-POST-timestamp-as-sortable-field.patch │ │ │ ├── 0009-add-delete-all-button-to-POST-code-page.patch │ │ │ ├── 0010-show-recent-200-post-codes.patch │ │ │ ├── 0011-webUI-changes-to-display-CPU-information.patch │ │ │ ├── 0012-increase-firmware-update-max-timeout.patch │ │ │ ├── 0013-allow-zero-as-power-limit-value.patch │ │ │ ├── 0014-webui-vue-Session-Timeout-text-box-in-BMC-GUI.patch │ │ │ ├── 0015-webui-vue-Removed-CPU-info-from-Overview-Page.patch │ │ │ ├── 0016-Added-Processor-info-in-Hardware-Inventory-page.patch │ │ │ ├── 0017-webui-changes-to-support-vrbundle-update.patch │ │ │ ├── 0018-Fixed-skip-count-logic-in-webui-vue.patch │ │ │ ├── 0019-webui-vue-Add-FPGA-image-update-notification.patch │ │ │ ├── 0020-enable-checkbox-for-firmware-inventory-reset.patch │ │ │ ├── 0021-Status-message-update-for-VR-update.patch │ │ │ ├── 0022-webui-vue-Corrected-Factory-reset-message.patch │ │ │ ├── 0023-web-vue-add-support-for-Retimer-Bundle-firmware-upda.patch │ │ │ └── 0024-webui-vue-modify-to-remove-duplicate-system-inventory-node.patch │ │ │ └── webui-vue_%.bbappend │ └── recipes-x86 │ │ └── chassis │ │ └── amd-power-control_git.bb ├── meta-sh5 │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── sh5.conf │ ├── recipes-amd │ │ ├── fpga-tools │ │ │ ├── files │ │ │ │ ├── amd-plat-info │ │ │ │ ├── onyx-fpga-dump.sh │ │ │ │ └── titanite-fpga-dump.sh │ │ │ └── fpga-tools.bb │ │ ├── set-fan-speed │ │ │ ├── files │ │ │ │ ├── set-fan-speed.service │ │ │ │ └── set-fan-speed.sh │ │ │ └── set-fan-speed.bb │ │ └── vr-update │ │ │ └── vr-update.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── sh5.cfg │ │ │ └── linux-aspeed_%.bbappend │ ├── recipes-phosphor │ │ ├── configuration │ │ │ ├── sh5-yaml-config.bb │ │ │ └── sh5-yaml-config │ │ │ │ ├── onyx-ipmi-fru-properties.yaml │ │ │ │ ├── onyx-ipmi-fru.yaml │ │ │ │ ├── onyx-ipmi-inventory-sensors.yaml │ │ │ │ ├── onyx-ipmi-sensors.yaml │ │ │ │ ├── sh5d807-ipmi-fru-properties.yaml │ │ │ │ ├── sh5d807-ipmi-fru.yaml │ │ │ │ ├── sh5d807-ipmi-inventory-sensors.yaml │ │ │ │ └── sh5d807-ipmi-sensors.yaml │ │ ├── fans │ │ │ ├── phosphor-pid-control │ │ │ │ ├── 0001-phosphor-pid-control-Add-CPU-Temp-simulation-code.patch │ │ │ │ ├── 0002-phosphor-pid-control-Modify-Sensor-based-Temp-simulation.patch │ │ │ │ ├── onyx-stepwise-config.json │ │ │ │ ├── phosphor-pid-control.path │ │ │ │ ├── phosphor-pid-control.service │ │ │ │ ├── set-platform-json-config.sh │ │ │ │ └── sh5-stepwise-config.json │ │ │ └── phosphor-pid-control_%.bbappend │ │ ├── flash │ │ │ ├── phosphor-software-manager │ │ │ │ └── vr-update.sh │ │ │ └── phosphor-software-manager_%.bbappend │ │ ├── inventory │ │ │ ├── phosphor-inventory-manager │ │ │ │ ├── onyx-associations.json │ │ │ │ └── sh5d807-associations.json │ │ │ ├── phosphor-inventory-manager_%.bbappend │ │ │ ├── set-associations-path │ │ │ │ ├── set-associations-path.service │ │ │ │ └── set-associations-path.sh │ │ │ └── set-associations-path_1.0.bb │ │ ├── ipmi │ │ │ ├── phosphor-ipmi-fru │ │ │ │ ├── 0001-python-template-changes-for-sh5.patch │ │ │ │ ├── 0002-phosphor-ipmi-fru-Add-platform-based-fru-data-selection.patch │ │ │ │ └── obmc │ │ │ │ │ └── eeproms │ │ │ │ │ └── system │ │ │ │ │ ├── chassis │ │ │ │ │ └── motherboard │ │ │ │ │ └── motherboard │ │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ │ ├── phosphor-ipmi-host │ │ │ │ ├── 0001-script-changes-for-mako-templates-and-platforms.patch │ │ │ │ └── 0002-phosphor-ipmi-host-Modify-platformization-changes-for-sh5.patch │ │ │ └── phosphor-ipmi-host_%.bbappend │ │ ├── leds │ │ │ ├── sh5-led-manager-config-native.bb │ │ │ └── sh5-led-manager-config │ │ │ │ └── led.yaml │ │ └── sensors │ │ │ ├── first-boot-set-hwmon-path │ │ │ ├── first-boot-set-hwmon-path.service │ │ │ └── first-boot-set-hwmon-path.sh │ │ │ ├── first-boot-set-hwmon-path_1.0.bb │ │ │ ├── phosphor-hwmon │ │ │ ├── 0001-Add-power-on-monitor-mechanism.patch │ │ │ └── obmc │ │ │ │ ├── hwmon_onyx │ │ │ │ ├── ahb │ │ │ │ │ └── apb │ │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ │ │ ├── core0socvrm@40.conf │ │ │ │ │ │ │ │ ├── core1vrm@42.conf │ │ │ │ │ │ │ │ ├── iovrm@41.conf │ │ │ │ │ │ │ │ ├── vdd11susvrm@70.conf │ │ │ │ │ │ │ │ ├── vdd18dualvrm@17.conf │ │ │ │ │ │ │ │ └── vdd33dualvrm@16.conf │ │ │ │ │ │ └── i2c-bus@500 │ │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ │ ├── i2c@1 │ │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ │ ├── i2c@2 │ │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ │ ├── i2c@3 │ │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ │ ├── i2c@5 │ │ │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ │ │ └── i2c@7 │ │ │ │ │ │ │ └── tmp468@48.conf │ │ │ │ │ │ └── bus@1e7a0000 │ │ │ │ │ │ └── i3c4@6000 │ │ │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ │ └── iio-hwmon-adc121c.conf │ │ │ │ └── hwmon_sh5d807 │ │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@280 │ │ │ │ │ │ ├── vdd_33_dual@14.conf │ │ │ │ │ │ ├── vdd_33_run@13.conf │ │ │ │ │ │ └── vdd_5_dual@15.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ ├── vdd_075_hbm_b@44.conf │ │ │ │ │ │ │ ├── vddcr_11_hbm_b@41.conf │ │ │ │ │ │ │ ├── vddcr_soc@36.conf │ │ │ │ │ │ │ ├── vddcr_vdd0@3f.conf │ │ │ │ │ │ │ └── vddcr_vdd3@3c.conf │ │ │ │ │ │ │ └── i2c@1 │ │ │ │ │ │ │ ├── vdd_075_hbm_d@4a.conf │ │ │ │ │ │ │ ├── vddcr_11_hbm_d@47.conf │ │ │ │ │ │ │ ├── vddcr_vdd1@33.conf │ │ │ │ │ │ │ └── vddcr_vdd2@39.conf │ │ │ │ │ └── i2c-bus@500 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@1 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@2 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ └── i2c@5 │ │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ └── bus@1e7a0000 │ │ │ │ │ └── i3c4@6000 │ │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ │ └── iio-hwmon-adc121c.conf │ │ │ └── phosphor-hwmon_%.bbappend │ └── recipes-x86 │ │ └── chassis │ │ ├── amd-power-control │ │ └── 0001-amd-power-control-modify-SOL-service-start-stop-add.patch │ │ └── amd-power-control_git.bbappend ├── meta-sp5 │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── sp5.conf │ ├── recipes-amd │ │ ├── bmc-retimer-update │ │ │ └── bmc-retimer-update.bbappend │ │ ├── fpga-tools │ │ │ ├── files │ │ │ │ ├── amd-plat-info │ │ │ │ ├── hpm-fpga-dump.sh │ │ │ │ ├── onyx-fpga-dump.sh │ │ │ │ ├── quartz-fpga-dump.sh │ │ │ │ ├── ruby-fpga-dump.sh │ │ │ │ └── titanite-fpga-dump.sh │ │ │ └── fpga-tools.bb │ │ ├── set-fan-speed │ │ │ ├── files │ │ │ │ ├── set-fan-speed.service │ │ │ │ └── set-fan-speed.sh │ │ │ └── set-fan-speed.bb │ │ └── vr-update │ │ │ └── vr-update.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── sp5.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ │ ├── configuration │ │ ├── sp5-yaml-config.bb │ │ └── sp5-yaml-config │ │ │ ├── onyx-ipmi-fru-properties.yaml │ │ │ ├── onyx-ipmi-fru.yaml │ │ │ ├── onyx-ipmi-inventory-sensors.yaml │ │ │ ├── onyx-ipmi-sensors.yaml │ │ │ ├── quartz-ipmi-fru-properties.yaml │ │ │ ├── quartz-ipmi-fru.yaml │ │ │ ├── quartz-ipmi-inventory-sensors.yaml │ │ │ ├── quartz-ipmi-sensors.yaml │ │ │ ├── ruby-ipmi-fru-properties.yaml │ │ │ ├── ruby-ipmi-fru.yaml │ │ │ ├── ruby-ipmi-inventory-sensors.yaml │ │ │ ├── ruby-ipmi-sensors.yaml │ │ │ ├── titanite-ipmi-fru-properties.yaml │ │ │ ├── titanite-ipmi-fru.yaml │ │ │ ├── titanite-ipmi-inventory-sensors.yaml │ │ │ └── titanite-ipmi-sensors.yaml │ │ ├── fans │ │ ├── phosphor-pid-control │ │ │ ├── 0001-phosphor-pid-control-Add-CPU-Temp-simulation-code.patch │ │ │ ├── 0002-phosphor-pid-control-Modify-Sensor-based-Temp-simulation.patch │ │ │ ├── onyx-stepwise-config.json │ │ │ ├── phosphor-pid-control.path │ │ │ ├── phosphor-pid-control.service │ │ │ ├── quartz-stepwise-config.json │ │ │ ├── ruby-stepwise-config.json │ │ │ ├── set-platform-json-config.sh │ │ │ └── titanite-stepwise-config.json │ │ └── phosphor-pid-control_%.bbappend │ │ ├── flash │ │ ├── phosphor-software-manager │ │ │ └── vr-update.sh │ │ └── phosphor-software-manager_%.bbappend │ │ ├── inventory │ │ ├── phosphor-inventory-manager │ │ │ ├── onyx-associations.json │ │ │ ├── quartz-associations.json │ │ │ ├── ruby-associations.json │ │ │ └── titanite-associations.json │ │ ├── phosphor-inventory-manager_%.bbappend │ │ ├── set-associations-path │ │ │ ├── set-associations-path.service │ │ │ └── set-associations-path.sh │ │ └── set-associations-path_1.0.bb │ │ ├── ipmi │ │ ├── phosphor-ipmi-fru │ │ │ ├── 0001-python-template-changes-for-sp5.patch │ │ │ ├── 0002-platformization-changes-for-sp5-fru.patch │ │ │ └── obmc │ │ │ │ └── eeproms │ │ │ │ └── system │ │ │ │ ├── chassis │ │ │ │ └── motherboard │ │ │ │ └── motherboard │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ ├── phosphor-ipmi-host │ │ │ ├── 0001-script-changes-for-mako-templates-and-platforms.patch │ │ │ └── 0002-platformization-changes-for-sp5-platforms.patch │ │ └── phosphor-ipmi-host_%.bbappend │ │ ├── leds │ │ ├── sp5-led-manager-config-native.bb │ │ └── sp5-led-manager-config │ │ │ └── led.yaml │ │ └── sensors │ │ ├── first-boot-set-hwmon-path │ │ ├── first-boot-set-hwmon-path.service │ │ └── first-boot-set-hwmon-path.sh │ │ ├── first-boot-set-hwmon-path_1.0.bb │ │ ├── phosphor-hwmon │ │ ├── 0001-Add-power-on-monitor-mechanism.patch │ │ └── obmc │ │ │ ├── hwmon_onyx │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ │ ├── core0socvrm@40.conf │ │ │ │ │ │ │ ├── core1vrm@42.conf │ │ │ │ │ │ │ ├── iovrm@41.conf │ │ │ │ │ │ │ ├── vdd11susvrm@70.conf │ │ │ │ │ │ │ ├── vdd18dualvrm@17.conf │ │ │ │ │ │ │ └── vdd33dualvrm@16.conf │ │ │ │ │ └── i2c-bus@500 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@1 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@2 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@3 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@5 │ │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ │ └── i2c@7 │ │ │ │ │ │ └── tmp468@48.conf │ │ │ │ │ └── bus@1e7a0000 │ │ │ │ │ └── i3c4@6000 │ │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ └── iio-hwmon-adc121c.conf │ │ │ ├── hwmon_quartz │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ │ ├── i2c-bus@200 │ │ │ │ │ │ ├── sbrmi@38.conf │ │ │ │ │ │ └── sbtsi@48.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ │ ├── p0_vdd_11_sus@63.conf │ │ │ │ │ │ │ ├── p0_vdd_18_dual@64.conf │ │ │ │ │ │ │ ├── p0_vdd_33_dual@65.conf │ │ │ │ │ │ │ ├── p0_vdd_core0_run@60.conf │ │ │ │ │ │ │ ├── p0_vdd_core1_run@61.conf │ │ │ │ │ │ │ └── p0_vdd_vddio_run@62.conf │ │ │ │ │ ├── i2c-bus@380 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ │ ├── p1_vdd_11_sus@63.conf │ │ │ │ │ │ │ ├── p1_vdd_18_dual@64.conf │ │ │ │ │ │ │ ├── p1_vdd_33_dual@65.conf │ │ │ │ │ │ │ ├── p1_vdd_core0_run@60.conf │ │ │ │ │ │ │ ├── p1_vdd_core1_run@61.conf │ │ │ │ │ │ │ └── p1_vdd_vddio_run@62.conf │ │ │ │ │ └── i2c-bus@500 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@1 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@2 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@3 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@4 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ └── i2c@5 │ │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ └── bus@1e7a0000 │ │ │ │ │ ├── i3c4@6000 │ │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ │ │ └── i3c5@7000 │ │ │ │ │ ├── sbrmi@38,22400000002.conf │ │ │ │ │ └── sbtsi@48,22400000001.conf │ │ │ └── iio-hwmon-adc121c.conf │ │ │ ├── hwmon_ruby │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ │ ├── vddcr_core0_soc@61.conf │ │ │ │ │ │ │ ├── vddcr_core1_11@62.conf │ │ │ │ │ │ │ └── vddcr_vddio_33@63.conf │ │ │ │ │ └── i2c-bus@500 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ └── i2c@5 │ │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ └── bus@1e7a0000 │ │ │ │ │ └── i3c4@6000 │ │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ └── iio-hwmon-adc121c.conf │ │ │ └── hwmon_titanite │ │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ ├── i2c-bus@200 │ │ │ │ │ ├── sbrmi@38.conf │ │ │ │ │ └── sbtsi@48.conf │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ ├── pvdd11_s3_p0@63.conf │ │ │ │ │ ├── pvddcr_soc_p0@61.conf │ │ │ │ │ └── pvddio_p0@62.conf │ │ │ │ ├── i2c-bus@380 │ │ │ │ │ ├── pvdd11_s3_p1@74.conf │ │ │ │ │ ├── pvddcr_soc_p1@72.conf │ │ │ │ │ └── pvddio_p1@75.conf │ │ │ │ └── i2c-bus@500 │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ ├── i2c@0 │ │ │ │ │ └── i2cswitch@77 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ └── amd_cpld@28.conf │ │ │ │ │ │ └── i2c@3 │ │ │ │ │ │ └── lm75a@4b.conf │ │ │ │ │ ├── i2c@1 │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ └── lm75a@4c.conf │ │ │ │ │ └── i2c@6 │ │ │ │ │ └── lm75a@4a.conf │ │ │ │ └── bus@1e7a0000 │ │ │ │ ├── i3c4@6000 │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ │ └── i3c5@7000 │ │ │ │ ├── sbrmi@38,22400000002.conf │ │ │ │ └── sbtsi@48,22400000001.conf │ │ │ └── iio-hwmon-adc121c.conf │ │ └── phosphor-hwmon_%.bbappend ├── meta-sp6 │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── sp6.conf │ ├── recipes-amd │ │ ├── bmc-retimer-update │ │ │ └── bmc-retimer-update.bbappend │ │ ├── fpga-tools │ │ │ ├── files │ │ │ │ ├── amd-plat-info │ │ │ │ ├── cinnabar-fpga-dump.sh │ │ │ │ └── ncsi-switch │ │ │ └── fpga-tools.bb │ │ ├── set-fan-speed │ │ │ ├── files │ │ │ │ ├── set-fan-speed.service │ │ │ │ └── set-fan-speed.sh │ │ │ └── set-fan-speed.bb │ │ └── vr-update │ │ │ └── vr-update.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── sp6.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ │ ├── configuration │ │ ├── sp6-yaml-config.bb │ │ └── sp6-yaml-config │ │ │ ├── cinnabar-ipmi-fru-properties.yaml │ │ │ ├── cinnabar-ipmi-fru.yaml │ │ │ ├── cinnabar-ipmi-inventory-sensors.yaml │ │ │ ├── cinnabar-ipmi-sensors.yaml │ │ │ ├── shale-ipmi-fru-properties.yaml │ │ │ ├── shale-ipmi-fru.yaml │ │ │ ├── shale-ipmi-inventory-sensors.yaml │ │ │ ├── shale-ipmi-sensors.yaml │ │ │ ├── sunstone-ipmi-fru-properties.yaml │ │ │ ├── sunstone-ipmi-fru.yaml │ │ │ ├── sunstone-ipmi-inventory-sensors.yaml │ │ │ └── sunstone-ipmi-sensors.yaml │ │ ├── fans │ │ ├── phosphor-pid-control │ │ │ ├── 0001-phosphor-pid-control-Add-CPU-Temp-simulation-code.patch │ │ │ ├── 0002-phosphor-pid-control-Modify-Sensor-based-Temp-simulation.patch │ │ │ ├── 0003-phosphor-pid-control-Add-chassis-intrusion-sensor.patch │ │ │ ├── cinnabar-stepwise-config.json │ │ │ ├── phosphor-pid-control.path │ │ │ ├── phosphor-pid-control.service │ │ │ ├── set-platform-json-config.sh │ │ │ ├── shale-stepwise-config.json │ │ │ └── sunstone-stepwise-config.json │ │ └── phosphor-pid-control_%.bbappend │ │ ├── flash │ │ ├── phosphor-software-manager │ │ │ └── vr-update.sh │ │ └── phosphor-software-manager_%.bbappend │ │ ├── inventory │ │ ├── phosphor-inventory-manager │ │ │ ├── cinnabar-associations.json │ │ │ ├── shale-associations.json │ │ │ └── sunstone-associations.json │ │ ├── phosphor-inventory-manager_%.bbappend │ │ ├── set-associations-path │ │ │ ├── set-associations-path.service │ │ │ └── set-associations-path.sh │ │ └── set-associations-path_1.0.bb │ │ ├── ipmi │ │ ├── phosphor-ipmi-fru │ │ │ ├── 0001-python-template-changes-for-sp6.patch │ │ │ ├── 0002-platformization-changes-for-sp6-fru.patch │ │ │ ├── 0003-Merge-shale64-and-shale96-platforms.patch │ │ │ └── obmc │ │ │ │ └── eeproms │ │ │ │ └── system │ │ │ │ ├── chassis │ │ │ │ └── motherboard │ │ │ │ └── motherboard │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ ├── phosphor-ipmi-host │ │ │ ├── 0001-script-changes-for-mako-templates-and-platforms.patch │ │ │ ├── 0002-platformization-changes-for-sp6-platforms.patch │ │ │ └── 0003-Merge-shale64-and-shale96-platforms.patch │ │ └── phosphor-ipmi-host_%.bbappend │ │ ├── leds │ │ ├── sp6-led-manager-config-native.bb │ │ └── sp6-led-manager-config │ │ │ └── led.yaml │ │ ├── logging │ │ ├── phosphor-hostlogger │ │ │ ├── 0001-start-logger-on-different-uart-based-on-board-id.patch │ │ │ └── ttyVUART0.conf │ │ └── phosphor-hostlogger_%.bbappend │ │ └── sensors │ │ ├── first-boot-set-hwmon-path │ │ ├── first-boot-set-hwmon-path.service │ │ └── first-boot-set-hwmon-path.sh │ │ ├── first-boot-set-hwmon-path_1.0.bb │ │ ├── phosphor-hwmon │ │ ├── 0001-Add-power-on-monitor-mechanism.patch │ │ └── obmc │ │ │ ├── hwmon_cinnabar │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ │ ├── p0_vdd_11_sus@62.conf │ │ │ │ │ │ │ ├── p0_vdd_18_dual@64.conf │ │ │ │ │ │ │ ├── p0_vdd_33_dual@65.conf │ │ │ │ │ │ │ ├── p0_vdd_soc_run@61.conf │ │ │ │ │ │ │ └── p0_vdd_vddio_run@63.conf │ │ │ │ │ └── i2c-bus@500 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ └── emc2305_1_ap@4d.conf │ │ │ │ │ │ └── i2c@5 │ │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ └── bus@1e7a0000 │ │ │ │ │ └── i3c4@6000 │ │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ └── iio-hwmon-adc121c.conf │ │ │ ├── hwmon_shale │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ │ ├── p0_vdd_11_sus@62.conf │ │ │ │ │ │ │ ├── p0_vdd_18_dual@64.conf │ │ │ │ │ │ │ ├── p0_vdd_33_dual@65.conf │ │ │ │ │ │ │ ├── p0_vdd_soc_run@61.conf │ │ │ │ │ │ │ └── p0_vdd_vddio_run@63.conf │ │ │ │ │ └── i2c-bus@500 │ │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@1 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@2 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ ├── i2c@3 │ │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ │ └── i2c@5 │ │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ └── bus@1e7a0000 │ │ │ │ │ └── i3c4@6000 │ │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ └── iio-hwmon-adc121c.conf │ │ │ └── hwmon_sunstone │ │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ ├── i2c-bus@280 │ │ │ │ │ ├── vdd_33_dual@14.conf │ │ │ │ │ ├── vdd_33_run@13.conf │ │ │ │ │ └── vdd_5_dual@15.conf │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ ├── p0_vdd_11_sus@42.conf │ │ │ │ │ │ ├── p0_vdd_18_dual@17.conf │ │ │ │ │ │ ├── p0_vdd_33_dual@16.conf │ │ │ │ │ │ ├── p0_vdd_soc_run@40.conf │ │ │ │ │ │ └── p0_vdd_vddio_run@41.conf │ │ │ │ └── i2c-bus@500 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ ├── i2c@0 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@1 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@2 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@3 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@5 │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ └── i2c@7 │ │ │ │ │ └── lm95234@18.conf │ │ │ │ └── bus@1e7a0000 │ │ │ │ └── i3c4@6000 │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ └── iio-hwmon-adc121c.conf │ │ └── phosphor-hwmon_%.bbappend └── meta-turin │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── turin.conf │ ├── recipes-amd │ ├── amd-yaap │ │ ├── amd-yaap.bbappend │ │ └── files │ │ │ └── yaapd.service │ ├── bmc-retimer-update │ │ └── bmc-retimer-update.bbappend │ ├── fpga-tools │ │ ├── files │ │ │ ├── amd-plat-info │ │ │ ├── hpm-fpga-dump.sh │ │ │ └── turin-fpga-dump.sh │ │ └── fpga-tools.bb │ ├── non-os-binaries │ │ └── files │ │ │ └── amd-bmc-bp-update │ ├── set-fan-speed │ │ ├── files │ │ │ ├── set-fan-speed.service │ │ │ └── set-fan-speed.sh │ │ └── set-fan-speed.bb │ └── vr-update │ │ └── vr-update.bbappend │ ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed │ │ └── turin.cfg │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ ├── configuration │ ├── turin-yaml-config.bb │ └── turin-yaml-config │ │ ├── chalupa-ipmi-fru-properties.yaml │ │ ├── chalupa-ipmi-fru.yaml │ │ ├── chalupa-ipmi-inventory-sensors.yaml │ │ ├── chalupa-ipmi-sensors.yaml │ │ ├── galena-ipmi-fru-properties.yaml │ │ ├── galena-ipmi-fru.yaml │ │ ├── galena-ipmi-inventory-sensors.yaml │ │ ├── galena-ipmi-sensors.yaml │ │ ├── huambo-ipmi-fru-properties.yaml │ │ ├── huambo-ipmi-fru.yaml │ │ ├── huambo-ipmi-inventory-sensors.yaml │ │ ├── huambo-ipmi-sensors.yaml │ │ ├── purico-ipmi-fru-properties.yaml │ │ ├── purico-ipmi-fru.yaml │ │ ├── purico-ipmi-inventory-sensors.yaml │ │ ├── purico-ipmi-sensors.yaml │ │ ├── recluse-ipmi-fru-properties.yaml │ │ ├── recluse-ipmi-fru.yaml │ │ ├── recluse-ipmi-inventory-sensors.yaml │ │ ├── recluse-ipmi-sensors.yaml │ │ ├── volcano-ipmi-fru-properties.yaml │ │ ├── volcano-ipmi-fru.yaml │ │ ├── volcano-ipmi-inventory-sensors.yaml │ │ └── volcano-ipmi-sensors.yaml │ ├── fans │ ├── phosphor-pid-control │ │ ├── 0001-phosphor-pid-control-Add-CPU-Temp-simulation-code.patch │ │ ├── 0002-phosphor-pid-control-Modify-Sensor-based-Temp-simulation.patch │ │ ├── chalupa-stepwise-config.json │ │ ├── chalupa1P-stepwise-config.json │ │ ├── galena-stepwise-config.json │ │ ├── huambo-stepwise-config.json │ │ ├── huambo1P-stepwise-config.json │ │ ├── phosphor-pid-control.service │ │ ├── purico-stepwise-config.json │ │ ├── recluse-stepwise-config.json │ │ ├── set-platform-json-config.sh │ │ ├── volcano-stepwise-config.json │ │ └── volcano1P-stepwise-config.json │ └── phosphor-pid-control_%.bbappend │ ├── flash │ ├── phosphor-software-manager │ │ └── vr-update.sh │ └── phosphor-software-manager_%.bbappend │ ├── inventory │ ├── phosphor-inventory-manager │ │ ├── chalupa-associations.json │ │ ├── galena-associations.json │ │ ├── huambo-associations.json │ │ ├── purico-associations.json │ │ ├── recluse-associations.json │ │ ├── volcano-associations.json │ │ └── volcano4-associations.json │ ├── phosphor-inventory-manager_%.bbappend │ ├── set-associations-path │ │ ├── set-associations-path.service │ │ └── set-associations-path.sh │ └── set-associations-path_1.0.bb │ ├── ipmi │ ├── phosphor-ipmi-fru │ │ ├── 0001-turin-fru-changes.patch │ │ └── obmc │ │ │ └── eeproms │ │ │ └── system │ │ │ ├── chassis │ │ │ └── motherboard │ │ │ └── motherboard │ ├── phosphor-ipmi-fru_%.bbappend │ ├── phosphor-ipmi-host │ │ └── 0001-turin-host-platform-changes.patch │ └── phosphor-ipmi-host_%.bbappend │ ├── leds │ ├── turin-led-manager-config-native.bb │ └── turin-led-manager-config │ │ └── led.yaml │ └── sensors │ ├── first-boot-set-hwmon-path │ ├── first-boot-set-hwmon-path.service │ └── first-boot-set-hwmon-path.sh │ ├── first-boot-set-hwmon-path_1.0.bb │ ├── phosphor-hwmon │ ├── 0001-Add-power-on-monitor-mechanism.patch │ └── obmc │ │ ├── hwmon_chalupa │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ ├── i2c-bus@200 │ │ │ │ │ ├── sbrmi@38.conf │ │ │ │ │ └── sbtsi@48.conf │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ ├── p0_vdd_11_sus@63.conf │ │ │ │ │ │ ├── p0_vdd_18_dual@64.conf │ │ │ │ │ │ ├── p0_vdd_33_dual@65.conf │ │ │ │ │ │ ├── p0_vdd_core0_run@60.conf │ │ │ │ │ │ ├── p0_vdd_core1_run@61.conf │ │ │ │ │ │ └── p0_vdd_vddio_run@62.conf │ │ │ │ ├── i2c-bus@380 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ ├── p1_vdd_11_sus@63.conf │ │ │ │ │ │ ├── p1_vdd_18_dual@64.conf │ │ │ │ │ │ ├── p1_vdd_33_dual@65.conf │ │ │ │ │ │ ├── p1_vdd_core0_run@60.conf │ │ │ │ │ │ ├── p1_vdd_core1_run@61.conf │ │ │ │ │ │ └── p1_vdd_vddio_run@62.conf │ │ │ │ └── i2c-bus@500 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ ├── i2c@0 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@1 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@2 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@3 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@4 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ └── i2c@5 │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ └── bus@1e7a0000 │ │ │ │ ├── i3c4@6000 │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ │ └── i3c5@7000 │ │ │ │ ├── sbrmi@38,22400000002.conf │ │ │ │ └── sbtsi@48,22400000001.conf │ │ └── iio-hwmon-adc121c.conf │ │ ├── hwmon_galena │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ ├── core0socvrm@40.conf │ │ │ │ │ │ ├── core1vrm@42.conf │ │ │ │ │ │ ├── iovrm@41.conf │ │ │ │ │ │ ├── vdd11susvrm@70.conf │ │ │ │ │ │ ├── vdd18dualvrm@17.conf │ │ │ │ │ │ └── vdd33dualvrm@16.conf │ │ │ │ └── i2c-bus@500 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ ├── i2c@0 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@1 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@2 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@3 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@5 │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ └── i2c@7 │ │ │ │ │ └── tmp468@48.conf │ │ │ │ └── bus@1e7a0000 │ │ │ │ └── i3c4@6000 │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ └── iio-hwmon-adc121c.conf │ │ ├── hwmon_huambo │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ ├── i2c-bus@200 │ │ │ │ │ ├── sbrmi@38.conf │ │ │ │ │ └── sbtsi@48.conf │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ ├── p0_vdd_11_sus@63.conf │ │ │ │ │ │ ├── p0_vdd_18_dual@64.conf │ │ │ │ │ │ ├── p0_vdd_33_dual@65.conf │ │ │ │ │ │ ├── p0_vdd_core0_run@60.conf │ │ │ │ │ │ ├── p0_vdd_core1_run@61.conf │ │ │ │ │ │ └── p0_vdd_vddio_run@62.conf │ │ │ │ ├── i2c-bus@380 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ ├── p1_vdd_11_sus@63.conf │ │ │ │ │ │ ├── p1_vdd_18_dual@64.conf │ │ │ │ │ │ ├── p1_vdd_33_dual@65.conf │ │ │ │ │ │ ├── p1_vdd_core0_run@60.conf │ │ │ │ │ │ ├── p1_vdd_core1_run@61.conf │ │ │ │ │ │ └── p1_vdd_vddio_run@62.conf │ │ │ │ └── i2c-bus@500 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ ├── i2c@0 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@1 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@2 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@3 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@4 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ └── i2c@5 │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ └── bus@1e7a0000 │ │ │ │ ├── i3c4@6000 │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ │ └── i3c5@7000 │ │ │ │ ├── sbrmi@38,22400000002.conf │ │ │ │ └── sbtsi@48,22400000001.conf │ │ └── iio-hwmon-adc121c.conf │ │ ├── hwmon_purico │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ ├── vdd18dualvrm@17.conf │ │ │ │ │ │ ├── vdd33dualvrm@19.conf │ │ │ │ │ │ ├── vddcr_core0_soc@61.conf │ │ │ │ │ │ ├── vddcr_core1_11@62.conf │ │ │ │ │ │ └── vddcr_vddio_33@63.conf │ │ │ │ ├── i2c-bus@500 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ └── nct7362@20.conf │ │ │ │ │ │ ├── i2c@3 │ │ │ │ │ │ └── nct7362@20.conf │ │ │ │ │ │ ├── i2c@5 │ │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ │ └── lm75a@4c.conf │ │ │ │ │ │ └── i2c@7 │ │ │ │ │ │ └── lm75a@48.conf │ │ │ │ └── i2c-bus@580 │ │ │ │ │ └── i2cswitch@75 │ │ │ │ │ ├── i2c@0 │ │ │ │ │ └── i2cswitch@73 │ │ │ │ │ │ └── i2c@1 │ │ │ │ │ │ └── lm75a@48.conf │ │ │ │ │ ├── i2c@1 │ │ │ │ │ └── i2cswitch@73 │ │ │ │ │ │ └── i2c@1 │ │ │ │ │ │ └── lm75a@48.conf │ │ │ │ │ └── i2c@2 │ │ │ │ │ └── i2cswitch@73 │ │ │ │ │ └── i2c@1 │ │ │ │ │ └── lm75a@48.conf │ │ │ │ └── bus@1e7a0000 │ │ │ │ └── i3c4@6000 │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ └── iio-hwmon-adc121c.conf │ │ ├── hwmon_recluse │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ └── i2cswitch@71 │ │ │ │ │ │ └── i2c@0 │ │ │ │ │ │ ├── core0socvrm@40.conf │ │ │ │ │ │ ├── core1vrm@42.conf │ │ │ │ │ │ ├── iovrm@41.conf │ │ │ │ │ │ ├── vdd11susvrm@70.conf │ │ │ │ │ │ ├── vdd18dualvrm@17.conf │ │ │ │ │ │ └── vdd33dualvrm@16.conf │ │ │ │ └── i2c-bus@500 │ │ │ │ │ └── i2cswitch@70 │ │ │ │ │ ├── i2c@0 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@1 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@2 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@3 │ │ │ │ │ └── emc2305@4d.conf │ │ │ │ │ ├── i2c@5 │ │ │ │ │ ├── lm75a@48.conf │ │ │ │ │ ├── lm75a@49.conf │ │ │ │ │ ├── lm75a@4a.conf │ │ │ │ │ ├── lm75a@4b.conf │ │ │ │ │ ├── lm75a@4c.conf │ │ │ │ │ ├── lm75a@4d.conf │ │ │ │ │ ├── lm75a@4e.conf │ │ │ │ │ └── lm75a@4f.conf │ │ │ │ │ └── i2c@7 │ │ │ │ │ └── tmp468@48.conf │ │ │ │ └── bus@1e7a0000 │ │ │ │ └── i3c4@6000 │ │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ │ └── sbtsi@4c,22400000001.conf │ │ └── iio-hwmon-adc121c.conf │ │ └── hwmon_volcano │ │ ├── ahb │ │ └── apb │ │ │ ├── bus@1e78a000 │ │ │ ├── i2c-bus@180 │ │ │ │ ├── sbrmi@3c.conf │ │ │ │ └── sbtsi@4c.conf │ │ │ ├── i2c-bus@200 │ │ │ │ ├── sbrmi@38.conf │ │ │ │ └── sbtsi@48.conf │ │ │ ├── i2c-bus@300 │ │ │ │ ├── pvdd11_s3_p0@62.conf │ │ │ │ ├── pvdd18_s5_p0@17.conf │ │ │ │ ├── pvdd33_s5_p0@19.conf │ │ │ │ ├── pvddcr_soc_p0@61.conf │ │ │ │ └── pvddio_p0@63.conf │ │ │ ├── i2c-bus@380 │ │ │ │ ├── pvdd11_s3_p1@74.conf │ │ │ │ ├── pvdd18_s5_p1@18.conf │ │ │ │ ├── pvddcr_soc_p1@72.conf │ │ │ │ └── pvddio_p1@75.conf │ │ │ └── i2c-bus@500 │ │ │ │ └── i2cswitch@71 │ │ │ │ ├── i2c@0 │ │ │ │ ├── i2cswitch@77 │ │ │ │ │ └── i2c@3 │ │ │ │ │ │ └── lm75a@4b.conf │ │ │ │ └── nct7362@20.conf │ │ │ │ ├── i2c@1 │ │ │ │ ├── lm75a@48.conf │ │ │ │ ├── lm75a@49.conf │ │ │ │ ├── lm75a@4a.conf │ │ │ │ ├── lm75a@4b.conf │ │ │ │ ├── lm75a@4c.conf │ │ │ │ └── lm75a@4d.conf │ │ │ │ ├── i2c@4 │ │ │ │ └── i2cswitch@73 │ │ │ │ │ └── i2c@0 │ │ │ │ │ └── lm75a@48.conf │ │ │ │ ├── i2c@5 │ │ │ │ └── i2cswitch@73 │ │ │ │ │ └── i2c@0 │ │ │ │ │ └── lm75a@48.conf │ │ │ │ ├── i2c@6 │ │ │ │ └── lm75a@48.conf │ │ │ │ └── i2c@7 │ │ │ │ └── nct7362@20.conf │ │ │ └── bus@1e7a0000 │ │ │ ├── i3c4@6000 │ │ │ ├── sbrmi@3c,22400000002.conf │ │ │ └── sbtsi@4c,22400000001.conf │ │ │ └── i3c5@7000 │ │ │ ├── sbrmi@38,22400000002.conf │ │ │ └── sbtsi@48,22400000001.conf │ │ └── iio-hwmon-adc121c.conf │ └── phosphor-hwmon_%.bbappend ├── meta-ampere ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── conf │ └── layer.conf ├── meta-common │ ├── recipes-ac01 │ │ ├── host │ │ │ ├── ampere-hostctrl.bb │ │ │ ├── ampere-hostctrl │ │ │ │ ├── ampere-chassis-poweroff.service │ │ │ │ ├── ampere-chassis-poweron.service │ │ │ │ ├── ampere-host-force-reset.service │ │ │ │ ├── ampere-host-power-cycle.service │ │ │ │ ├── ampere-host-reset-ack.service │ │ │ │ ├── ampere-host-reset.service │ │ │ │ └── ampere-host-shutdown.service │ │ │ └── files │ │ │ │ ├── ampere_power_util.sh │ │ │ │ └── obmc │ │ │ │ └── gpio │ │ │ │ ├── reboot_ack │ │ │ │ └── shutdown_ack │ │ ├── mac │ │ │ ├── ampere-mac-update.bb │ │ │ └── ampere-mac-update │ │ │ │ ├── ampere_update_mac.service │ │ │ │ └── ampere_update_mac.sh │ │ ├── packagegroups │ │ │ └── packagegroup-ampere-apps.bb │ │ └── usbnet │ │ │ ├── ampere-usbnet.bb │ │ │ └── ampere-usbnet │ │ │ ├── 00-bmc-usb0.network │ │ │ ├── ampere_add_usbnet_gadget.service │ │ │ └── ampere_add_usbnet_gadget.sh │ ├── recipes-extended │ │ └── rsyslog │ │ │ ├── rsyslog │ │ │ ├── rotate-event-logs.service │ │ │ ├── rotate-event-logs.sh │ │ │ ├── rsyslog-override.conf │ │ │ ├── rsyslog.conf │ │ │ └── rsyslog.logrotate │ │ │ └── rsyslog_%.bbappend │ └── recipes-phosphor │ │ ├── flash │ │ ├── phosphor-software-manager │ │ │ └── obmc-flash-host-bios@.service │ │ └── phosphor-software-manager_%.bbappend │ │ ├── interfaces │ │ └── bmcweb_%.bbappend │ │ ├── sel-logger │ │ └── phosphor-sel-logger_%.bbappend │ │ └── state │ │ ├── phosphor-state-manager │ │ └── resetreason.conf │ │ └── phosphor-state-manager_%.bbappend └── meta-jade │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── mtjade.conf │ ├── recipes-ampere │ └── flash │ │ ├── ampere-flash-utils.bb │ │ └── ampere-flash-utils │ │ └── ampere_flash_bios.sh │ ├── recipes-bsp │ └── u-boot │ │ ├── u-boot-aspeed │ │ ├── 0001-aspeed-scu-Switch-PWM-pin-to-GPIO-input-mode.patch │ │ ├── 0002-aspeed-Disable-internal-PD-resistors-for-GPIOs.patch │ │ ├── 0003-aspeed-support-passing-system-reset-status-to-kernel.patch │ │ ├── 0004-aspeed-add-gpio-support.patch │ │ ├── 0005-aspeed-Enable-SPI-master-mode.patch │ │ └── 0006-aspeed-support-Mt.Jade-platform-init.patch │ │ └── u-boot-aspeed_%.bbappend │ ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed │ │ └── mtjade.cfg │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ ├── configuration │ ├── mtjade-yaml-config.bb │ └── mtjade-yaml-config │ │ ├── mtjade-ipmi-fru-properties.yaml │ │ └── mtjade-ipmi-fru.yaml │ ├── console │ ├── obmc-console │ │ ├── ampere_uartmux_ctrl.sh │ │ ├── obmc-console-server-setup.sh │ │ ├── obmc-console-ttyS0-ssh.socket │ │ ├── obmc-console-ttyS0-ssh@.service │ │ ├── obmc-console-ttyS1-ssh.socket │ │ ├── obmc-console-ttyS1-ssh@.service │ │ ├── obmc-console-ttyS2-ssh.socket │ │ ├── obmc-console-ttyS2-ssh@.service │ │ ├── obmc-console-ttyS3-ssh.socket │ │ ├── obmc-console-ttyS3-ssh@.service │ │ ├── obmc-console@.service │ │ ├── server.ttyS0.conf │ │ ├── server.ttyS1.conf │ │ ├── server.ttyS2.conf │ │ └── server.ttyS3.conf │ └── obmc-console_%.bbappend │ ├── gpio │ ├── fault-monitor.bb │ ├── fault-monitor │ │ ├── ampere_fault_led.service │ │ ├── obmc │ │ │ └── gpio │ │ │ │ ├── s0_fault_alert │ │ │ │ └── s1_fault_alert │ │ └── toggle_fault_led.sh │ ├── id-button.bb │ └── id-button │ │ ├── id-button-pressed.service │ │ ├── obmc │ │ └── gpio │ │ │ └── id_button │ │ └── toggle_identify_led.sh │ ├── inventory │ ├── inventory-cleanup.bb │ ├── inventory-cleanup │ │ └── inventory-cleanup.yaml │ ├── phosphor-inventory-manager │ │ └── associations.json │ └── phosphor-inventory-manager_%.bbappend │ ├── ipmi │ ├── phosphor-ipmi-config.bbappend │ ├── phosphor-ipmi-config │ │ └── dev_id.json │ ├── phosphor-ipmi-fru │ │ └── obmc │ │ │ └── eeproms │ │ │ └── system │ │ │ └── chassis │ │ │ └── motherboard │ ├── phosphor-ipmi-fru_%.bbappend │ └── phosphor-ipmi-host_%.bbappend │ ├── leds │ ├── mtjade-led-manager-config-native.bb │ └── mtjade-led-manager-config │ │ └── led.yaml │ ├── packagegroups │ └── packagegroup-obmc-apps.bbappend │ ├── sensors │ ├── phosphor-hwmon │ │ └── obmc │ │ │ └── mtjade │ │ │ └── hwmon │ │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ ├── i2c-bus@100 │ │ │ │ │ ├── tmp175@28.conf │ │ │ │ │ ├── tmp175@29.conf │ │ │ │ │ ├── tmp175@2a.conf │ │ │ │ │ ├── tmp175@2b.conf │ │ │ │ │ ├── tmp175@2c.conf │ │ │ │ │ └── tmp175@2d.conf │ │ │ │ └── i2c-bus@1c0 │ │ │ │ │ ├── psu@58.conf │ │ │ │ │ └── psu@59.conf │ │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ │ ├── iio-hwmon-adc14.conf │ │ │ ├── iio-hwmon-battery.conf │ │ │ └── iio-hwmon.conf │ └── phosphor-hwmon_%.bbappend │ └── skeleton │ ├── obmc-libobmc-intf │ └── gpio_defs.json │ └── obmc-libobmc-intf_%.bbappend ├── meta-arm ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── arm.inc └── recipes-phosphor │ └── packagegroups │ └── packagegroup-arm-apps.bb ├── meta-aspeed ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── classes │ └── socsec-sign.bbclass ├── conf │ ├── bblayers.conf.sample │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ ├── evb-ast2500.conf │ │ ├── evb-ast2600.conf │ │ └── include │ │ ├── aspeed.inc │ │ ├── ast2400.inc │ │ ├── ast2500.inc │ │ └── ast2600.inc ├── recipes-aspeed │ ├── images │ │ ├── aspeed-image-initramfs.bb │ │ └── aspeed-image-norootfs.bb │ └── python │ │ └── socsec_git.bb ├── recipes-bsp │ └── u-boot │ │ ├── files │ │ ├── alt_fw_env.config │ │ ├── default-gcc.patch │ │ ├── fw_env.config │ │ ├── fw_env_ast2600_mmc.config │ │ ├── fw_env_ast2600_nor.config │ │ ├── rsa_oem_dss_key.pem │ │ ├── rsa_pub_oem_dss_key.pem │ │ └── u-boot-env-ast2600.txt │ │ ├── u-boot-aspeed-sdk_2019.04.bb │ │ ├── u-boot-aspeed.inc │ │ ├── u-boot-aspeed_2016.07.bb │ │ ├── u-boot-common-aspeed-sdk_2019.04.inc │ │ ├── u-boot-common-aspeed_2016.07.inc │ │ ├── u-boot-fw-utils-aspeed-sdk_2019.04.bb │ │ └── u-boot-fw-utils-aspeed_2016.07.bb ├── recipes-core │ └── udev │ │ ├── udev-aspeed-mtd-partitions.bb │ │ ├── udev-aspeed-mtd-partitions │ │ └── 76-aspeed-mtd-partitions.rules │ │ ├── udev-aspeed-vuart.bb │ │ └── udev-aspeed-vuart │ │ └── 61-aspeed-vuart.rules ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed.inc │ │ ├── linux-aspeed │ │ ├── aspeed-g4 │ │ │ └── defconfig │ │ ├── aspeed-g5 │ │ │ └── defconfig │ │ ├── aspeed-g6 │ │ │ └── defconfig │ │ ├── rsa_oem_fitimage_key.crt │ │ └── rsa_oem_fitimage_key.key │ │ └── linux-aspeed_git.bb └── wic │ └── emmc-aspeed.wks.in ├── meta-asrock ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── conf │ └── layer.conf └── meta-e3c246d4i │ ├── conf │ ├── bblayers.conf.sample │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── e3c246d4i.conf │ └── recipes-asrock │ └── packagegroups │ └── packagegroup-asrock-apps.bb ├── meta-bytedance ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── conf │ └── layer.conf ├── meta-g220a │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── g220a.conf │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ ├── 0001-bytedance-g220a-Enable-ipmb.patch │ │ │ ├── 0003-misc-aspeed-Add-Aspeed-UART-routing-control-driver.patch │ │ │ ├── 0004-ARM-dts-aspeed-Add-uart-routing-node.patch │ │ │ ├── 0005-ARM-dts-aspeed-Enable-g220a-uart-route.patch │ │ │ └── g220a.cfg │ │ │ └── linux-aspeed_%.bbappend │ ├── recipes-network │ │ └── network │ │ │ ├── static-mac-addr.bb │ │ │ └── static-mac-addr │ │ │ ├── mac-check │ │ │ └── static-mac-addr.service │ ├── recipes-phosphor │ │ ├── chassis │ │ │ ├── x86-power-control │ │ │ │ └── power-config-host0.json │ │ │ └── x86-power-control_%.bbappend │ │ ├── configuration │ │ │ ├── entity-manager │ │ │ │ └── g220a_baseboard.json │ │ │ ├── entity-manager_%.bbappend │ │ │ ├── g220a-yaml-config.bb │ │ │ └── g220a-yaml-config │ │ │ │ ├── g220a-ipmi-fru-properties.yaml │ │ │ │ ├── g220a-ipmi-fru.yaml │ │ │ │ ├── g220a-ipmi-inventory-sensors.yaml │ │ │ │ └── g220a-ipmi-sensors.yaml │ │ ├── console │ │ │ ├── obmc-console │ │ │ │ ├── obmc-console.conf │ │ │ │ └── obmc-console@.service │ │ │ └── obmc-console_%.bbappend │ │ ├── datetime │ │ │ ├── me-time-sync.bb │ │ │ └── me-time-sync │ │ │ │ ├── me-time-sync.service │ │ │ │ └── me-time-sync.sh │ │ ├── fans │ │ │ ├── phosphor-pid-control │ │ │ │ └── phosphor-pid-control.service │ │ │ └── phosphor-pid-control_%.bbappend │ │ ├── images │ │ │ └── obmc-phosphor-image.bbappend │ │ ├── ipmi │ │ │ ├── phosphor-ipmi-config.bbappend │ │ │ ├── phosphor-ipmi-config │ │ │ │ └── channel_config.json │ │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ │ ├── phosphor-ipmi-host_%.bbappend │ │ │ ├── phosphor-ipmi-ipmb │ │ │ │ └── ipmb-channels.json │ │ │ ├── phosphor-ipmi-ipmb_%.bbappend │ │ │ ├── phosphor-ipmi-kcs │ │ │ │ └── 99-ipmi-kcs.rules │ │ │ ├── phosphor-ipmi-kcs_%.bbappend │ │ │ └── phosphor-ipmi-net_%.bbappend │ │ └── logging │ │ │ └── phosphor-hostlogger_%.bbappend │ └── recipes.txt ├── recipes-bytedance │ ├── packagegroups │ │ └── packagegroup-obmc-apps.bbappend │ └── usb-network │ │ ├── files │ │ ├── 00-bmc-usb0.network │ │ └── usb_network.service │ │ └── usb-network.bb ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed │ │ └── usbctl.cfg │ │ └── linux-aspeed_%.bbappend ├── recipes-phosphor │ ├── interfaces │ │ └── bmcweb_%.bbappend │ └── packagegroups │ │ ├── packagegroup-bytedance-apps.bb │ │ └── packagegroup-obmc-phosphor-debugtools.bbappend └── recipes.txt ├── meta-evb ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── README.md ├── conf │ └── layer.conf ├── meta-evb-aspeed │ ├── conf │ │ └── layer.conf │ ├── meta-evb-ast2500 │ │ ├── README.md │ │ └── conf │ │ │ ├── bblayers.conf.sample │ │ │ ├── conf-notes.txt │ │ │ ├── layer.conf │ │ │ ├── local.conf.sample │ │ │ └── machine │ │ │ └── evb-ast2500.conf │ └── meta-evb-ast2600 │ │ ├── README.md │ │ └── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ └── evb-ast2600.conf ├── meta-evb-enclustra │ ├── conf │ │ └── layer.conf │ └── meta-evb-zx3-pm3 │ │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── evb-zx3-pm3.conf │ │ └── recipes-phosphor │ │ └── leds │ │ ├── evb-zx3-pm3-led-manager-config-native.bb │ │ └── evb-zx3-pm3-led-manager-config │ │ └── led.yaml ├── meta-evb-nuvoton │ ├── conf │ │ └── layer.conf │ └── meta-evb-npcm750 │ │ ├── README.md │ │ └── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ └── evb-npcm750.conf └── meta-evb-raspberrypi │ └── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ └── local.conf.sample ├── meta-facebook ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ ├── facebook-compute-multihost.inc │ │ ├── facebook-compute-singlehost.inc │ │ ├── facebook-compute.inc │ │ └── facebook.inc ├── meta-tiogapass │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── tiogapass.conf │ ├── recipes-bsp │ │ └── u-boot │ │ │ ├── u-boot-aspeed │ │ │ └── 0001-configs-ast-common-use-57600-baud-rate-to-match-Tiog.patch │ │ │ ├── u-boot-aspeed_%.bbappend │ │ │ └── u-boot-fw-utils-aspeed_%.bbappend │ ├── recipes-extended │ │ └── rsyslog │ │ │ ├── rsyslog │ │ │ ├── rotate-event-logs.service │ │ │ ├── rotate-event-logs.timer │ │ │ ├── rsyslog.conf │ │ │ └── rsyslog.logrotate │ │ │ └── rsyslog_%.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── tiogapass.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes.txt ├── meta-yosemitev2 │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── yosemitev2.conf │ ├── recipes-bsp │ │ └── u-boot │ │ │ ├── u-boot-aspeed │ │ │ ├── 0001-board-aspeed-Add-Mux-for-yosemitev2.patch │ │ │ └── 0002-spl-host-console-handle.patch │ │ │ └── u-boot-aspeed_%.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── yosemitev2.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes.txt ├── recipes-fb │ ├── fb-powerctrl │ │ ├── fb-powerctrl.bb │ │ └── files │ │ │ ├── LICENSE │ │ │ ├── host-gpio.service │ │ │ ├── host-poweroff.service │ │ │ ├── host-poweron.service │ │ │ ├── power-util │ │ │ └── setup_gpio.sh │ ├── ipmi │ │ └── fb-ipmi-oem_git.bb │ └── packagegroups │ │ └── packagegroup-fb-apps.bb ├── recipes-phosphor │ ├── console │ │ ├── obmc-console │ │ │ ├── tiogapass │ │ │ │ └── server.ttyS2.conf │ │ │ └── yosemitev2 │ │ │ │ ├── client.2200.conf │ │ │ │ ├── client.2201.conf │ │ │ │ ├── client.2202.conf │ │ │ │ ├── client.2203.conf │ │ │ │ ├── server.ttyS0.conf │ │ │ │ ├── server.ttyS1.conf │ │ │ │ ├── server.ttyS2.conf │ │ │ │ └── server.ttyS3.conf │ │ └── obmc-console_%.bbappend │ ├── fans │ │ └── phosphor-pid-control_%.bbappend │ ├── flash │ │ ├── phosphor-software-manager │ │ │ ├── bios-update.sh │ │ │ └── obmc-flash-host-bios@.service │ │ └── phosphor-software-manager_%.bbappend │ ├── hostlogger │ │ ├── phosphor-hostlogger │ │ │ ├── tiogapass │ │ │ │ └── ttyS2.conf │ │ │ └── yosemitev2 │ │ │ │ ├── ttyS0.conf │ │ │ │ ├── ttyS1.conf │ │ │ │ ├── ttyS2.conf │ │ │ │ └── ttyS3.conf │ │ └── phosphor-hostlogger_%.bbappend │ ├── ipmi │ │ ├── phosphor-ipmi-config.bbappend │ │ ├── phosphor-ipmi-config │ │ │ ├── channel_config.json │ │ │ └── dev_id.json │ │ ├── phosphor-ipmi-ipmb │ │ │ ├── tiogapass │ │ │ │ └── ipmb-channels.json │ │ │ └── yosemitev2 │ │ │ │ └── ipmb-channels.json │ │ └── phosphor-ipmi-ipmb_%.bbappend │ ├── sel-logger │ │ └── phosphor-sel-logger_%.bbappend │ ├── sensors │ │ ├── phosphor-nvme │ │ │ └── tiogapass │ │ │ │ └── nvme_config.json │ │ ├── phosphor-nvme_%.bbappend │ │ ├── phosphor-virtual-sensor │ │ │ ├── tiogapass │ │ │ │ └── tiogapass_sensor_config.json │ │ │ └── yosemitev2 │ │ │ │ └── yosemitev2_sensor_config.json │ │ └── phosphor-virtual-sensor_%.bbappend │ ├── settings │ │ ├── phosphor-settings-manager │ │ │ └── yosemitev2 │ │ │ │ └── settings-manager.override.yml │ │ └── phosphor-settings-manager_%.bbappend │ └── watchdog │ │ ├── phosphor-watchdog │ │ ├── phosphor-watchdog-host-cycle.service │ │ ├── phosphor-watchdog-host-poweroff.service │ │ ├── phosphor-watchdog-host-reset.service │ │ └── phosphor-watchdog.service │ │ └── phosphor-watchdog_%.bbappend └── recipes-x86 │ └── chassis │ ├── x86-power-control │ ├── tiogapass │ │ └── chassis-system-reset.service │ └── yosemitev2 │ │ └── chassis-system-reset.service │ └── x86-power-control_%.bbappend ├── meta-fii ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── conf │ └── layer.conf └── meta-kudo │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── kudo.conf │ ├── recipes-bsp │ └── u-boot │ │ ├── u-boot-fw-utils-nuvoton │ │ └── fw_env.config │ │ ├── u-boot-fw-utils-nuvoton_%.bbappend │ │ ├── u-boot-nuvoton │ │ └── kudo.cfg │ │ └── u-boot-nuvoton_%.bbappend │ ├── recipes-extended │ └── rsyslog │ │ ├── rsyslog │ │ ├── rotate-event-logs.service │ │ ├── rotate-event-logs.sh │ │ ├── rsyslog-override.conf │ │ ├── rsyslog.conf │ │ └── rsyslog.logrotate │ │ └── rsyslog_%.bbappend │ ├── recipes-kernel │ └── linux │ │ ├── linux-nuvoton │ │ └── kudo.cfg │ │ └── linux-nuvoton_%.bbappend │ ├── recipes-kudo │ ├── hotswap-power-cycle │ │ ├── files │ │ │ └── hotswap-power-cycle.service │ │ └── hotswap-power-cycle.bb │ ├── ipmi │ │ └── fii-ipmi-oem_git.bb │ ├── kudo-fw-utility │ │ ├── kudo-bios-update.bb │ │ ├── kudo-bios-update │ │ │ ├── config-bios.json │ │ │ └── phosphor-ipmi-flash-bios-update.service │ │ ├── kudo-bmc-update.bb │ │ ├── kudo-bmc-update │ │ │ └── config-bmc.json │ │ ├── kudo-cpld-update.bb │ │ ├── kudo-cpld-update │ │ │ ├── config-bmccpld.json │ │ │ ├── config-mbcpld.json │ │ │ ├── phosphor-ipmi-flash-bmccpld-update.service │ │ │ └── phosphor-ipmi-flash-mbcpld-update.service │ │ ├── kudo-fw.bb │ │ ├── kudo-fw │ │ │ ├── kudo-fw-ver.service │ │ │ ├── kudo-fw-ver.sh │ │ │ ├── kudo-fw.sh │ │ │ └── kudo-lib.sh │ │ ├── kudo-scp-update.bb │ │ └── kudo-scp-update │ │ │ ├── config-scp.json │ │ │ ├── config-scpback.json │ │ │ ├── phosphor-ipmi-flash-scp-update.service │ │ │ └── phosphor-ipmi-flash-scpback-update.service │ ├── kudo-sys-utility │ │ ├── kudo-boot.bb │ │ ├── kudo-boot │ │ │ ├── host-powerctrl.service │ │ │ └── init_once.sh │ │ ├── kudo-cmd.bb │ │ └── kudo-cmd │ │ │ ├── kudo-ras.sh │ │ │ └── kudo.sh │ ├── kudo-system │ │ ├── kudo-entity-association-map.bb │ │ └── kudo-entity-association-map │ │ │ └── kudo_entity_association_map.json │ ├── network │ │ ├── usb-network.bb │ │ └── usb-network │ │ │ ├── 00-bmc-usb0.network │ │ │ ├── usb_network.service │ │ │ └── usb_network.sh │ └── packagegroups │ │ └── packagegroup-kudo-apps.bb │ └── recipes-phosphor │ ├── configuration │ ├── entity-manager │ │ ├── blacklist.json │ │ └── kudo.json │ └── entity-manager_%.bbappend │ ├── console │ ├── obmc-console │ │ ├── kudo_uart_mux_ctrl.sh │ │ ├── obmc-console@.service │ │ ├── server.ttyS1.conf │ │ └── server.ttyS3.conf │ └── obmc-console_%.bbappend │ ├── fans │ ├── phosphor-pid-control │ │ └── phosphor-pid-control.service │ ├── phosphor-pid-control_%.bbappend │ ├── pwm-init.bb │ └── pwm-init │ │ ├── bin │ │ └── pwm_init.sh │ │ └── pwm_init.service │ ├── image │ └── obmc-phosphor-image.bbappend │ ├── ipmi │ ├── phosphor-ipmi-blobs-binarystore │ │ └── config.json │ ├── phosphor-ipmi-blobs-binarystore_%.bbappend │ ├── phosphor-ipmi-flash_%.bbappend │ └── phosphor-ipmi-host_%.bbappend │ ├── sel-logger │ └── phosphor-sel-logger_%.bbappend │ └── sensors │ ├── phosphor-virtual-sensor │ ├── tla2024-enable.service │ ├── tla2024-enable.sh │ └── virtual_sensor_config.json │ └── phosphor-virtual-sensor_%.bbappend ├── meta-google ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README ├── conf │ ├── distro │ │ └── gbmc.conf │ └── layer.conf ├── dynamic-layers │ ├── aspeed-layer │ │ └── recipes-kernel │ │ │ └── linux │ │ │ └── linux-aspeed_%.bbappend │ └── nuvoton-layer │ │ ├── recipes-bsp │ │ └── images │ │ │ ├── npcm7xx-igps-native_%.bbappend │ │ │ └── npcm7xx-igps │ │ │ └── 0001-Set-FIU0_DRD_CFG-and-FIU_Clk_divider-for-gbmc-hoth.patch │ │ └── recipes-kernel │ │ └── linux │ │ ├── files │ │ └── gbmc-nuvoton.cfg │ │ └── linux-nuvoton_%.bbappend ├── recipes-connectivity │ └── avahi │ │ ├── avahi_%.bbappend │ │ └── files │ │ └── avahi-daemon.conf ├── recipes-core │ ├── busybox │ │ ├── busybox_%.bbappend │ │ └── files │ │ │ └── gbmc.cfg │ ├── dropbear │ │ ├── dropbear │ │ │ └── dropbear.default │ │ └── dropbear_%.bbappend │ └── systemd │ │ └── systemd_%.bbappend ├── recipes-extended │ ├── libconfig │ │ ├── conf2struct-native_git.bb │ │ ├── files │ │ │ ├── 0001-conf2struct-Use-the-right-perl.patch │ │ │ └── 0001-makefile-Add-missing-LDFLAGS.patch │ │ ├── libconfig-perl_0.100.bb │ │ └── libconfig_%.bbappend │ └── networking │ │ ├── files │ │ ├── bridge-stp │ │ └── mstpd.service │ │ ├── mstpd_git.bb │ │ └── sslh_git.bb ├── recipes-google │ ├── acpi-power-state-daemon │ │ └── acpi-power-state-daemon_git.bb │ ├── default-ca-dev │ │ ├── default-ca-dev.bb │ │ └── default-ca-dev │ │ │ └── certs │ │ │ └── authority │ │ │ └── Quanta_CA.crt │ ├── default-users │ │ └── default-users.bb │ ├── google-misc │ │ └── google-misc.inc │ ├── ipmi │ │ ├── google-ipmi-i2c_git.bb │ │ ├── google-ipmi-sys_git.bb │ │ ├── ipmi-fru-sh.bb │ │ ├── ipmi-fru-sh │ │ │ └── lib.sh │ │ └── metrics-ipmi-blobs_git.bb │ ├── kcs │ │ ├── gbmc-kcs-config.bb │ │ └── google-kcsbridge_git.bb │ ├── nanopb │ │ └── nanopb_0.4.5.bb │ ├── ncsi │ │ ├── files │ │ │ ├── 50-gbmc-ncsi.rules.in │ │ │ ├── gbmc-ncsi-br-pub-addr.sh.in │ │ │ ├── gbmc-ncsi-nft.sh.in │ │ │ ├── gbmc-ncsi-sslh.service │ │ │ └── gbmc-ncsi-sslh.socket.in │ │ ├── gbmc-ncsi-config.bb │ │ └── ncsid_git.bb │ ├── networking │ │ ├── files │ │ │ ├── gbmc-ip-monitor-test.sh │ │ │ ├── gbmc-ip-monitor.service │ │ │ ├── gbmc-ip-monitor.sh │ │ │ ├── gbmc-mac-config.service │ │ │ ├── gbmc-mac-config.sh.in │ │ │ └── iperf3.service │ │ ├── gbmc-bridge.bb │ │ ├── gbmc-bridge │ │ │ ├── +-bmc-gbmcbrusb.network │ │ │ ├── -bmc-gbmcbr.netdev │ │ │ ├── -bmc-gbmcbr.network.in │ │ │ ├── -bmc-gbmcbrdummy.netdev │ │ │ ├── -bmc-gbmcbrdummy.network │ │ │ ├── 50-gbmc-br.rules │ │ │ ├── gbmc-br-ensure-ra.service │ │ │ ├── gbmc-br-ensure-ra.sh │ │ │ ├── gbmc-br-from-ra.sh │ │ │ ├── gbmc-br-gw-src.sh │ │ │ ├── gbmc-br-nft.sh │ │ │ ├── gbmc-br-ula.sh │ │ │ └── ipmi.service.in │ │ ├── gbmc-ip-monitor.bb │ │ ├── gbmc-iperf3.bb │ │ ├── gbmc-mac-config.bb │ │ ├── network-sh.bb │ │ └── network-sh │ │ │ ├── lib.sh │ │ │ └── test.sh │ ├── nftables │ │ ├── files │ │ │ ├── nft-configure.sh │ │ │ └── nftables.service │ │ └── nftables-systemd.bb │ ├── ssh │ │ ├── authorized-keys-comp.bb │ │ ├── authorized-keys-comp │ │ │ ├── authorized-keys-comp.service │ │ │ └── authorized-keys-comp.sh │ │ ├── gbmc-dev-ssh-key.bb │ │ └── gbmc-dev-ssh-key │ │ │ ├── gbmc-dev.priv │ │ │ └── gbmc-dev.pub │ ├── systemd │ │ ├── files │ │ │ ├── 40-gbmc-forward.conf │ │ │ ├── firmware-updates-pre.target │ │ │ └── firmware-updates.target │ │ └── gbmc-systemd-config.bb │ └── test │ │ ├── test-sh.bb │ │ └── test-sh │ │ ├── lib.sh │ │ └── test.sh ├── recipes-kernel │ └── linux │ │ └── files │ │ ├── gbmc-dev.cfg │ │ ├── gbmc-prod.cfg │ │ └── gbmc.cfg └── recipes-phosphor │ ├── dbus │ └── phosphor-dbus-interfaces-mapper-config-native.bbappend │ ├── images │ └── obmc-phosphor-image.bbappend │ └── ipmi │ └── phosphor-ipmi-ethstats_%.bbappend ├── meta-hpe ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── hpe.inc ├── meta-common │ └── recipes-phosphor │ │ ├── image │ │ └── obmc-phosphor-image.bbappend │ │ ├── initrdscripts │ │ ├── files │ │ │ └── gxp-obmc-init.sh │ │ └── obmc-phosphor-initfs.bbappend │ │ └── packagegroups │ │ ├── packagegroup-hpe-apps.bb │ │ └── packagegroup-obmc-apps.bbappend ├── meta-dl360poc │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── dl360poc.conf │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-obmc │ │ │ └── gxp.dts │ │ │ └── linux-obmc_%.bbappend │ └── recipes-phosphor │ │ └── image │ │ └── obmc-phosphor-image.bbappend └── meta-gxp │ ├── classes │ └── gxp-bootblock-n-poc.bbclass │ ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ ├── gxp.inc │ │ └── hpe_soc.inc │ ├── recipes-bsp │ ├── image │ │ └── gxp-bootblock.bb │ └── u-boot │ │ ├── u-boot-common-gxp_2019.07.inc │ │ └── u-boot-gxp_2019.07.bb │ ├── recipes-core │ └── udev │ │ ├── udev-gxp-mtd-partitions.bb │ │ └── udev-gxp-mtd-partitions │ │ └── 76-gxp-mtd-partitions.rules │ └── recipes-kernel │ └── linux │ ├── linux-obmc.inc │ ├── linux-obmc │ └── defconfig │ └── linux-obmc_5.7.bb ├── meta-hxt ├── MAINTAINERS ├── OWNERS ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── hxt.inc └── meta-stardragon4800-rep2 │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── stardragon4800-rep2.conf │ └── recipes-phosphor │ ├── console │ ├── obmc-console │ │ └── obmc-console.conf │ ├── obmc-console_%.bbappend │ ├── stardragon4800-rep2-console-client.bb │ └── stardragon4800-rep2-console-client │ │ ├── stardragon4800-rep2-console-client.sh │ │ └── stardragon4800-rep2-console-client@.service │ ├── sensors │ ├── phosphor-hwmon │ │ └── obmc │ │ │ └── hwmon │ │ │ ├── ahb │ │ │ ├── apb │ │ │ │ └── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── ir38163@12.conf │ │ │ │ │ ├── ir38163@42.conf │ │ │ │ │ ├── ir38163@44.conf │ │ │ │ │ ├── ir38163@46.conf │ │ │ │ │ ├── ir38163@48.conf │ │ │ │ │ ├── pxm1310@02.conf │ │ │ │ │ └── pxm1310@04.conf │ │ │ │ │ ├── i2c-bus@1c0 │ │ │ │ │ ├── nvt210@4c.conf │ │ │ │ │ ├── tmp421@1d.conf │ │ │ │ │ ├── tmp421@1f.conf │ │ │ │ │ ├── tmp421@4d.conf │ │ │ │ │ └── tmp421@4f.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ ├── adm1278@10.conf │ │ │ │ │ └── adm1278@11.conf │ │ │ │ │ ├── i2c-bus@340 │ │ │ │ │ └── pca9641@70 │ │ │ │ │ │ └── i2c-arb │ │ │ │ │ │ ├── adm1278@12.conf │ │ │ │ │ │ ├── ds1100@58.conf │ │ │ │ │ │ ├── max31790@20.conf │ │ │ │ │ │ ├── max31790@23.conf │ │ │ │ │ │ └── tmp421@1d.conf │ │ │ │ │ └── i2c-bus@80 │ │ │ │ │ ├── tmp421@1c.conf │ │ │ │ │ ├── tmp421@1e.conf │ │ │ │ │ ├── tmp421@2a.conf │ │ │ │ │ └── tmp421@4e.conf │ │ │ └── flash-controller@1e631000 │ │ │ │ └── spi2@0.conf │ │ │ └── iio-hwmon.conf │ └── phosphor-hwmon_%.bbappend │ ├── socupdate │ ├── files │ │ └── socupdate.sh │ └── socupdate.bb │ └── workbook │ ├── stardragon4800-rep2-config.bb │ └── stardragon4800-rep2-config │ └── Stardragon4800-rep2.py ├── meta-ibm ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── distro │ │ └── include │ │ │ ├── ibm-mpreboot.inc │ │ │ └── ibm-yaml.inc │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ ├── mihawk.conf │ │ ├── p10bmc.conf │ │ ├── swift.conf │ │ ├── witherspoon-tacoma.conf │ │ └── witherspoon.conf ├── meta-fsp2 │ ├── COPYING.MIT │ ├── COPYING.apache-2.0 │ ├── LICENSE │ ├── conf │ │ ├── layer.conf │ │ └── machine │ │ │ ├── include │ │ │ └── fsp2.inc │ │ │ └── sunray2.conf │ ├── recipes-bsp │ │ └── u-boot │ │ │ └── u-boot-fsp2_git.bb │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-fsp2.inc │ │ │ └── linux-fsp2_4.17.bb │ └── recipes.txt ├── meta-palmetto │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── palmetto.conf │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── palmetto.cfg │ │ │ └── linux-aspeed_%.bbappend │ ├── recipes-phosphor │ │ ├── configuration │ │ │ ├── palmetto-yaml-config.bb │ │ │ └── palmetto-yaml-config │ │ │ │ ├── palmetto-ipmi-fru-properties.yaml │ │ │ │ ├── palmetto-ipmi-fru.yaml │ │ │ │ └── palmetto-ipmi-sensors.yaml │ │ ├── console │ │ │ ├── obmc-console │ │ │ │ └── obmc-console.conf │ │ │ └── obmc-console_%.bbappend │ │ ├── host │ │ │ ├── checkstop-monitor.bbappend │ │ │ └── checkstop-monitor │ │ │ │ └── obmc │ │ │ │ └── gpio │ │ │ │ └── checkstop │ │ ├── images │ │ │ └── obmc-phosphor-image.bbappend │ │ ├── inventory │ │ │ ├── inventory-cleanup.bb │ │ │ ├── inventory-cleanup │ │ │ │ └── inventory-cleanup.yaml │ │ │ └── phosphor-inventory-manager_%.bbappend │ │ ├── ipmi │ │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ │ └── phosphor-ipmi-host_%.bbappend │ │ ├── leds │ │ │ ├── palmetto-led-manager-config-native.bb │ │ │ └── palmetto-led-manager-config │ │ │ │ └── led.yaml │ │ ├── mrw │ │ │ ├── mrw-native │ │ │ │ └── palmetto.xml.patch.xml │ │ │ └── mrw-native_%.bbappend │ │ ├── occ │ │ │ ├── files │ │ │ │ └── occ_sensor.yaml │ │ │ └── palmetto-occ-control-config-native.bb │ │ ├── packagegroups │ │ │ └── packagegroup-obmc-apps.bbappend │ │ ├── sensors │ │ │ ├── phosphor-hwmon │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ └── ahb │ │ │ │ │ └── apb │ │ │ │ │ └── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@100 │ │ │ │ │ └── occ-hwmon@50.conf │ │ │ │ │ ├── i2c-bus@40 │ │ │ │ │ └── rtc@68.conf │ │ │ │ │ └── i2c-bus@c0 │ │ │ │ │ └── tmp423@4c.conf │ │ │ └── phosphor-hwmon_%.bbappend │ │ └── skeleton │ │ │ ├── obmc-libobmc-intf │ │ │ └── gpio_defs.json │ │ │ └── obmc-libobmc-intf_%.bbappend │ └── recipes.txt ├── meta-romulus │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── romulus.conf │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── romulus.cfg │ │ │ └── linux-aspeed_%.bbappend │ ├── recipes-phosphor │ │ ├── chassis │ │ │ ├── avsbus-control.bb │ │ │ ├── avsbus-control │ │ │ │ ├── avsbus-disable.sh │ │ │ │ ├── avsbus-disable@.service │ │ │ │ ├── avsbus-enable.sh │ │ │ │ └── avsbus-enable@.service │ │ │ ├── vrm-control.bb │ │ │ └── vrm-control │ │ │ │ ├── vrm-control.sh │ │ │ │ ├── vrm-control@.service │ │ │ │ └── vrm.sh │ │ ├── configuration │ │ │ ├── romulus-yaml-config.bb │ │ │ └── romulus-yaml-config │ │ │ │ ├── romulus-ipmi-fru-bmc.yaml │ │ │ │ ├── romulus-ipmi-fru-properties.yaml │ │ │ │ ├── romulus-ipmi-fru.yaml │ │ │ │ ├── romulus-ipmi-inventory-sensors.yaml │ │ │ │ └── romulus-ipmi-sensors.yaml │ │ ├── console │ │ │ ├── obmc-console │ │ │ │ └── obmc-console.conf │ │ │ └── obmc-console_%.bbappend │ │ ├── fans │ │ │ ├── phosphor-fan-control-events-config.bbappend │ │ │ ├── phosphor-fan-control-events-config │ │ │ │ └── events.yaml │ │ │ ├── phosphor-fan-control-fan-config.bbappend │ │ │ ├── phosphor-fan-control-fan-config │ │ │ │ └── fans.yaml │ │ │ ├── phosphor-fan-control-zone-config.bbappend │ │ │ ├── phosphor-fan-control-zone-config │ │ │ │ └── zones.yaml │ │ │ ├── phosphor-fan-monitor-config.bbappend │ │ │ ├── phosphor-fan-monitor-config │ │ │ │ └── monitor.yaml │ │ │ ├── phosphor-fan-presence-config.bbappend │ │ │ └── phosphor-fan-presence-config │ │ │ │ └── config.yaml │ │ ├── flash │ │ │ └── phosphor-software-manager_%.bbappend │ │ ├── gpio │ │ │ ├── id-button.bb │ │ │ └── id-button │ │ │ │ ├── id-button-pressed.service │ │ │ │ ├── obmc │ │ │ │ └── gpio │ │ │ │ │ └── id_button │ │ │ │ └── toggle_identify_led.sh │ │ ├── host │ │ │ └── p9-host-start.bbappend │ │ ├── images │ │ │ └── obmc-phosphor-image.bbappend │ │ ├── inventory │ │ │ ├── inventory-cleanup.bb │ │ │ ├── inventory-cleanup │ │ │ │ └── inventory-cleanup.yaml │ │ │ └── phosphor-inventory-manager_%.bbappend │ │ ├── ipmi │ │ │ ├── openpower-ipmi-oem_%.bbappend │ │ │ ├── phosphor-ipmi-config.bbappend │ │ │ ├── phosphor-ipmi-config │ │ │ │ ├── dcmi_cap.json │ │ │ │ ├── dcmi_sensors.json │ │ │ │ └── dev_id.json │ │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ │ └── phosphor-ipmi-host_%.bbappend │ │ ├── leds │ │ │ ├── romulus-led-manager-config-native.bb │ │ │ └── romulus-led-manager-config │ │ │ │ └── led.yaml │ │ ├── logging │ │ │ ├── files │ │ │ │ └── callouts.yaml │ │ │ └── romulus-phosphor-logging-callouts-native.bb │ │ ├── mboxd │ │ │ └── mboxd_%.bbappend │ │ ├── occ │ │ │ ├── files │ │ │ │ └── occ_sensor.yaml │ │ │ └── romulus-occ-control-config-native.bb │ │ ├── packagegroups │ │ │ └── packagegroup-obmc-apps.bbappend │ │ ├── sensors │ │ │ ├── phosphor-hwmon │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ ├── ahb │ │ │ │ │ └── apb │ │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ │ └── i2c-bus@440 │ │ │ │ │ │ │ └── w83773g@4c.conf │ │ │ │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ │ │ │ ├── devices │ │ │ │ │ └── platform │ │ │ │ │ │ └── gpio-fsi │ │ │ │ │ │ └── fsi0 │ │ │ │ │ │ └── slave@00--00 │ │ │ │ │ │ ├── 00--00--00--06 │ │ │ │ │ │ └── sbefifo1-dev0 │ │ │ │ │ │ │ └── occ-hwmon.1.conf │ │ │ │ │ │ └── 00--00--00--0a │ │ │ │ │ │ └── fsi1 │ │ │ │ │ │ └── slave@01--00 │ │ │ │ │ │ └── 01--01--00--06 │ │ │ │ │ │ └── sbefifo2-dev0 │ │ │ │ │ │ └── occ-hwmon.2.conf │ │ │ │ │ └── iio-hwmon-battery.conf │ │ │ └── phosphor-hwmon_%.bbappend │ │ ├── skeleton │ │ │ ├── obmc-libobmc-intf │ │ │ │ └── gpio_defs.json │ │ │ └── obmc-libobmc-intf_%.bbappend │ │ └── state │ │ │ ├── phosphor-state-manager │ │ │ └── obmc │ │ │ │ └── phosphor-reboot-host │ │ │ │ └── reboot.conf │ │ │ └── phosphor-state-manager_%.bbappend │ └── recipes.txt ├── recipes-core │ └── systemd │ │ ├── systemd │ │ ├── journald-size-policy-16MB.conf │ │ ├── journald-size-policy-2MB.conf │ │ ├── journald-storage-policy.conf │ │ └── systemd-journald-override.conf │ │ └── systemd_%.bbappend ├── recipes-extended │ └── sudo │ │ └── sudo_%.bbappend ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed │ │ ├── mihawk.cfg │ │ ├── p10bmc.cfg │ │ └── witherspoon.cfg │ │ └── linux-aspeed_%.bbappend ├── recipes-phosphor │ ├── certificate │ │ └── phosphor-certificate-manager_%.bbappend │ ├── chassis │ │ ├── avsbus-control.bb │ │ ├── avsbus-control │ │ │ ├── mihawk │ │ │ │ ├── avsbus-disable.sh │ │ │ │ ├── avsbus-disable@.service │ │ │ │ ├── avsbus-enable.sh │ │ │ │ └── avsbus-enable@.service │ │ │ ├── swift │ │ │ │ ├── avsbus-enable.sh │ │ │ │ └── avsbus-enable@.service │ │ │ └── witherspoon │ │ │ │ ├── avsbus-disable.sh │ │ │ │ ├── avsbus-disable@.service │ │ │ │ ├── avsbus-enable.sh │ │ │ │ └── avsbus-enable@.service │ │ ├── obmc-op-control-power_%.bbappend │ │ ├── obmc-op-control-power_% │ │ │ └── ibm-ac-server │ │ │ │ └── obmc │ │ │ │ └── power_control │ │ ├── power-workarounds.bb │ │ ├── power-workarounds │ │ │ ├── swift │ │ │ │ ├── power-workarounds.sh │ │ │ │ └── power-workarounds@.service │ │ │ └── witherspoon │ │ │ │ ├── power-workarounds.sh │ │ │ │ └── power-workarounds@.service │ │ ├── vrm-control.bb │ │ └── vrm-control │ │ │ ├── ibm-ac-server │ │ │ └── ir35221-unbind-bind.sh │ │ │ ├── ir35221-on-bind@.service │ │ │ ├── ir35221-on-unbind@.service │ │ │ ├── mihawk │ │ │ └── ir35221-unbind-bind.sh │ │ │ ├── vrm-control.sh │ │ │ └── vrm-control@.service │ ├── configuration │ │ ├── acx22-yaml-config.bb │ │ └── acx22-yaml-config │ │ │ ├── acx22-ipmi-inventory-sensors.yaml │ │ │ ├── acx22-ipmi-occ-sensors.yaml │ │ │ ├── acx22-ipmi-sensors-mrw.yaml │ │ │ ├── mihawk │ │ │ ├── acx22-ipmi-fru-bmc.yaml │ │ │ └── acx22-ipmi-hwmon-sensors.yaml │ │ │ ├── swift │ │ │ ├── acx22-ipmi-fru-bmc.yaml │ │ │ ├── acx22-ipmi-fru-not-sent-by-host.yaml │ │ │ └── acx22-ipmi-hwmon-sensors.yaml │ │ │ └── witherspoon │ │ │ ├── acx22-ipmi-fru-bmc.yaml │ │ │ ├── acx22-ipmi-fru-not-sent-by-host.yaml │ │ │ └── acx22-ipmi-hwmon-sensors.yaml │ ├── console │ │ ├── obmc-console │ │ │ ├── ibm-ac-server │ │ │ │ └── server.ttyVUART0.conf │ │ │ ├── mihawk │ │ │ │ └── server.ttyVUART0.conf │ │ │ ├── p10bmc │ │ │ │ ├── client.2201.conf │ │ │ │ ├── server.ttyVUART0.conf │ │ │ │ └── server.ttyVUART1.conf │ │ │ └── witherspoon-tacoma │ │ │ │ ├── client.2201.conf │ │ │ │ ├── server.ttyVUART0.conf │ │ │ │ └── server.ttyVUART1.conf │ │ └── obmc-console_%.bbappend │ ├── dbus │ │ ├── events-policy.bb │ │ ├── events-policy │ │ │ └── config.yaml │ │ ├── fan-policy.bb │ │ ├── fan-policy │ │ │ ├── mihawk │ │ │ │ ├── air-cooled.yaml │ │ │ │ └── fan-errors.yaml │ │ │ ├── swift │ │ │ │ ├── air-cooled.yaml │ │ │ │ ├── fan-errors.yaml │ │ │ │ └── water-cooled.yaml │ │ │ └── witherspoon │ │ │ │ ├── air-cooled.yaml │ │ │ │ ├── fan-errors.yaml │ │ │ │ └── water-cooled.yaml │ │ ├── ibm-dbus-interfaces-mapper-config-native.bb │ │ ├── ibm-dbus-interfaces_git.bb │ │ ├── phosphor-dbus-monitor-config.bbappend │ │ ├── phosphor-dbus-monitor_%.bbappend │ │ ├── phosphor-mapper-config-native.bbappend │ │ ├── power-supply-policy.bb │ │ ├── power-supply-policy │ │ │ └── power-supply-policy.yaml │ │ ├── thermal-policy.bb │ │ └── thermal-policy │ │ │ ├── ibm-ac-server │ │ │ └── thermal-policy.yaml │ │ │ └── mihawk │ │ │ └── thermal-policy.yaml │ ├── dump │ │ ├── phosphor-debug-collector │ │ │ └── plugins.d │ │ │ │ ├── ibm_elogall │ │ │ │ └── pels │ │ └── phosphor-debug-collector_%.bbappend │ ├── fans │ │ ├── fan-watchdog.bb │ │ ├── fan-watchdog │ │ │ ├── fan-watchdog-monitor@.service │ │ │ ├── fan-watchdog.service │ │ │ ├── p10bmc │ │ │ │ └── obmc │ │ │ │ │ └── fan-watchdog │ │ │ │ │ ├── fan-watchdog.conf │ │ │ │ │ └── reset-fan-watchdog.conf │ │ │ ├── reset-fan-watchdog.service │ │ │ ├── swift │ │ │ │ └── obmc │ │ │ │ │ └── fan-watchdog │ │ │ │ │ ├── fan-watchdog.conf │ │ │ │ │ └── reset-fan-watchdog.conf │ │ │ ├── witherspoon-tacoma │ │ │ │ └── obmc │ │ │ │ │ └── fan-watchdog │ │ │ │ │ ├── fan-watchdog.conf │ │ │ │ │ └── reset-fan-watchdog.conf │ │ │ └── witherspoon │ │ │ │ └── obmc │ │ │ │ └── fan-watchdog │ │ │ │ ├── fan-watchdog.conf │ │ │ │ └── reset-fan-watchdog.conf │ │ ├── phosphor-fan-control-events-config.bbappend │ │ ├── phosphor-fan-control-events-config │ │ │ ├── mihawk │ │ │ │ └── events.yaml │ │ │ └── witherspoon │ │ │ │ └── events.yaml │ │ ├── phosphor-fan-control-fan-config.bbappend │ │ ├── phosphor-fan-control-fan-config │ │ │ ├── mihawk │ │ │ │ └── fans.yaml │ │ │ ├── swift │ │ │ │ └── fans.yaml │ │ │ └── witherspoon │ │ │ │ └── fans.yaml │ │ ├── phosphor-fan-control-zone-conditions-config.bbappend │ │ ├── phosphor-fan-control-zone-conditions-config │ │ │ ├── mihawk │ │ │ │ └── zone_conditions.yaml │ │ │ ├── swift │ │ │ │ └── zone_conditions.yaml │ │ │ └── witherspoon │ │ │ │ └── zone_conditions.yaml │ │ ├── phosphor-fan-control-zone-config.bbappend │ │ ├── phosphor-fan-control-zone-config │ │ │ ├── mihawk │ │ │ │ └── zones.yaml │ │ │ ├── swift │ │ │ │ └── zones.yaml │ │ │ └── witherspoon │ │ │ │ └── zones.yaml │ │ ├── phosphor-fan-monitor-config.bbappend │ │ ├── phosphor-fan-monitor-config │ │ │ ├── mihawk │ │ │ │ └── monitor.yaml │ │ │ ├── p10bmc │ │ │ │ ├── everest │ │ │ │ │ └── config.json │ │ │ │ ├── rainier-1s4u │ │ │ │ │ └── config.json │ │ │ │ ├── rainier-2u │ │ │ │ │ └── config.json │ │ │ │ └── rainier-4u │ │ │ │ │ └── config.json │ │ │ ├── swift │ │ │ │ └── monitor.yaml │ │ │ └── witherspoon │ │ │ │ └── config.json │ │ ├── phosphor-fan-presence-config.bbappend │ │ ├── phosphor-fan-presence-config │ │ │ ├── mihawk │ │ │ │ └── config.yaml │ │ │ ├── p10bmc │ │ │ │ ├── everest │ │ │ │ │ └── config.json │ │ │ │ ├── rainier-1s4u │ │ │ │ │ └── config.json │ │ │ │ ├── rainier-2u │ │ │ │ │ └── config.json │ │ │ │ └── rainier-4u │ │ │ │ │ └── config.json │ │ │ ├── swift │ │ │ │ └── config.yaml │ │ │ └── witherspoon │ │ │ │ └── config.json │ │ ├── phosphor-fan │ │ │ ├── fan-watchdog-conflicts.conf │ │ │ ├── fan-watchdog-monitor.conf │ │ │ ├── mihawk │ │ │ │ ├── obmc │ │ │ │ │ └── phosphor-fan │ │ │ │ │ │ └── phosphor-cooling-type-0.conf │ │ │ │ └── phosphor-cooling-type@.service │ │ │ ├── p10bmc │ │ │ │ ├── everest │ │ │ │ │ ├── fans.json │ │ │ │ │ └── zones.json │ │ │ │ ├── manager.json │ │ │ │ ├── rainier-1s4u │ │ │ │ │ ├── fans.json │ │ │ │ │ └── zones.json │ │ │ │ ├── rainier-2u │ │ │ │ │ └── zones.json │ │ │ │ ├── rainier-4u │ │ │ │ │ └── zones.json │ │ │ │ └── rainier │ │ │ │ │ └── fans.json │ │ │ ├── swift │ │ │ │ ├── obmc │ │ │ │ │ └── phosphor-fan │ │ │ │ │ │ └── phosphor-cooling-type-0.conf │ │ │ │ └── phosphor-cooling-type@.service │ │ │ ├── witherspoon-tacoma │ │ │ │ └── obmc │ │ │ │ │ └── phosphor-fan │ │ │ │ │ └── phosphor-cooling-type-0.conf │ │ │ └── witherspoon │ │ │ │ ├── obmc │ │ │ │ └── phosphor-fan │ │ │ │ │ └── phosphor-cooling-type-0.conf │ │ │ │ ├── phosphor-cooling-type@.service │ │ │ │ └── phosphor-fan-control@.service │ │ └── phosphor-fan_%.bbappend │ ├── flash │ │ ├── openpower-software-manager_%.bbappend │ │ └── phosphor-software-manager_%.bbappend │ ├── gpio │ │ ├── id-button.bb │ │ ├── id-button │ │ │ ├── id-button-pressed.service │ │ │ ├── obmc │ │ │ │ └── gpio │ │ │ │ │ └── id_button │ │ │ └── toggle_identify_led.sh │ │ ├── phosphor-gpio-monitor │ │ │ ├── mihawk │ │ │ │ └── obmc │ │ │ │ │ └── gpio │ │ │ │ │ ├── phosphor-power-supply-0.conf │ │ │ │ │ └── phosphor-power-supply-1.conf │ │ │ ├── obmc │ │ │ │ └── gpio │ │ │ │ │ └── phosphor-power-supply-0.conf │ │ │ ├── p10bmc │ │ │ │ └── obmc │ │ │ │ │ └── gpio │ │ │ │ │ ├── phosphor-power-supply-0.conf │ │ │ │ │ ├── phosphor-power-supply-1.conf │ │ │ │ │ ├── phosphor-power-supply-2.conf │ │ │ │ │ └── phosphor-power-supply-3.conf │ │ │ ├── swift │ │ │ │ └── obmc │ │ │ │ │ └── gpio │ │ │ │ │ └── phosphor-power-supply-1.conf │ │ │ ├── witherspoon-tacoma │ │ │ │ └── obmc │ │ │ │ │ └── gpio │ │ │ │ │ ├── phosphor-power-supply-0.conf │ │ │ │ │ └── phosphor-power-supply-1.conf │ │ │ └── witherspoon │ │ │ │ └── obmc │ │ │ │ └── gpio │ │ │ │ └── phosphor-power-supply-1.conf │ │ └── phosphor-gpio-monitor_%.bbappend │ ├── host │ │ ├── p9-host-start.bbappend │ │ └── phosphor-host-postd_%.bbappend │ ├── images │ │ └── obmc-phosphor-image.bbappend │ ├── interfaces │ │ └── bmcweb_%.bbappend │ ├── inventory │ │ ├── inventory-cleanup.bb │ │ ├── inventory-cleanup │ │ │ ├── swift │ │ │ │ └── inventory-cleanup.yaml │ │ │ └── witherspoon │ │ │ │ └── inventory-cleanup.yaml │ │ ├── phosphor-inventory-manager │ │ │ ├── associations.json │ │ │ └── p10bmc │ │ │ │ ├── ibm,everest_associations.json │ │ │ │ ├── ibm,rainier-2u_associations.json │ │ │ │ └── ibm,rainier-4u_associations.json │ │ └── phosphor-inventory-manager_%.bbappend │ ├── ipmi │ │ ├── openpower-ipmi-oem_%.bbappend │ │ ├── phosphor-ipmi-config.bbappend │ │ ├── phosphor-ipmi-config │ │ │ ├── ibm-ac-server │ │ │ │ ├── channel_config.json │ │ │ │ ├── dcmi_sensors.json │ │ │ │ ├── dev_id.json │ │ │ │ └── power_reading.json │ │ │ └── mihawk │ │ │ │ ├── channel_config.json │ │ │ │ ├── dcmi_sensors.json │ │ │ │ ├── dev_id.json │ │ │ │ └── power_reading.json │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ ├── phosphor-ipmi-host_%.bbappend │ │ ├── phosphor-ipmi-net_%.bbappend │ │ └── wistron-ipmi-oem_git.bb │ ├── leds │ │ ├── mihawk-led-manager-config-native.bb │ │ ├── mihawk-led-manager-config │ │ │ └── led.yaml │ │ ├── phosphor-led-manager │ │ │ ├── lamp-test-led-overrides.json │ │ │ ├── obmc-led-create-virtual-leds@.service │ │ │ ├── obmc-led-set-all-groups-asserted@.service │ │ │ └── obmc │ │ │ │ └── led │ │ │ │ └── set-all │ │ │ │ └── groups │ │ │ │ └── config │ │ ├── phosphor-led-manager_%.bbappend │ │ ├── swift-led-manager-config-native.bb │ │ └── swift-led-manager-config │ │ │ └── led.yaml │ ├── logging │ │ ├── ibm-logging │ │ │ ├── com.ibm.Logging.service │ │ │ ├── ibm-ac-server │ │ │ │ └── policyTable.json │ │ │ ├── mihawk │ │ │ │ └── policyTable.json │ │ │ └── policyTable.json │ │ ├── ibm-logging_git.bb │ │ ├── mihawk-phosphor-logging-callouts-native.bb │ │ ├── mihawk-phosphor-logging-callouts │ │ │ └── callouts.yaml │ │ ├── phosphor-logging │ │ │ └── p10bmc │ │ │ │ ├── ibm,rainier-2u_dev_callouts.json │ │ │ │ └── ibm,rainier-4u_dev_callouts.json │ │ └── phosphor-logging_%.bbappend │ ├── mboxd │ │ ├── mboxd │ │ │ ├── check-pnor-format.service │ │ │ └── check_pnor_format.sh │ │ └── mboxd_%.bbappend │ ├── network │ │ ├── network │ │ │ ├── ibm-ac-server │ │ │ │ ├── inventory-object-map.json │ │ │ │ └── ncsi-netlink.service │ │ │ ├── mihawk │ │ │ │ ├── inventory-object-map.json │ │ │ │ └── ncsi-netlink.service │ │ │ ├── p10bmc │ │ │ │ ├── inventory-object-map.json │ │ │ │ └── ncsi-netlink.service │ │ │ └── witherspoon-tacoma │ │ │ │ ├── inventory-object-map.json │ │ │ │ └── ncsi-netlink.service │ │ └── phosphor-network_%.bbappend │ ├── openssl │ │ └── openssl_%.bbappend │ ├── packagegroups │ │ └── packagegroup-obmc-apps.bbappend │ ├── pldm │ │ └── pldm_%.bbappend │ ├── power │ │ ├── phosphor-power │ │ │ ├── mihawk │ │ │ │ ├── obmc │ │ │ │ │ └── power-supply-monitor │ │ │ │ │ │ ├── power-supply-monitor-0.conf │ │ │ │ │ │ └── power-supply-monitor-1.conf │ │ │ │ ├── pseq-monitor-pgood.service │ │ │ │ └── psu.json │ │ │ ├── p10bmc │ │ │ │ └── psu.json │ │ │ ├── swift │ │ │ │ ├── obmc │ │ │ │ │ └── power-supply-monitor │ │ │ │ │ │ ├── power-supply-monitor-0.conf │ │ │ │ │ │ └── power-supply-monitor-1.conf │ │ │ │ └── psu.json │ │ │ ├── witherspoon-tacoma │ │ │ │ └── obmc │ │ │ │ │ └── power-supply-monitor │ │ │ │ │ ├── power-supply-monitor-0.conf │ │ │ │ │ └── power-supply-monitor-1.conf │ │ │ └── witherspoon │ │ │ │ ├── obmc │ │ │ │ └── power-supply-monitor │ │ │ │ │ ├── power-supply-monitor-0.conf │ │ │ │ │ └── power-supply-monitor-1.conf │ │ │ │ ├── pseq-monitor-pgood.service │ │ │ │ └── psu.json │ │ ├── phosphor-power_%.bbappend │ │ ├── power-sequencer.bb │ │ ├── power-sequencer │ │ │ ├── p10bmc │ │ │ │ └── ucd90160.yaml │ │ │ ├── swift │ │ │ │ └── ucd90160.yaml │ │ │ └── witherspoon │ │ │ │ └── ucd90160.yaml │ │ ├── witherspoon-pfault-analysis-error-native_git.bb │ │ ├── witherspoon-power-supply-sync.bb │ │ └── witherspoon-power-supply-sync │ │ │ └── power-supply-sync.service │ ├── sensors │ │ ├── dbus-sensors_%.bbappend │ │ ├── phosphor-hwmon │ │ │ ├── 70-max31785-hwmon.rules │ │ │ ├── ibm-ac-server │ │ │ │ └── 70-hwmon.rules │ │ │ ├── max31785-hwmon-helper@.service │ │ │ ├── mihawk │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ ├── ahb │ │ │ │ │ └── apb │ │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ │ ├── i2c-bus@100 │ │ │ │ │ │ │ ├── power-supply@58.conf │ │ │ │ │ │ │ └── power-supply@5b.conf │ │ │ │ │ │ ├── i2c-bus@140 │ │ │ │ │ │ │ ├── ir35221@70.conf │ │ │ │ │ │ │ └── ir35221@72.conf │ │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ │ │ ├── ir35221@70.conf │ │ │ │ │ │ │ └── ir35221@72.conf │ │ │ │ │ │ ├── i2c-bus@380 │ │ │ │ │ │ │ ├── pca9545@71 │ │ │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ │ │ └── tmp431@4c.conf │ │ │ │ │ │ │ │ └── i2c@1 │ │ │ │ │ │ │ │ │ └── tmp431@4c.conf │ │ │ │ │ │ │ └── pca9545riser@70 │ │ │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ │ └── tmp431@4c.conf │ │ │ │ │ │ │ │ └── i2c@1 │ │ │ │ │ │ │ │ └── tmp431@4c.conf │ │ │ │ │ │ ├── i2c-bus@3c0 │ │ │ │ │ │ │ ├── pca9545@71 │ │ │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ │ │ └── tmp431@4c.conf │ │ │ │ │ │ │ │ └── i2c@1 │ │ │ │ │ │ │ │ │ └── tmp431@4c.conf │ │ │ │ │ │ │ └── pca9545riser@70 │ │ │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ │ └── tmp431@4c.conf │ │ │ │ │ │ │ │ └── i2c@1 │ │ │ │ │ │ │ │ └── tmp431@4c.conf │ │ │ │ │ │ ├── i2c-bus@400 │ │ │ │ │ │ │ ├── emc1403@4c.conf │ │ │ │ │ │ │ ├── tmp275@48.conf │ │ │ │ │ │ │ └── tmp275@49.conf │ │ │ │ │ │ └── i2c-bus@440 │ │ │ │ │ │ │ └── pca9545@70 │ │ │ │ │ │ │ └── i2c@3 │ │ │ │ │ │ │ └── tmp275@48.conf │ │ │ │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ │ │ │ ├── devices │ │ │ │ │ └── platform │ │ │ │ │ │ └── gpio-fsi │ │ │ │ │ │ └── fsi-master │ │ │ │ │ │ └── fsi0 │ │ │ │ │ │ └── slave@00--00 │ │ │ │ │ │ ├── 00--00--00--06 │ │ │ │ │ │ └── sbefifo1-dev0 │ │ │ │ │ │ │ └── occ-hwmon.1.conf │ │ │ │ │ │ └── 00--00--00--0a │ │ │ │ │ │ └── fsi-master │ │ │ │ │ │ └── fsi1 │ │ │ │ │ │ └── slave@01--00 │ │ │ │ │ │ └── 01--01--00--06 │ │ │ │ │ │ └── sbefifo2-dev0 │ │ │ │ │ │ └── occ-hwmon.2.conf │ │ │ │ │ ├── iio-hwmon-12v.conf │ │ │ │ │ ├── iio-hwmon-3v.conf │ │ │ │ │ ├── iio-hwmon-5v.conf │ │ │ │ │ ├── iio-hwmon-battery.conf │ │ │ │ │ ├── iio-hwmon-vcs0.conf │ │ │ │ │ ├── iio-hwmon-vcs1.conf │ │ │ │ │ ├── iio-hwmon-vdd0.conf │ │ │ │ │ ├── iio-hwmon-vdd1.conf │ │ │ │ │ ├── iio-hwmon-vddra.conf │ │ │ │ │ ├── iio-hwmon-vddrb.conf │ │ │ │ │ ├── iio-hwmon-vddrc.conf │ │ │ │ │ ├── iio-hwmon-vddrd.conf │ │ │ │ │ ├── iio-hwmon-vdn0.conf │ │ │ │ │ ├── iio-hwmon-vdn1.conf │ │ │ │ │ ├── iio-hwmon-vio0.conf │ │ │ │ │ └── iio-hwmon-vio1.conf │ │ │ ├── obmc │ │ │ │ └── hwmon-max31785 │ │ │ │ │ └── max31785.conf │ │ │ ├── p10bmc │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ └── ahb │ │ │ │ │ └── apb │ │ │ │ │ └── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@400 │ │ │ │ │ └── max31785@52.conf │ │ │ │ │ └── i2c-bus@780 │ │ │ │ │ └── i2c-switch@70 │ │ │ │ │ └── i2c@3 │ │ │ │ │ └── max31785@52.conf │ │ │ ├── start_max31785_hwmon.sh │ │ │ ├── swift │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ ├── ahb │ │ │ │ │ └── apb │ │ │ │ │ │ └── bus@1e78a000 │ │ │ │ │ │ ├── i2c-bus@100 │ │ │ │ │ │ ├── max31785@52_air.conf │ │ │ │ │ │ ├── max31785@52_water.conf │ │ │ │ │ │ ├── power-supply@68.conf │ │ │ │ │ │ └── power-supply@69.conf │ │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ ├── dps310@76.conf │ │ │ │ │ │ ├── si7021a20@20.conf │ │ │ │ │ │ └── tmp275@48.conf │ │ │ │ │ │ ├── i2c-bus@380 │ │ │ │ │ │ ├── ir35219@70.conf │ │ │ │ │ │ ├── ir35221@71.conf │ │ │ │ │ │ └── ir35221@72.conf │ │ │ │ │ │ ├── i2c-bus@3c0 │ │ │ │ │ │ ├── ir35219@70.conf │ │ │ │ │ │ ├── ir35221@71.conf │ │ │ │ │ │ └── ir35221@72.conf │ │ │ │ │ │ └── i2c-bus@440 │ │ │ │ │ │ ├── tmp275@48.conf │ │ │ │ │ │ └── tmp275@4a.conf │ │ │ │ │ └── devices │ │ │ │ │ └── platform │ │ │ │ │ └── gpio-fsi │ │ │ │ │ └── fsi-master │ │ │ │ │ └── fsi0 │ │ │ │ │ └── slave@00--00 │ │ │ │ │ ├── 00--00--00--06 │ │ │ │ │ └── sbefifo1-dev0 │ │ │ │ │ │ └── occ-hwmon.1.conf │ │ │ │ │ └── 00--00--00--0a │ │ │ │ │ └── fsi-master │ │ │ │ │ └── fsi1 │ │ │ │ │ └── slave@01--00 │ │ │ │ │ └── 01--01--00--06 │ │ │ │ │ └── sbefifo2-dev0 │ │ │ │ │ └── occ-hwmon.2.conf │ │ │ ├── witherspoon-tacoma │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ └── ahb │ │ │ │ │ └── apb │ │ │ │ │ └── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@200 │ │ │ │ │ ├── bmp280@77.conf │ │ │ │ │ ├── dps310@76.conf │ │ │ │ │ ├── max31785@52_air.conf │ │ │ │ │ ├── max31785@52_water.conf │ │ │ │ │ ├── power-supply@68.conf │ │ │ │ │ └── power-supply@69.conf │ │ │ │ │ ├── i2c-bus@280 │ │ │ │ │ ├── ir35221@70.conf │ │ │ │ │ └── ir35221@71.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ ├── ir35221@70.conf │ │ │ │ │ └── ir35221@71.conf │ │ │ │ │ └── i2c-bus@500 │ │ │ │ │ └── tmp275@4a.conf │ │ │ └── witherspoon │ │ │ │ └── obmc │ │ │ │ └── hwmon │ │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ └── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@100 │ │ │ │ │ ├── bmp280@77.conf │ │ │ │ │ ├── dps310@76.conf │ │ │ │ │ ├── max31785@52_air.conf │ │ │ │ │ ├── max31785@52_water.conf │ │ │ │ │ ├── power-supply@68.conf │ │ │ │ │ └── power-supply@69.conf │ │ │ │ │ ├── i2c-bus@140 │ │ │ │ │ ├── ir35221@70.conf │ │ │ │ │ └── ir35221@71.conf │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── ir35221@70.conf │ │ │ │ │ └── ir35221@71.conf │ │ │ │ │ └── i2c-bus@380 │ │ │ │ │ └── tmp275@4a.conf │ │ │ │ └── devices │ │ │ │ └── platform │ │ │ │ └── gpio-fsi │ │ │ │ └── fsi-master │ │ │ │ └── fsi0 │ │ │ │ └── slave@00--00 │ │ │ │ ├── 00--00--00--06 │ │ │ │ └── sbefifo1-dev0 │ │ │ │ │ └── occ-hwmon.1.conf │ │ │ │ └── 00--00--00--0a │ │ │ │ └── fsi-master │ │ │ │ └── fsi1 │ │ │ │ └── slave@01--00 │ │ │ │ └── 01--01--00--06 │ │ │ │ └── sbefifo2-dev0 │ │ │ │ └── occ-hwmon.2.conf │ │ ├── phosphor-hwmon_%.bbappend │ │ ├── phosphor-virtual-sensor │ │ │ └── p10bmc │ │ │ │ └── virtual_sensor_config.json │ │ └── phosphor-virtual-sensor_%.bbappend │ ├── settings │ │ ├── phosphor-settings-manager │ │ │ ├── ClearHostSecurityKeys-default-zero.override.yml │ │ │ ├── HypervisorInterface-default-p10bmc.override.yml │ │ │ ├── HypervisorInterface-default-tacoma.override.yml │ │ │ ├── TPMEnable-default-true.override.yml │ │ │ └── ibm_settings.override.yml │ │ ├── phosphor-settings-manager_%.bbappend │ │ ├── phosphor-settings-read-settings-mrw-native.bbappend │ │ └── phosphor-settings-read-settings-mrw-native │ │ │ └── mrw-override-settings.yaml │ ├── skeleton │ │ ├── obmc-libobmc-intf │ │ │ ├── mihawk │ │ │ │ └── gpio_defs.json │ │ │ ├── p10bmc │ │ │ │ └── gpio_defs.json │ │ │ ├── swift │ │ │ │ └── gpio_defs.json │ │ │ ├── witherspoon-tacoma │ │ │ │ └── gpio_defs.json │ │ │ └── witherspoon │ │ │ │ └── gpio_defs.json │ │ └── obmc-libobmc-intf_%.bbappend │ ├── state │ │ └── phosphor-state-manager_%.bbappend │ └── vpd │ │ ├── mihawk-openpower-fru-inventory-native.bb │ │ ├── mihawk-openpower-fru-inventory │ │ └── inventory │ │ ├── mihawk-openpower-fru-vpd-layout-native.bb │ │ ├── mihawk-openpower-fru-vpd-layout │ │ └── layout.yaml │ │ └── openpower-fru-vpd_%.bbappend └── recipes.txt ├── meta-ingrasys ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── ingrasys.inc └── meta-zaius │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── zaius.conf │ ├── recipes-bsp │ └── u-boot │ │ ├── u-boot-aspeed │ │ └── 0001-board-aspeed-Add-reset_phy-for-Zaius.patch │ │ └── u-boot-aspeed_%.bbappend │ ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed │ │ └── zaius.cfg │ │ └── linux-aspeed_%.bbappend │ ├── recipes-phosphor │ ├── chassis │ │ ├── avsbus-control.bb │ │ ├── avsbus-control │ │ │ ├── avsbus-disable@.service │ │ │ ├── avsbus-enable@.service │ │ │ └── zaius_avsbus.sh │ │ ├── vcs-control.bb │ │ └── vcs-control │ │ │ ├── vcs-off@.service │ │ │ ├── vcs-on@.service │ │ │ └── zaius_vcs.sh │ ├── configuration │ │ ├── zaius-yaml-config.bb │ │ └── zaius-yaml-config │ │ │ ├── zaius-ipmi-fru-properties.yaml │ │ │ ├── zaius-ipmi-fru.yaml │ │ │ └── zaius-ipmi-sensors.yaml │ ├── console │ │ ├── obmc-console │ │ │ └── obmc-console.conf │ │ └── obmc-console_%.bbappend │ ├── gpio │ │ ├── phosphor-gpio-monitor │ │ │ ├── obmc │ │ │ │ └── gpio │ │ │ │ │ └── phosphor-pcie-card-e2b.conf │ │ │ └── phosphor-gpio-presence@.service │ │ └── phosphor-gpio-monitor_%.bbappend │ ├── host │ │ ├── checkstop-monitor.bbappend │ │ ├── checkstop-monitor │ │ │ └── obmc │ │ │ │ └── gpio │ │ │ │ └── checkstop │ │ ├── p9-host-start.bbappend │ │ └── phosphor-host-postd_%.bbappend │ ├── image │ │ └── obmc-phosphor-image.bbappend │ ├── ipmi │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ └── phosphor-ipmi-host_%.bbappend │ ├── mboxd │ │ └── mboxd_%.bbappend │ ├── packagegroups │ │ └── packagegroup-obmc-apps.bbappend │ ├── sensors │ │ ├── phosphor-hwmon │ │ │ └── obmc │ │ │ │ └── hwmon │ │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ │ ├── pca9541a@70 │ │ │ │ │ │ │ └── i2c-arb │ │ │ │ │ │ │ │ └── hotswap@54.conf │ │ │ │ │ │ ├── power-brick@30.conf │ │ │ │ │ │ ├── power-brick@6a.conf │ │ │ │ │ │ ├── vrm@40.conf │ │ │ │ │ │ ├── vrm@41.conf │ │ │ │ │ │ ├── vrm@43.conf │ │ │ │ │ │ ├── vrm@60.conf │ │ │ │ │ │ └── vrm@64.conf │ │ │ │ │ ├── i2c-bus@340 │ │ │ │ │ │ ├── vrm@40.conf │ │ │ │ │ │ ├── vrm@41.conf │ │ │ │ │ │ ├── vrm@42.conf │ │ │ │ │ │ ├── vrm@60.conf │ │ │ │ │ │ └── vrm@64.conf │ │ │ │ │ └── i2c-bus@40 │ │ │ │ │ │ └── ucd90160@64.conf │ │ │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ │ │ ├── devices │ │ │ │ └── platform │ │ │ │ │ └── gpio-fsi │ │ │ │ │ └── fsi0 │ │ │ │ │ └── slave@00--00 │ │ │ │ │ ├── 00--00--00--06 │ │ │ │ │ └── sbefifo1-dev0 │ │ │ │ │ │ └── occ-hwmon.1.conf │ │ │ │ │ └── 00--00--00--0a │ │ │ │ │ └── fsi1 │ │ │ │ │ └── slave@01--00 │ │ │ │ │ └── 01--01--00--06 │ │ │ │ │ └── sbefifo2-dev0 │ │ │ │ │ └── occ-hwmon.2.conf │ │ │ │ ├── iio-hwmon-battery.conf │ │ │ │ ├── iio-hwmon.conf │ │ │ │ ├── onewire0.conf │ │ │ │ ├── onewire1.conf │ │ │ │ ├── onewire2.conf │ │ │ │ └── onewire3.conf │ │ └── phosphor-hwmon_%.bbappend │ ├── settings │ │ ├── phosphor-settings-manager │ │ │ ├── powerpolicy-default-ALWAYS_POWER_ON.override.yml │ │ │ └── timeowner-host-no-ntp.override.yml │ │ └── phosphor-settings-manager_%.bbappend │ └── skeleton │ │ ├── obmc-libobmc-intf │ │ └── gpio_defs.json │ │ └── obmc-libobmc-intf_%.bbappend │ └── recipes.txt ├── meta-inspur ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── conf │ ├── distro │ │ └── include │ │ │ └── inspur-distrovars.inc │ └── layer.conf ├── meta-fp5280g2 │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── distro │ │ │ └── openbmc-fp5280g2.conf │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── fp5280g2.conf │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── fp5280g2 │ │ │ │ └── fp5280g2.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ │ ├── bmcweb │ │ └── bmcweb_%.bbappend │ │ ├── configuration │ │ ├── fp5280g2-yaml-config.bb │ │ └── fp5280g2-yaml-config │ │ │ ├── fp5280g2-ipmi-fru-bmc.yaml │ │ │ ├── fp5280g2-ipmi-fru-properties.yaml │ │ │ ├── fp5280g2-ipmi-fru.yaml │ │ │ ├── fp5280g2-ipmi-inventory-sensors.yaml │ │ │ └── fp5280g2-ipmi-sensors.yaml │ │ ├── console │ │ ├── obmc-console │ │ │ └── obmc-console.conf │ │ └── obmc-console_%.bbappend │ │ ├── fans │ │ ├── phosphor-fan-control-events-config.bbappend │ │ ├── phosphor-fan-control-events-config │ │ │ └── events.yaml │ │ ├── phosphor-fan-control-fan-config.bbappend │ │ ├── phosphor-fan-control-fan-config │ │ │ └── fans.yaml │ │ ├── phosphor-fan-control-zone-conditions-config.bbappend │ │ ├── phosphor-fan-control-zone-conditions-config │ │ │ └── zone_conditions.yaml │ │ ├── phosphor-fan-control-zone-config.bbappend │ │ ├── phosphor-fan-control-zone-config │ │ │ └── zones.yaml │ │ ├── phosphor-fan-monitor-config.bbappend │ │ ├── phosphor-fan-monitor-config │ │ │ └── monitor.yaml │ │ ├── phosphor-fan-presence-config.bbappend │ │ ├── phosphor-fan-presence-config │ │ │ └── config.yaml │ │ ├── phosphor-fan │ │ │ ├── obmc │ │ │ │ └── phosphor-fan │ │ │ │ │ └── phosphor-cooling-type-0.conf │ │ │ └── phosphor-cooling-type@.service │ │ └── phosphor-fan_%.bbappend │ │ ├── flash │ │ ├── openpower-software-manager_%.bbappend │ │ └── phosphor-software-manager_%.bbappend │ │ ├── gpio │ │ ├── phosphor-gpio-monitor │ │ │ └── obmc │ │ │ │ └── gpio │ │ │ │ ├── phosphor-power-supply-0.conf │ │ │ │ └── phosphor-power-supply-1.conf │ │ └── phosphor-gpio-monitor_%.bbappend │ │ ├── host │ │ ├── checkstop-monitor.bbappend │ │ └── checkstop-monitor │ │ │ └── obmc │ │ │ └── gpio │ │ │ └── checkstop │ │ ├── images │ │ └── obmc-phosphor-image.bbappend │ │ ├── inventory │ │ ├── phosphor-inventory-manager-chassis.bb │ │ ├── phosphor-inventory-manager-chassis │ │ │ └── chassis.yaml │ │ ├── phosphor-inventory-manager │ │ │ └── associations.json │ │ └── phosphor-inventory-manager_%.bbappend │ │ ├── ipmi │ │ ├── openpower-ipmi-oem_%.bbappend │ │ ├── phosphor-ipmi-config.bbappend │ │ ├── phosphor-ipmi-config │ │ │ ├── channel_config.json │ │ │ ├── dcmi_sensors.json │ │ │ └── dev_id.json │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ ├── phosphor-ipmi-host_%.bbappend │ │ └── phosphor-ipmi-net_%.bbappend │ │ ├── leds │ │ ├── phosphor-led-manager │ │ │ └── led-group-config.json │ │ └── phosphor-led-manager_%.bbappend │ │ ├── mboxd │ │ └── mboxd_%.bbappend │ │ ├── network │ │ └── first-boot-set-mac_%.bbappend │ │ ├── occ │ │ ├── files │ │ │ └── occ_sensor.yaml │ │ └── fp5280g2-occ-control-config-native.bb │ │ ├── packagegroups │ │ └── packagegroup-obmc-apps.bbappend │ │ ├── power │ │ ├── phosphor-fp5280g2-psu-update.bb │ │ ├── phosphor-power │ │ │ ├── obmc │ │ │ │ └── power-supply-monitor │ │ │ │ │ ├── power-supply-monitor-0.conf │ │ │ │ │ └── power-supply-monitor-1.conf │ │ │ └── psu.json │ │ ├── phosphor-power_%.bbappend │ │ ├── phosphor-psu-software-manager │ │ │ └── psu-update@.service │ │ └── phosphor-psu-software-manager_%.bbappend │ │ ├── sensors │ │ ├── phosphor-hwmon │ │ │ └── obmc │ │ │ │ └── hwmon │ │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@400 │ │ │ │ │ │ ├── power-supply@58.conf │ │ │ │ │ │ └── power-supply@59.conf │ │ │ │ │ └── i2c-bus@c0 │ │ │ │ │ │ ├── i2c-switch@70 │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ └── tmp112@4a.conf │ │ │ │ │ │ ├── i2c@1 │ │ │ │ │ │ │ └── tmp112@4a.conf │ │ │ │ │ │ └── i2c@2 │ │ │ │ │ │ │ └── tmp112@4a.conf │ │ │ │ │ │ ├── tmp112@48.conf │ │ │ │ │ │ └── tmp112@49.conf │ │ │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ │ │ ├── devices │ │ │ │ └── platform │ │ │ │ │ └── gpio-fsi │ │ │ │ │ └── fsi-master │ │ │ │ │ └── fsi0 │ │ │ │ │ └── slave@00--00 │ │ │ │ │ ├── 00--00--00--06 │ │ │ │ │ └── sbefifo1-dev0 │ │ │ │ │ │ └── occ-hwmon.1.conf │ │ │ │ │ └── 00--00--00--0a │ │ │ │ │ └── fsi1 │ │ │ │ │ └── slave@01--00 │ │ │ │ │ └── 01--01--00--06 │ │ │ │ │ └── sbefifo2-dev0 │ │ │ │ │ └── occ-hwmon.2.conf │ │ │ │ ├── iio-hwmon-battery.conf │ │ │ │ └── iio-hwmon.conf │ │ └── phosphor-hwmon_%.bbappend │ │ ├── skeleton │ │ ├── obmc-libobmc-intf │ │ │ └── gpio_defs.json │ │ └── obmc-libobmc-intf_%.bbappend │ │ └── vpd │ │ ├── fp5280g2-openpower-fru-inventory-native.bb │ │ ├── fp5280g2-openpower-fru-inventory │ │ └── inventory │ │ ├── fp5280g2-openpower-fru-vpd-layout-native.bb │ │ └── fp5280g2-openpower-fru-vpd-layout │ │ └── layout.yaml └── meta-on5263m5 │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── on5263m5.conf │ ├── recipes-inspur │ ├── inspur-uuid │ │ └── inspur-uuid_git.bb │ └── packagegroups │ │ └── packagegroup-inspur-apps.bb │ └── recipes-phosphor │ └── sensors │ ├── phosphor-hwmon │ └── obmc │ │ └── hwmon │ │ ├── ahb │ │ └── apb │ │ │ ├── bus@1e78a000 │ │ │ ├── i2c-bus@1c0 │ │ │ │ ├── tmp112@48.conf │ │ │ │ └── tmp421@4e.conf │ │ │ └── i2c-bus@300 │ │ │ │ └── adm1278@11.conf │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ └── iio-hwmon.conf │ └── phosphor-hwmon_%.bbappend ├── meta-intel-openbmc ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── intel.inc ├── meta-common │ ├── recipes-core │ │ ├── host-error-monitor │ │ │ └── host-error-monitor_git.bb │ │ ├── libpeci │ │ │ └── libpeci_git.bb │ │ └── systemd │ │ │ └── obmc-targets.bbappend │ ├── recipes-extended │ │ └── rsyslog │ │ │ ├── rsyslog │ │ │ ├── rotate-event-logs.service │ │ │ ├── rotate-event-logs.sh │ │ │ ├── rsyslog-override.conf │ │ │ ├── rsyslog.conf │ │ │ └── rsyslog.logrotate │ │ │ └── rsyslog_%.bbappend │ ├── recipes-intel │ │ ├── ipmi │ │ │ └── intel-ipmi-oem_git.bb │ │ ├── packagegroups │ │ │ └── packagegroup-intel-apps.bb │ │ └── pfr │ │ │ └── pfr-manager_git.bb │ ├── recipes-phosphor │ │ ├── dbus │ │ │ ├── intel-dbus-interfaces-mapper-config-native.bb │ │ │ ├── intel-dbus-interfaces_git.bb │ │ │ └── phosphor-mapper-config-native.bbappend │ │ ├── fans │ │ │ ├── phosphor-pid-control │ │ │ │ └── phosphor-pid-control.service │ │ │ └── phosphor-pid-control_%.bbappend │ │ ├── interfaces │ │ │ └── bmcweb_%.bbappend │ │ ├── ipmi │ │ │ ├── phosphor-ipmi-host_%.bbappend │ │ │ ├── phosphor-ipmi-ipmb │ │ │ │ └── ipmb-channels.json │ │ │ └── phosphor-ipmi-ipmb_%.bbappend │ │ ├── leds │ │ │ ├── intel-led-manager-config-native.bb │ │ │ └── intel-led-manager-config │ │ │ │ └── led.yaml │ │ ├── sel-logger │ │ │ └── phosphor-sel-logger_%.bbappend │ │ └── webui │ │ │ ├── phosphor-webui │ │ │ └── config.json │ │ │ └── phosphor-webui_%.bbappend │ └── recipes-x86 │ │ └── chassis │ │ └── x86-power-control_%.bbappend └── meta-s2600wf │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── s2600wf.conf │ └── recipes-phosphor │ └── skeleton │ ├── obmc-libobmc-intf │ └── gpio_defs.json │ └── obmc-libobmc-intf_%.bbappend ├── meta-inventec ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── inventec.inc └── meta-lanyang │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── lanyang.conf │ └── recipes-phosphor │ ├── chassis │ ├── avsbus-control.bb │ └── avsbus-control │ │ ├── avsbus-disable@.service │ │ ├── avsbus-enable@.service │ │ └── lanyang_avsbus.sh │ ├── console │ ├── obmc-console │ │ └── obmc-console.conf │ └── obmc-console_%.bbappend │ ├── host │ └── p9-host-start.bbappend │ ├── image │ └── obmc-phosphor-image.bbappend │ ├── ipmi │ ├── lanyang-ipmi-inventory-map-native.bb │ ├── lanyang-ipmi-inventory-map │ │ └── config.yaml │ ├── phosphor-ipmi-fru-properties%.bbappend │ ├── phosphor-ipmi-fru-properties% │ │ └── extra-properties.yaml │ ├── phosphor-ipmi-fru │ │ └── obmc │ │ │ └── eeproms │ │ │ └── system │ │ │ └── chassis │ │ │ └── motherboard │ └── phosphor-ipmi-fru_%.bbappend │ ├── leds │ ├── lanyang-led-manager-config-native.bb │ └── lanyang-led-manager-config │ │ └── led.yaml │ ├── mboxd │ └── mboxd_%.bbappend │ └── skeleton │ ├── obmc-libobmc-intf │ └── gpio_defs.json │ └── obmc-libobmc-intf_%.bbappend ├── meta-lenovo ├── COPYING.BSD ├── COPYING.GPL ├── COPYING.MIT ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── lenovo.inc ├── meta-common │ └── recipes-lenovo │ │ └── packagegroups │ │ └── packagegroup-lenovo-apps.bb ├── meta-hr630 │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── distro │ │ │ └── openbmc-hr630.conf │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── hr630.conf │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── hr630.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ │ ├── leds │ │ ├── hr630-led-manager-config-native.bb │ │ └── hr630-led-manager-config │ │ │ └── led.yaml │ │ ├── network │ │ └── phosphor-network_%.bbappend │ │ ├── sensors │ │ ├── phosphor-hwmon │ │ │ └── obmc │ │ │ │ └── hwmon │ │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@40 │ │ │ │ │ │ └── tmp75@4e.conf │ │ │ │ │ └── i2c-bus@80 │ │ │ │ │ │ └── tmp75@4d.conf │ │ │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ │ │ └── iio-hwmon.conf │ │ └── phosphor-hwmon_%.bbappend │ │ └── skeleton │ │ ├── obmc-libobmc-intf │ │ └── gpio_defs.json │ │ └── obmc-libobmc-intf_%.bbappend └── meta-hr855xg2 │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── distro │ │ └── openbmc-hr855xg2.conf │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── hr855xg2.conf │ ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed │ │ └── hr855xg2.cfg │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ ├── configuration │ ├── hr855xg2-yaml-config.bb │ └── hr855xg2-yaml-config │ │ ├── hr855xg2-ipmi-fru-properties.yaml │ │ ├── hr855xg2-ipmi-fru.yaml │ │ ├── hr855xg2-ipmi-sensors.yaml │ │ └── hr855xg2-leds.yaml │ ├── ipmi │ ├── phosphor-ipmi-config.bbappend │ ├── phosphor-ipmi-config │ │ ├── dcmi_sensors.json │ │ └── dev_id.json │ ├── phosphor-ipmi-flash_%.bbappend │ ├── phosphor-ipmi-fru_%.bbappend │ └── phosphor-ipmi-host_%.bbappend │ ├── leds │ └── phosphor-led-manager_%.bbappend │ ├── network │ └── phosphor-network_%.bbappend │ ├── sensors │ ├── phosphor-hwmon │ │ └── obmc │ │ │ └── hwmon │ │ │ ├── ahb │ │ │ └── apb │ │ │ │ ├── bus@1e78a000 │ │ │ │ └── i2c-bus@1c0 │ │ │ │ │ ├── tmp75@49.conf │ │ │ │ │ └── tmp75@4d.conf │ │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ │ ├── iio-hwmon-battery.conf │ │ │ └── iio-hwmon.conf │ └── phosphor-hwmon_%.bbappend │ └── skeleton │ ├── obmc-libobmc-intf │ └── gpio_defs.json │ └── obmc-libobmc-intf_%.bbappend ├── meta-microsoft ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── README.md ├── conf │ └── layer.conf └── meta-olympus │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── olympus.conf │ └── recipes.txt ├── meta-nuvoton ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── conf │ ├── layer.conf │ └── machine │ │ ├── evb-npcm750.conf │ │ └── include │ │ ├── npcm7xx.inc │ │ ├── nuvoton.inc │ │ └── tune-arm7a-novfp.inc ├── recipes-bsp │ ├── images │ │ ├── npcm7xx-bingo-native_git.bb │ │ ├── npcm7xx-bootblock_10.10.17.bb │ │ ├── npcm7xx-igps-native_02.01.12.bb │ │ └── npcm7xx-igps │ │ │ └── 0001-Adjust-paths-for-use-with-Bitbake.patch │ └── u-boot │ │ ├── u-boot-common-nuvoton.inc │ │ ├── u-boot-fw-utils-nuvoton_git.bb │ │ ├── u-boot-nuvoton.inc │ │ └── u-boot-nuvoton_git.bb ├── recipes-kernel │ └── linux │ │ ├── linux-nuvoton.inc │ │ ├── linux-nuvoton │ │ └── defconfig │ │ └── linux-nuvoton_git.bb ├── recipes-nuvoton │ └── loadsvf │ │ └── loadsvf_git.bb └── recipes.txt ├── meta-openembedded ├── .gitignore ├── COPYING.MIT ├── README ├── contrib │ ├── oe-stylize.py │ └── pw-am.sh ├── meta-filesystems │ ├── COPYING.MIT │ ├── README │ ├── conf │ │ └── layer.conf │ ├── recipes-filesystems │ │ ├── fuse-exfat │ │ │ └── fuse-exfat_1.3.0.bb │ │ ├── httpfs2-fuse │ │ │ └── httpfs2_0.1.5.bb │ │ ├── ifuse │ │ │ └── ifuse_1.1.4.bb │ │ ├── images │ │ │ ├── meta-filesystems-image-base.bb │ │ │ └── meta-filesystems-image.bb │ │ ├── logfsprogs │ │ │ ├── logfsprogs │ │ │ │ ├── 0001-Add-LDFLAGS-to-linker-cmdline.patch │ │ │ │ ├── 0001-btree-Avoid-conflicts-with-libc-namespace-about-setk.patch │ │ │ │ └── 0001-include-sys-sysmacros.h-for-major-minor-definition.patch │ │ │ └── logfsprogs_git.bb │ │ ├── ntfs-3g-ntfsprogs │ │ │ ├── files │ │ │ │ └── 0001-libntfs-3g-Makefile.am-fix-install-failed-while-host.patch │ │ │ └── ntfs-3g-ntfsprogs_2017.3.23.bb │ │ ├── owfs │ │ │ ├── owfs │ │ │ │ ├── 0001-Add-build-rule-for-README.patch │ │ │ │ ├── 0001-Fix-compilation-with-GCC10.patch │ │ │ │ ├── owhttpd │ │ │ │ └── owserver │ │ │ └── owfs_3.2p3.bb │ │ ├── packageconfigs │ │ │ └── packagegroup-meta-filesystems.bb │ │ ├── simple-mtpfs │ │ │ └── simple-mtpfs_git.bb │ │ ├── smbnetfs │ │ │ ├── smbnetfs │ │ │ │ ├── Using-PKG_CHECK_MODULES-to-found-headers-and-libraries.patch │ │ │ │ └── configure.patch │ │ │ └── smbnetfs_git.bb │ │ ├── sshfs-fuse │ │ │ ├── sshfs-fuse │ │ │ │ └── run-ptest │ │ │ └── sshfs-fuse_3.7.1.bb │ │ ├── unionfs-fuse │ │ │ ├── files │ │ │ │ └── 0001-support-cross-compiling.patch │ │ │ └── unionfs-fuse_2.1.bb │ │ └── yaffs2 │ │ │ ├── yaffs2-utils │ │ │ ├── 0001-define-loff_t-if-not-already-defined.patch │ │ │ └── makefile-add-ldflags.patch │ │ │ └── yaffs2-utils_git.bb │ ├── recipes-support │ │ ├── fuse │ │ │ ├── files │ │ │ │ ├── 0001-fuse-fix-the-return-value-of-help-option.patch │ │ │ │ ├── aarch64.patch │ │ │ │ ├── fuse.conf │ │ │ │ └── gold-unversioned-symbol.patch │ │ │ ├── fuse3 │ │ │ │ └── run-ptest │ │ │ ├── fuse3_3.10.2.bb │ │ │ └── fuse_2.9.9.bb │ │ └── physfs │ │ │ └── physfs_3.0.2.bb │ └── recipes-utils │ │ ├── aufs-util │ │ ├── aufs-util │ │ │ ├── aufs-util-add-tool-concept-to-Makefile-for-cross-com.patch │ │ │ └── aufs-util-don-t-strip-executables.patch │ │ └── aufs-util_git.bb │ │ ├── exfat-utils │ │ └── exfat-utils_1.3.0.bb │ │ ├── f2fs-tools │ │ └── f2fs-tools_1.14.0.bb │ │ ├── fatcat │ │ ├── fatcat │ │ │ └── 0001-Use-unistd.h-not-argp.h-for-all-POSIX-systems.patch │ │ └── fatcat_1.1.0.bb │ │ ├── fatresize │ │ └── fatresize_1.0.2.bb │ │ ├── udevil │ │ ├── files │ │ │ ├── 0001-udevil-0.4.3-fix-compile-with-gcc6.patch │ │ │ └── 0002-etc-Makefile.am-Use-systemd_unitdir-instead-of-libdi.patch │ │ └── udevil_0.4.4.bb │ │ ├── ufs-utils │ │ ├── ufs-utils │ │ │ └── 0001-Use-asm-type.h-for-kernel-types.patch │ │ └── ufs-utils_1.9.bb │ │ ├── xfsdump │ │ ├── files │ │ │ ├── 0001-xfsdump-support-usrmerge.patch │ │ │ └── remove-install-as-user.patch │ │ └── xfsdump_3.1.9.bb │ │ ├── xfsprogs │ │ ├── files │ │ │ ├── 0001-Check-for-MAP_SYNC-in-sys-mman.h.patch │ │ │ ├── 0001-support-usrmerge.patch │ │ │ ├── 0002-include-include-xfs-linux.h-after-sys-mman.h.patch │ │ │ └── remove_flags_from_build_flags.patch │ │ └── xfsprogs_5.10.0.bb │ │ └── xorriso │ │ └── xorriso_1.5.5.bb ├── meta-gnome │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ └── gnome-help.bbclass │ ├── conf │ │ └── layer.conf │ ├── recipes-connectivity │ │ ├── libnma │ │ │ └── libnma_1.8.30.bb │ │ └── network-manager-applet │ │ │ └── network-manager-applet_1.18.0.bb │ ├── recipes-extended │ │ └── gparted │ │ │ ├── files │ │ │ └── 0001-Install-polkit-action-unconditionally-executable-pke.patch │ │ │ └── gparted_1.2.0.bb │ ├── recipes-gimp │ │ ├── babl │ │ │ └── babl_0.1.84.bb │ │ ├── gegl │ │ │ ├── gegl │ │ │ │ └── 0001-meson.build-Give-note-if-sdl2-was-found.patch │ │ │ └── gegl_0.4.28.bb │ │ ├── gimp │ │ │ ├── gimp │ │ │ │ └── 0001-configure.ac-fix-with-linux-input-handling-with-upco.patch │ │ │ └── gimp_2.10.22.bb │ │ └── mypaint │ │ │ ├── libmypaint │ │ │ └── 0001-make-build-compatible-w.-autoconf-2.7.patch │ │ │ ├── libmypaint_git.bb │ │ │ └── mypaint-brushes-1.0_git.bb │ ├── recipes-gnome │ │ ├── amtk │ │ │ └── amtk_5.2.0.bb │ │ ├── dconf │ │ │ ├── dconf-editor │ │ │ │ └── 0001-Don-t-alter-or-try-to-write-GtkChild-fields.patch │ │ │ ├── dconf-editor_3.38.2.bb │ │ │ └── dconf_0.38.0.bb │ │ ├── devilspie │ │ │ ├── devilspie2_0.43.bb │ │ │ └── files │ │ │ │ ├── default.lua │ │ │ │ └── devilspie2.desktop │ │ ├── evince │ │ │ └── evince_3.38.0.bb │ │ ├── evolution-data-server │ │ │ ├── evolution-data-server-native.bb │ │ │ ├── evolution-data-server.bb │ │ │ ├── evolution-data-server.inc │ │ │ └── evolution-data-server │ │ │ │ ├── 0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch │ │ │ │ ├── 0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch │ │ │ │ ├── 0003-contact-Replace-the-Novell-sample-contact-with-somet.patch │ │ │ │ ├── 0004-call-native-helpers.patch │ │ │ │ └── iconv-detect.h │ │ ├── faenza-icon-theme │ │ │ └── faenza-icon-theme_1.3.bb │ │ ├── file-roller │ │ │ └── file-roller_3.36.3.bb │ │ ├── gdm │ │ │ ├── gdm │ │ │ │ └── 0001-Ensure-pam-file-installation.patch │ │ │ └── gdm_3.36.3.bb │ │ ├── gedit │ │ │ └── gedit_3.36.2.bb │ │ ├── geocode-glib │ │ │ └── geocode-glib_3.26.2.bb │ │ ├── gexiv2 │ │ │ └── gexiv2_0.12.1.bb │ │ ├── gfbgraph │ │ │ └── gfbgraph_0.2.4.bb │ │ ├── ghex │ │ │ └── ghex_3.18.4.bb │ │ ├── gjs │ │ │ ├── gjs │ │ │ │ ├── 0001-Disable-tests-on-host.patch │ │ │ │ └── 0001-maint-Avoid-g_once_init_enter-error-in-GCC-11.patch │ │ │ └── gjs_1.58.8.bb │ │ ├── gnome-autoar │ │ │ └── gnome-autoar_0.3.1.bb │ │ ├── gnome-backgrounds │ │ │ └── gnome-backgrounds_3.36.0.bb │ │ ├── gnome-bluetooth │ │ │ └── gnome-bluetooth_3.34.1.bb │ │ ├── gnome-calculator │ │ │ └── gnome-calculator_3.36.0.bb │ │ ├── gnome-calendar │ │ │ ├── files │ │ │ │ └── 8be361b6ce8f0f8053e1609decbdbdc164ec8448.patch │ │ │ └── gnome-calendar_3.38.1.bb │ │ ├── gnome-control-center │ │ │ ├── gnome-control-center │ │ │ │ └── 0001-Add-meson-option-to-pass-sysroot.patch │ │ │ └── gnome-control-center_3.36.4.bb │ │ ├── gnome-desktop │ │ │ ├── gnome-desktop │ │ │ │ ├── 0001-meson.build-Disable-libseccomp-for-all-archs.patch │ │ │ │ └── gnome-desktop-thumbnail-don-t-assume-time_t-is-long.patch │ │ │ └── gnome-desktop3_3.36.6.bb │ │ ├── gnome-disk-utility │ │ │ └── gnome-disk-utility_3.36.3.bb │ │ ├── gnome-flashback │ │ │ └── gnome-flashback_3.36.3.bb │ │ ├── gnome-font-viewer │ │ │ └── gnome-font-viewer_3.34.0.bb │ │ ├── gnome-keyring │ │ │ ├── gnome-keyring │ │ │ │ ├── 0001-Set-paths-to-ssh-agent-and-ssh-add-by-configure-opti.patch │ │ │ │ └── musl.patch │ │ │ └── gnome-keyring_3.36.0.bb │ │ ├── gnome-menus │ │ │ └── gnome-menus3_3.36.0.bb │ │ ├── gnome-online-accounts │ │ │ └── gnome-online-accounts_3.36.0.bb │ │ ├── gnome-panel │ │ │ └── gnome-panel_3.36.1.bb │ │ ├── gnome-photos │ │ │ └── gnome-photos_3.34.2.bb │ │ ├── gnome-session │ │ │ └── gnome-session_3.36.0.bb │ │ ├── gnome-settings-daemon │ │ │ └── gnome-settings-daemon_3.36.1.bb │ │ ├── gnome-shell │ │ │ ├── gnome-shell-extensions_3.34.2.bb │ │ │ └── gnome-shell_3.34.5.bb │ │ ├── gnome-system-monitor │ │ │ └── gnome-system-monitor_3.36.1.bb │ │ ├── gnome-terminal │ │ │ ├── gnome-terminal │ │ │ │ └── 0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch │ │ │ └── gnome-terminal_3.36.2.bb │ │ ├── gnome-tweaks │ │ │ ├── gnome-tweaks │ │ │ │ └── 0001-Make-python-path-configurable.patch │ │ │ └── gnome-tweaks_3.34.0.bb │ │ ├── graphene │ │ │ └── graphene_1.10.2.bb │ │ ├── grilo │ │ │ └── grilo_0.3.13.bb │ │ ├── gsound │ │ │ ├── gsound │ │ │ │ └── 0001-Set-vapidir.patch │ │ │ └── gsound_1.0.2.bb │ │ ├── gspell │ │ │ └── gspell_1.8.4.bb │ │ ├── gtksourceview │ │ │ ├── gtksourceview-classic-light │ │ │ │ └── classic-light.xml │ │ │ ├── gtksourceview-classic-light_1.0.bb │ │ │ ├── gtksourceview3_3.24.11.bb │ │ │ └── gtksourceview4_4.6.1.bb │ │ ├── gvfs │ │ │ └── gvfs_1.44.1.bb │ │ ├── libchamplain │ │ │ └── libchamplain_0.12.20.bb │ │ ├── libgdata │ │ │ └── libgdata_0.17.13.bb │ │ ├── libgsf │ │ │ ├── libgsf │ │ │ │ └── 0001-configure.ac-drop-a-copy-paste-of-introspection.m4-m.patch │ │ │ └── libgsf_1.14.47.bb │ │ ├── libgtkstylus │ │ │ ├── files │ │ │ │ └── gtkstylus.sh │ │ │ └── libgtkstylus_0.5.bb │ │ ├── libgtop │ │ │ ├── libgtop │ │ │ │ └── 0001-netload-Include-libc-net-headers-unconditionally.patch │ │ │ └── libgtop_2.40.0.bb │ │ ├── libgweather │ │ │ └── libgweather_3.36.1.bb │ │ ├── libtimezonemap │ │ │ └── libtimezonemap_0.4.6.bb │ │ ├── libwnck │ │ │ ├── libwnck3_3.36.0.bb │ │ │ └── libwnck_2.31.0.bb │ │ ├── libxklavier │ │ │ ├── libxklavier │ │ │ │ ├── 0001-xklavier_config_xkb.c-Fix-keyboard-layout-settings-f.patch │ │ │ │ └── fix-do_installe-failure.patch │ │ │ └── libxklavier_5.4.bb │ │ ├── metacity │ │ │ ├── metacity │ │ │ │ └── 0001-drop-zenity-detection.patch │ │ │ └── metacity_3.36.1.bb │ │ ├── mutter │ │ │ ├── mutter │ │ │ │ └── 0001-EGL-Include-EGL-eglmesaext.h.patch │ │ │ └── mutter_3.34.6.bb │ │ ├── nautilus │ │ │ ├── nautilus │ │ │ │ └── 0001-Drop-use-of-volatile.patch │ │ │ └── nautilus_3.36.3.bb │ │ ├── rest │ │ │ └── rest_0.8.1.bb │ │ ├── sysprof │ │ │ ├── sysprof │ │ │ │ ├── 0001-sysprof-Define-NT_GNU_BUILD_ID-if-undefined.patch │ │ │ │ └── 0002-tests-use-G_GSIZE_FORMAT-instead-of-G_GUINT64_FORMAT.patch │ │ │ └── sysprof_3.36.0.bb │ │ ├── tepl │ │ │ └── tepl_4.4.0.bb │ │ ├── tracker │ │ │ ├── tracker-miners │ │ │ │ └── 0001-meson.build-Just-warn-if-we-build-without-libseccomp.patch │ │ │ ├── tracker-miners_2.3.5.bb │ │ │ └── tracker_2.3.6.bb │ │ ├── yelp │ │ │ ├── yelp-tools_3.32.2.bb │ │ │ ├── yelp-xsl_3.36.0.bb │ │ │ └── yelp_3.36.0.bb │ │ └── zenity │ │ │ └── zenity_3.32.0.bb │ ├── recipes-support │ │ ├── accountsservice │ │ │ ├── accountsservice │ │ │ │ ├── 0001-musl-Hack-to-fix-build.patch │ │ │ │ └── 0002-musl-add-missing-fgetspent_r.patch │ │ │ └── accountsservice_0.6.55.bb │ │ ├── appstream-glib │ │ │ └── appstream-glib_0.7.18.bb │ │ ├── colord-gtk │ │ │ └── colord-gtk_0.2.0.bb │ │ ├── ibus │ │ │ ├── ibus-native.bb │ │ │ ├── ibus.bb │ │ │ ├── ibus.inc │ │ │ └── ibus │ │ │ │ └── 0001-Do-not-try-to-start-dbus-we-do-not-have-dbus-lauch.patch │ │ ├── keybinder │ │ │ └── keybinder_3.0.bb │ │ ├── libstemmer │ │ │ ├── libstemmer │ │ │ │ ├── 0001-Build-so-lib.patch │ │ │ │ └── 0002-snowball-stemwords-do-link-with-LDFLAGS-set-by-build.patch │ │ │ └── libstemmer_git.bb │ │ ├── libuser │ │ │ ├── libuser │ │ │ │ ├── 0001-modules-files.c-parse_field-fix-string-formating-in-.patch │ │ │ │ └── 0002-remove-unused-execinfo.h.patch │ │ │ └── libuser_0.62.bb │ │ ├── libwacom │ │ │ └── libwacom_0.33.bb │ │ ├── onboard │ │ │ ├── onboard │ │ │ │ └── 0001-pypredict-lm-Define-error-API-if-platform-does-not-h.patch │ │ │ └── onboard_1.4.1.bb │ │ ├── packagegroups │ │ │ ├── packagegroup-gnome-apps.bb │ │ │ └── packagegroup-gnome-desktop.bb │ │ └── usermode │ │ │ ├── usermode │ │ │ ├── 0001-Makefile.am-Link-with-libm-for-powl-API.patch │ │ │ └── 0001-fix-compile-failure-against-musl-C-library.patch │ │ │ └── usermode_1.113.bb │ └── site │ │ ├── arm-64 │ │ ├── riscv64-linux │ │ └── x86_64-linux ├── meta-initramfs │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ └── klibc.bbclass │ ├── conf │ │ └── layer.conf │ ├── recipes-bsp │ │ └── kexecboot │ │ │ ├── files │ │ │ ├── 0001-kexecboot-Use-new-reboot-API-with-klibc.patch │ │ │ └── 0001-make-Add-compiler-includes-in-cflags.patch │ │ │ ├── kexecboot-cfg │ │ │ └── icon.xpm │ │ │ ├── kexecboot-cfg_0.2.bb │ │ │ └── kexecboot_git.bb │ ├── recipes-core │ │ ├── images │ │ │ ├── initramfs-debug-image.bb │ │ │ ├── initramfs-kexecboot-image.bb │ │ │ ├── initramfs-kexecboot-klibc-image.bb │ │ │ └── meta-initramfs-image.bb │ │ ├── initrdscripts │ │ │ ├── files │ │ │ │ └── init-debug.sh │ │ │ └── initramfs-debug_1.0.bb │ │ └── packagegroups │ │ │ └── packagegroup-meta-initramfs.bb │ ├── recipes-devtools │ │ ├── dracut │ │ │ ├── dracut │ │ │ │ └── 0001-util.h-include-sys-reg.h-when-libc-glibc.patch │ │ │ └── dracut_git.bb │ │ ├── grubby │ │ │ ├── grubby │ │ │ │ ├── 0001-Add-another-variable-LIBS-to-provides-libraries-from.patch │ │ │ │ ├── 0002-include-paths.h-for-_PATH_MOUNTED.patch │ │ │ │ ├── grubby-rename-grub2-editenv-to-grub-editenv.patch │ │ │ │ └── run-ptest │ │ │ ├── grubby_8.40.bb │ │ │ └── grubby_git.bb │ │ ├── klibc │ │ │ ├── files │ │ │ │ ├── 0001-Define-in_-structs-for-non-glibc-system-libs.patch │ │ │ │ ├── 0001-always-use-bfd-linker.patch │ │ │ │ ├── 0001-arm-Do-not-set-a-fallback-march-and-mtune.patch │ │ │ │ ├── 0001-dash-Specify-format-string-in-fmtstr.patch │ │ │ │ ├── 0001-include-linux-sysinfo.h-directly.patch │ │ │ │ ├── 0001-klibc-Kbuild-Accept-EXTRA_KLIBCAFLAGS.patch │ │ │ │ ├── 0001-klibc-add-getrandom-syscall.patch │ │ │ │ ├── 0001-klibc_2.0.4-add-kexec_file_load-syscall.patch │ │ │ │ ├── 0001-mkfifo-Implement-mkfifo.patch │ │ │ │ ├── 0001-workaround-for-overlapping-sections-in-binary.patch │ │ │ │ ├── armv4-fix-v4bx.patch │ │ │ │ ├── cross-clang.patch │ │ │ │ ├── klcc-consider-sysroot.patch │ │ │ │ ├── klcc-cross-accept-clang-options.patch │ │ │ │ └── use-env-for-perl.patch │ │ │ ├── klcc-cross_2.0.8.bb │ │ │ ├── klibc-static-utils_2.0.8.bb │ │ │ ├── klibc-utils.inc │ │ │ ├── klibc-utils_2.0.8.bb │ │ │ ├── klibc.inc │ │ │ └── klibc_2.0.8.bb │ │ └── mtd │ │ │ ├── ubi-utils-klibc-2.0.2 │ │ │ ├── 0001-libmissing.h-fix-klibc-build-when-using-glibc-toolch.patch │ │ │ ├── 0001-make-Add-compiler-includes-in-cflags.patch │ │ │ ├── 0002-Instead-of-doing-preprocessor-magic-just-output-off_.patch │ │ │ ├── 0003-Makefile.am-only-build-ubi-utils.patch │ │ │ ├── 0004-mtd-utils-common.h-no-features.h-for-klibc-builds.patch │ │ │ └── 0005-common.h-replace-getline-with-fgets.patch │ │ │ └── ubi-utils-klibc_2.0.2.bb │ └── recipes-kernel │ │ └── kexec │ │ ├── kexec-tools-klibc │ │ ├── 0001-force-static-build.patch │ │ ├── 0002-Adjust-the-order-of-headers-to-fix-build-for-musl.patch │ │ ├── 0003-kexec-elf-rel-use-our-elf.h.patch │ │ ├── 0004-kexec-elf-exec.c-replace-with-our-err.h.patch │ │ ├── 0005-crashdump-elf.c-work-around-for-sysconf-_SC_NPROCESS.patch │ │ ├── 0006-kexec-syscall.h-work-around-missing-syscall-wrapper.patch │ │ ├── 0007-kexec.c-add-guard-around-ENOTSUP.patch │ │ ├── 0008-kexec.c-replace-mising-BLKGETSIZE64.patch │ │ ├── 0009-vmcore-dmesg.c-work-around-missing-imaxdiv.patch │ │ ├── 0010-fs2dt.c-work-around-missing-getline.patch │ │ ├── 0011-purgatory-Makefile-adapt-to-klcc.patch │ │ ├── 0012-purgatory-string.c-avoid-inclusion-of-string.h.patch │ │ ├── 0013-sha256.h-avoid-inclusion-of-sys-types.h.patch │ │ ├── 0014-add-if_nameindex-from-musl.patch │ │ ├── 0015-vmcore-dmesg-fix-warning.patch │ │ ├── 140-mips_disable_devicetree_support.patch │ │ ├── arm64-crashdump-arm64.c-fix-warning.patch │ │ ├── arm64_kexec-arm64.c-workaround-for-getrandom-syscall.patch │ │ ├── arm64_kexec-image-header.h-add-missing-le64toh.patch │ │ ├── arm_crashdump-fix-buffer-align.patch │ │ ├── arm_crashdump.patch │ │ ├── include_next.patch │ │ ├── kexec-x32.patch │ │ ├── klibc-reboot.patch │ │ ├── powerpc-purgatory-Makefile-remove-unknown-flags.patch │ │ ├── powerpc_change-the-memory-size-limit.patch │ │ ├── x86_basename.patch │ │ ├── x86_kexec_test.patch │ │ ├── x86_sys_io.patch │ │ └── x86_vfscanf.patch │ │ └── kexec-tools-klibc_git.bb ├── meta-multimedia │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ └── juce.bbclass │ ├── conf │ │ └── layer.conf │ ├── licenses │ │ ├── AOM-Patent-License-1.0 │ │ ├── BellBird │ │ ├── CMU-Tex │ │ ├── Fraunhofer_FDK_AAC_Codec_Library_for_Android │ │ └── Sun │ ├── recipes-connectivity │ │ ├── gupnp │ │ │ ├── gssdp_1.2.3.bb │ │ │ ├── gupnp-av.inc │ │ │ ├── gupnp-av_0.12.11.bb │ │ │ ├── gupnp-dlna │ │ │ │ └── move_vapigen.patch │ │ │ ├── gupnp-dlna_0.10.5.bb │ │ │ ├── gupnp-igd │ │ │ │ └── 0001-Swtich-to-new-GUPnP-API.patch │ │ │ ├── gupnp-igd_0.2.5.bb │ │ │ ├── gupnp-tools_0.10.0.bb │ │ │ ├── gupnp.inc │ │ │ └── gupnp_1.2.4.bb │ │ ├── libupnp │ │ │ └── libupnp_1.14.0.bb │ │ └── rygel │ │ │ └── rygel_0.38.3.bb │ ├── recipes-dvb │ │ ├── oscam │ │ │ └── oscam_svn.bb │ │ └── tvheadend │ │ │ ├── tvheadend │ │ │ └── 0001-adjust-for-64bit-time_t.patch │ │ │ └── tvheadend_git.bb │ ├── recipes-mkv │ │ ├── libebml │ │ │ ├── libebml │ │ │ │ ├── ldflags.patch │ │ │ │ └── override-uname.patch │ │ │ └── libebml_1.3.0.bb │ │ └── libmatroska │ │ │ ├── libmatroska │ │ │ └── 0001-Makefile-Use-LINKFLAGS-during-link-step.patch │ │ │ └── libmatroska_1.4.1.bb │ ├── recipes-multimedia │ │ ├── alsa-equal │ │ │ ├── alsa-equal │ │ │ │ ├── 0001-Fix-asneeded.patch │ │ │ │ ├── 0002-Fix-Eq-CAPS-plugin-name.patch │ │ │ │ └── 0003-Fix-mixer.patch │ │ │ └── alsa-equal_0.6.bb │ │ ├── aom │ │ │ └── aom_3.0.0.bb │ │ ├── caps │ │ │ ├── caps │ │ │ │ ├── 0001-basic.h-Use-c99-supported-stdint-types.patch │ │ │ │ └── append_ldflags.patch │ │ │ └── caps_0.9.26.bb │ │ ├── cdparanoia │ │ │ ├── cdparanoia_10.2.bb │ │ │ └── files │ │ │ │ ├── 0001-Use-DESTDIR-in-install-Makefile-rule.patch │ │ │ │ ├── 0001-check-for-null-buffer-before-trying-a-byteswap.patch │ │ │ │ ├── 0001-utils-Use-c99-compiler-independent-types.patch │ │ │ │ ├── 0002-Fix-printf-format-errors.patch │ │ │ │ ├── 0002-interface-remove-C-reserved-keyword.patch │ │ │ │ ├── 0003-Fix-missing-shared-object-LDFLAGS.patch │ │ │ │ ├── dont-use-internal-configs.patch │ │ │ │ └── out-of-tree-build.patch │ │ ├── dca │ │ │ ├── dcadec │ │ │ │ └── 0001-define-BASELIB-make-variable.patch │ │ │ └── dcadec_0.2.0.bb │ │ ├── dleyna │ │ │ ├── dleyna-connector-dbus_0.3.0.bb │ │ │ ├── dleyna-core_0.6.0.bb │ │ │ ├── dleyna-renderer │ │ │ │ └── 0001-add-gupnp-1.2-API-support.patch │ │ │ ├── dleyna-renderer_0.6.0.bb │ │ │ └── dleyna-server_0.6.0.bb │ │ ├── dvb-apps │ │ │ ├── dvb-apps_1.1.1.bb │ │ │ └── files │ │ │ │ ├── 0001-Fix-generate-keynames.patch │ │ │ │ ├── 0001-dvbdate-Remove-Obsoleted-stime-API-calls.patch │ │ │ │ ├── 0003-handle-static-shared-only-build.patch │ │ │ │ ├── 0004-Makefile-remove-test.patch │ │ │ │ ├── 0005-libucsi-optimization-removal.patch │ │ │ │ ├── 0006-CA_SET_PID.patch │ │ │ │ └── dvb-scan-table │ │ │ │ ├── atsc │ │ │ │ ├── ca-AB-Calgary │ │ │ │ ├── us-ATSC-center-frequencies-8VSB │ │ │ │ ├── us-CA-SF-Bay-Area │ │ │ │ ├── us-CO-Denver │ │ │ │ ├── us-Cable-EIA-542-HRC-center-frequencies-QAM256 │ │ │ │ ├── us-Cable-EIA-542-IRC-center_frequencies-QAM256 │ │ │ │ ├── us-Cable-HRC-center-frequencies-QAM256 │ │ │ │ ├── us-Cable-IRC-center-frequencies-QAM256 │ │ │ │ ├── us-Cable-Standard-center-frequencies-QAM256 │ │ │ │ ├── us-ID-Boise │ │ │ │ ├── us-MA-Boston │ │ │ │ ├── us-MI-Lansing │ │ │ │ ├── us-NTSC-center-frequencies-8VSB │ │ │ │ └── us-PA-Philadelphia │ │ │ │ ├── av7110_loadkeys │ │ │ │ ├── activy.rcmm │ │ │ │ ├── galaxis.rcmm │ │ │ │ ├── hauppauge.rc5 │ │ │ │ ├── hauppauge2.rc5 │ │ │ │ ├── hauppauge_grey.rc5 │ │ │ │ ├── mbo_81095-code_562.rc5 │ │ │ │ ├── medion_088.rc5 │ │ │ │ ├── medion_155.rc5 │ │ │ │ ├── philips.rc5 │ │ │ │ ├── philips1358.rc5 │ │ │ │ └── technotrend.rc5 │ │ │ │ ├── dvb-c │ │ │ │ ├── at-Innsbruck │ │ │ │ ├── at-Kabel-Braunau │ │ │ │ ├── at-Kabelsignal │ │ │ │ ├── at-KarrerNet │ │ │ │ ├── at-Liwest │ │ │ │ ├── at-SalzburgAG │ │ │ │ ├── at-Vienna │ │ │ │ ├── be-IN.DI-Integan │ │ │ │ ├── br-Net-Digital │ │ │ │ ├── ch-Bern-upc-cablecom │ │ │ │ ├── ch-GGA-Pratteln │ │ │ │ ├── ch-Rega-Sense │ │ │ │ ├── ch-Video2000 │ │ │ │ ├── ch-Zuerich-upc-cablecom │ │ │ │ ├── ch-interGGA │ │ │ │ ├── ch-quickline-ewaarberg │ │ │ │ ├── cz-Moravianet │ │ │ │ ├── cz-UPC │ │ │ │ ├── de-Berlin │ │ │ │ ├── de-Brandenburg-Havel │ │ │ │ ├── de-Hessen-Unitymedia │ │ │ │ ├── de-Kabel_BW │ │ │ │ ├── de-Kabel_Deutschland-Hannover │ │ │ │ ├── de-Muenchen │ │ │ │ ├── de-NetAachen │ │ │ │ ├── de-Primacom │ │ │ │ ├── de-Unitymedia │ │ │ │ ├── de-iesy │ │ │ │ ├── de-komro-Rosenheim │ │ │ │ ├── de-neftv │ │ │ │ ├── dk-Aarhus-Antenneforening │ │ │ │ ├── dk-Copenhagen-AFDK │ │ │ │ ├── dk-Odense │ │ │ │ ├── dk-YouSee │ │ │ │ ├── es-Euskaltel │ │ │ │ ├── fi-HTV │ │ │ │ ├── fi-Joensuu-Tikka │ │ │ │ ├── fi-Kaisa │ │ │ │ ├── fi-TTV │ │ │ │ ├── fi-Turku │ │ │ │ ├── fi-dna │ │ │ │ ├── fi-jkl │ │ │ │ ├── fi-sonera │ │ │ │ ├── fi-vaasa-oncable │ │ │ │ ├── fr-noos-numericable │ │ │ │ ├── hr-B.net │ │ │ │ ├── hu-Digikabel │ │ │ │ ├── lu-Ettelbruck-ACE │ │ │ │ ├── nl-Delta │ │ │ │ ├── nl-REKAM-CAIW_Gouda │ │ │ │ ├── nl-Ziggo │ │ │ │ ├── no-Oslo-CanalDigital │ │ │ │ ├── no-Oslo-Get │ │ │ │ ├── ro-DigiTV │ │ │ │ ├── se-Gothnet │ │ │ │ └── se-comhem │ │ │ │ ├── dvb-s │ │ │ │ ├── ABS1-75.0E │ │ │ │ ├── AMC1-103w │ │ │ │ ├── AMC10_C-135W │ │ │ │ ├── AMC11_C-131W │ │ │ │ ├── AMC16-85.0W │ │ │ │ ├── AMC18_C-105W │ │ │ │ ├── AMC4-101w │ │ │ │ ├── AMC5-79w │ │ │ │ ├── AMC6-72w │ │ │ │ ├── AMC8_C-139W │ │ │ │ ├── AMC9-83.0W │ │ │ │ ├── AMC9_C-83.0W │ │ │ │ ├── Agila2_C-146.0E │ │ │ │ ├── Amazonas-61.0W │ │ │ │ ├── Amos-4w │ │ │ │ ├── Anik-F1-107.3W │ │ │ │ ├── Anik-F1R_C-107.3W │ │ │ │ ├── Anik-F2_C-111.1W │ │ │ │ ├── Anik-F3-119W │ │ │ │ ├── Apstar6_C-134.0E │ │ │ │ ├── AsiaSat2_C-100.5E │ │ │ │ ├── AsiaSat3S_C-105.5E │ │ │ │ ├── Asiasat4_C-122.2E │ │ │ │ ├── Astra-19.2E │ │ │ │ ├── Astra-23.5E │ │ │ │ ├── Astra-28.2E │ │ │ │ ├── Atlantic-Bird-1-12.5W │ │ │ │ ├── Atlantic-Bird-3-5.0W │ │ │ │ ├── BrasilSat-B1-75.0W │ │ │ │ ├── BrasilSat-B2-65.0W │ │ │ │ ├── BrasilSat-B4-70.0W │ │ │ │ ├── BrasilsatB4-84.0W │ │ │ │ ├── ChinaSat5A-87.5E │ │ │ │ ├── Echostar-10+11-110W │ │ │ │ ├── Estrela-do-Sul-63.0W │ │ │ │ ├── Eutelsat9-9.0E │ │ │ │ ├── EutelsatW2-16E │ │ │ │ ├── Express-3A-11.0W │ │ │ │ ├── ExpressAM1-40.0E │ │ │ │ ├── ExpressAM2-80.0E │ │ │ │ ├── ExpressAM22-53.0E │ │ │ │ ├── Galaxy10R-123w │ │ │ │ ├── Galaxy13_C-127W │ │ │ │ ├── Galaxy14_C-125W │ │ │ │ ├── Galaxy15_C-133W │ │ │ │ ├── Galaxy16_C-99.0W │ │ │ │ ├── Galaxy17-91.0W │ │ │ │ ├── Galaxy17_C-91.0W │ │ │ │ ├── Galaxy19-97.0W │ │ │ │ ├── Galaxy19_C-97.0W │ │ │ │ ├── Galaxy23_C-121W │ │ │ │ ├── Galaxy25-93.0W │ │ │ │ ├── Galaxy27-129w │ │ │ │ ├── Galaxy28-89.0W │ │ │ │ ├── Galaxy28_C-89.0W │ │ │ │ ├── Galaxy3C-95.0W │ │ │ │ ├── Galaxy3C_C-95.0W │ │ │ │ ├── Hispasat-30.0W │ │ │ │ ├── Hotbird-13.0E │ │ │ │ ├── IA7-129w │ │ │ │ ├── Insat2E_C-83.0E │ │ │ │ ├── Insat3A_C-93.5E │ │ │ │ ├── Insat4A_C-83.0E │ │ │ │ ├── Insat4B_C-93.5E │ │ │ │ ├── Intel4-72.0E │ │ │ │ ├── Intel904-60.0E │ │ │ │ ├── Intelsat-1002-1.0W │ │ │ │ ├── Intelsat-11-43.0W │ │ │ │ ├── Intelsat-12-45.0E │ │ │ │ ├── Intelsat-1R-45.0W │ │ │ │ ├── Intelsat-3R-43.0W │ │ │ │ ├── Intelsat-6B-43.0W │ │ │ │ ├── Intelsat-705-50.0W │ │ │ │ ├── Intelsat-707-53.0W │ │ │ │ ├── Intelsat-903-34.5W │ │ │ │ ├── Intelsat-905-24.5W │ │ │ │ ├── Intelsat-907-27.5W │ │ │ │ ├── Intelsat21_C-58.0W │ │ │ │ ├── Intelsat34_C-55.5W │ │ │ │ ├── Intelsat8_C-166.0E │ │ │ │ ├── JCSat3A_C-128.0E │ │ │ │ ├── Measat3_C-91.5E │ │ │ │ ├── NSS-10-37.5W │ │ │ │ ├── NSS-7-22.0W │ │ │ │ ├── NSS-806-40.5W │ │ │ │ ├── Nahuel-1-71.8W │ │ │ │ ├── Nilesat101+102-7.0W │ │ │ │ ├── OptusC1-156E │ │ │ │ ├── OptusD1-160.0E │ │ │ │ ├── PAS-43.0W │ │ │ │ ├── PalapaC2_C-113.0E │ │ │ │ ├── SBS6-74w │ │ │ │ ├── SES1_C-101W │ │ │ │ ├── SES2-87.0W │ │ │ │ ├── SES2_C-87.0W │ │ │ │ ├── SES3_C-103W │ │ │ │ ├── ST1_C-80.0E │ │ │ │ ├── Satmex-5-116.8W │ │ │ │ ├── Satmex-6-113.0W │ │ │ │ ├── Sirius-5.0E │ │ │ │ ├── Telecom2-8.0W │ │ │ │ ├── Telkom1_C-108.0E │ │ │ │ ├── Telstar10_C-76.5E │ │ │ │ ├── Telstar12-15.0W │ │ │ │ ├── Telstar18_C-138.0E │ │ │ │ ├── Thaicom1A_C-120.0E │ │ │ │ ├── Thaicom2_C-78.5E │ │ │ │ ├── Thaicom5_C-78.5E │ │ │ │ ├── Thor-1.0W │ │ │ │ ├── Turksat-42.0E │ │ │ │ ├── Vinasat1_C-132.0E │ │ │ │ └── Yamal201-90.0E │ │ │ │ └── dvb-t │ │ │ │ ├── ad-Andorra │ │ │ │ ├── at-All │ │ │ │ ├── au-Adelaide │ │ │ │ ├── au-AdelaideFoothills │ │ │ │ ├── au-Ballarat │ │ │ │ ├── au-Bendigo │ │ │ │ ├── au-Brisbane │ │ │ │ ├── au-Cairns │ │ │ │ ├── au-Canberra-Black-Mt │ │ │ │ ├── au-Coonabarabran │ │ │ │ ├── au-Darwin │ │ │ │ ├── au-Devonport │ │ │ │ ├── au-FraserCoast-Bundaberg │ │ │ │ ├── au-GoldCoast │ │ │ │ ├── au-Goulburn-Rocky_Hill │ │ │ │ ├── au-Hervey_Bay-Ghost_Hill │ │ │ │ ├── au-Hobart │ │ │ │ ├── au-Mackay │ │ │ │ ├── au-Melbourne │ │ │ │ ├── au-Melbourne-Selby │ │ │ │ ├── au-Melbourne-Upwey │ │ │ │ ├── au-MidNorthCoast │ │ │ │ ├── au-Newcastle │ │ │ │ ├── au-Perth │ │ │ │ ├── au-Perth_Roleystone │ │ │ │ ├── au-SpencerGulf │ │ │ │ ├── au-SunshineCoast │ │ │ │ ├── au-Sutherland │ │ │ │ ├── au-Sydney │ │ │ │ ├── au-Sydney_Kings_Cross │ │ │ │ ├── au-Tamworth │ │ │ │ ├── au-Townsville │ │ │ │ ├── au-WaggaWagga │ │ │ │ ├── au-Wollongong │ │ │ │ ├── au-canberra │ │ │ │ ├── au-unknown │ │ │ │ ├── auto-Australia │ │ │ │ ├── auto-Default │ │ │ │ ├── auto-Taiwan │ │ │ │ ├── auto-With167kHzOffsets │ │ │ │ ├── ax-Smedsbole │ │ │ │ ├── be-All │ │ │ │ ├── bg-Sofia │ │ │ │ ├── ch-All │ │ │ │ ├── ch-Citycable │ │ │ │ ├── ch-Geneva │ │ │ │ ├── co-All │ │ │ │ ├── cz-All │ │ │ │ ├── de-Baden-Wuerttemberg │ │ │ │ ├── de-Bayern │ │ │ │ ├── de-Berlin │ │ │ │ ├── de-Brandenburg │ │ │ │ ├── de-Bremen │ │ │ │ ├── de-Dusseldorf │ │ │ │ ├── de-Hamburg │ │ │ │ ├── de-Hessen │ │ │ │ ├── de-Mecklenburg-Vorpommern │ │ │ │ ├── de-Niedersachsen │ │ │ │ ├── de-Nordrhein-Westfalen │ │ │ │ ├── de-Rheinland-Pfalz │ │ │ │ ├── de-Saarland │ │ │ │ ├── de-Sachsen │ │ │ │ ├── de-Sachsen-Anhalt │ │ │ │ ├── de-Schleswig-Holstein │ │ │ │ ├── de-Thueringen │ │ │ │ ├── dk-All │ │ │ │ ├── ee-All │ │ │ │ ├── es-Albacete │ │ │ │ ├── es-Alfabia │ │ │ │ ├── es-Alicante │ │ │ │ ├── es-Almeria │ │ │ │ ├── es-Alpicat │ │ │ │ ├── es-Asturias │ │ │ │ ├── es-BaixoMinho │ │ │ │ ├── es-Bilbao │ │ │ │ ├── es-Cadiz │ │ │ │ ├── es-Carceres │ │ │ │ ├── es-Collserola │ │ │ │ ├── es-Donostia │ │ │ │ ├── es-Granada │ │ │ │ ├── es-Huesca │ │ │ │ ├── es-Las_Palmas │ │ │ │ ├── es-Lugo │ │ │ │ ├── es-Madrid │ │ │ │ ├── es-Malaga │ │ │ │ ├── es-Muros-Noia │ │ │ │ ├── es-Mussara │ │ │ │ ├── es-Pamplona │ │ │ │ ├── es-SC_Tenerife │ │ │ │ ├── es-Santander │ │ │ │ ├── es-Santiago_de_Compostela │ │ │ │ ├── es-Sevilla │ │ │ │ ├── es-Tenerife │ │ │ │ ├── es-Valencia │ │ │ │ ├── es-Valladolid │ │ │ │ ├── es-Vilamarxant │ │ │ │ ├── es-Vitoria-Gasteiz │ │ │ │ ├── es-Zaragoza │ │ │ │ ├── fi-Aanekoski │ │ │ │ ├── fi-Aanekoski_Konginkangas │ │ │ │ ├── fi-Ahtari │ │ │ │ ├── fi-Alajarvi │ │ │ │ ├── fi-Anjalankoski_Ruotila │ │ │ │ ├── fi-DNA-Espoo │ │ │ │ ├── fi-DNA-Eurajoki │ │ │ │ ├── fi-DNA-Hameenlinna │ │ │ │ ├── fi-DNA-Hamina │ │ │ │ ├── fi-DNA-Hausjarvi │ │ │ │ ├── fi-DNA-Helsinki │ │ │ │ ├── fi-DNA-Jokioinen │ │ │ │ ├── fi-DNA-Jyvaskyla │ │ │ │ ├── fi-DNA-Kaarina │ │ │ │ ├── fi-DNA-Kajaani │ │ │ │ ├── fi-DNA-Kangasala │ │ │ │ ├── fi-DNA-Karkkila │ │ │ │ ├── fi-DNA-Kiiminki │ │ │ │ ├── fi-DNA-Kokkola │ │ │ │ ├── fi-DNA-Kontiolahti │ │ │ │ ├── fi-DNA-Kouvola │ │ │ │ ├── fi-DNA-Kuopio │ │ │ │ ├── fi-DNA-Lahti │ │ │ │ ├── fi-DNA-Lappeenranta │ │ │ │ ├── fi-DNA-Lohja │ │ │ │ ├── fi-DNA-Loviisa │ │ │ │ ├── fi-DNA-Mikkeli │ │ │ │ ├── fi-DNA-Nousiainen │ │ │ │ ├── fi-DNA-Nurmijarvi │ │ │ │ ├── fi-DNA-Porvoo │ │ │ │ ├── fi-DNA-Salo │ │ │ │ ├── fi-DNA-Savonlinna │ │ │ │ ├── fi-DNA-Seinajoki │ │ │ │ ├── fi-DNA-Tyrnava │ │ │ │ ├── fi-DNA-Ulvila │ │ │ │ ├── fi-DNA-Vaasa │ │ │ │ ├── fi-DNA-Valkeakoski │ │ │ │ ├── fi-DNA-Vesilahti │ │ │ │ ├── fi-DNA-Ylivieska │ │ │ │ ├── fi-Enontekio_Ahovaara │ │ │ │ ├── fi-Enontekio_Hetta │ │ │ │ ├── fi-Enontekio_Kuttanen │ │ │ │ ├── fi-Espoo │ │ │ │ ├── fi-Eurajoki │ │ │ │ ├── fi-Fiskars │ │ │ │ ├── fi-Haapavesi │ │ │ │ ├── fi-Hameenkyro_Kyroskoski │ │ │ │ ├── fi-Hameenlinna_Painokangas │ │ │ │ ├── fi-Hanko │ │ │ │ ├── fi-Hartola │ │ │ │ ├── fi-Heinavesi │ │ │ │ ├── fi-Heinola │ │ │ │ ├── fi-Hyrynsalmi │ │ │ │ ├── fi-Hyrynsalmi_Kyparavaara │ │ │ │ ├── fi-Hyrynsalmi_Paljakka │ │ │ │ ├── fi-Hyvinkaa │ │ │ │ ├── fi-Ii_Raiskio │ │ │ │ ├── fi-Iisalmi │ │ │ │ ├── fi-Ikaalinen │ │ │ │ ├── fi-Ikaalinen_Riitiala │ │ │ │ ├── fi-Inari │ │ │ │ ├── fi-Inari_Janispaa │ │ │ │ ├── fi-Inari_Naatamo │ │ │ │ ├── fi-Ivalo_Saarineitamovaara │ │ │ │ ├── fi-Jalasjarvi │ │ │ │ ├── fi-Jamsa_Halli │ │ │ │ ├── fi-Jamsa_Kaipola │ │ │ │ ├── fi-Jamsa_Matkosvuori │ │ │ │ ├── fi-Jamsa_Ouninpohja │ │ │ │ ├── fi-Jamsankoski │ │ │ │ ├── fi-Joensuu_Vestinkallio │ │ │ │ ├── fi-Joroinen_Puukkola │ │ │ │ ├── fi-Joutsa_Lankia │ │ │ │ ├── fi-Joutseno │ │ │ │ ├── fi-Juupajoki_Kopsamo │ │ │ │ ├── fi-Juva │ │ │ │ ├── fi-Jyvaskyla │ │ │ │ ├── fi-Jyvaskyla_Vaajakoski │ │ │ │ ├── fi-Kaavi_Sivakkavaara │ │ │ │ ├── fi-Kajaani_Pollyvaara │ │ │ │ ├── fi-Kalajoki │ │ │ │ ├── fi-Kangaslampi │ │ │ │ ├── fi-Kangasniemi_Turkinmaki │ │ │ │ ├── fi-Kankaanpaa │ │ │ │ ├── fi-Karigasniemi │ │ │ │ ├── fi-Karkkila │ │ │ │ ├── fi-Karstula │ │ │ │ ├── fi-Karvia │ │ │ │ ├── fi-Kaunispaa │ │ │ │ ├── fi-Kemijarvi_Suomutunturi │ │ │ │ ├── fi-Kerimaki │ │ │ │ ├── fi-Keuruu │ │ │ │ ├── fi-Keuruu_Haapamaki │ │ │ │ ├── fi-Kihnio │ │ │ │ ├── fi-Kiihtelysvaara │ │ │ │ ├── fi-Kilpisjarvi │ │ │ │ ├── fi-Kittila_Levitunturi │ │ │ │ ├── fi-Kolari_Vuolittaja │ │ │ │ ├── fi-Koli │ │ │ │ ├── fi-Korpilahti_Vaarunvuori │ │ │ │ ├── fi-Korppoo │ │ │ │ ├── fi-Kruunupyy │ │ │ │ ├── fi-Kuhmo_Haukela │ │ │ │ ├── fi-Kuhmo_Lentiira │ │ │ │ ├── fi-Kuhmo_Niva │ │ │ │ ├── fi-Kuhmoinen │ │ │ │ ├── fi-Kuhmoinen_Harjunsalmi │ │ │ │ ├── fi-Kuhmoinen_Puukkoinen │ │ │ │ ├── fi-Kuopio │ │ │ │ ├── fi-Kurikka_Kesti │ │ │ │ ├── fi-Kustavi_Viherlahti │ │ │ │ ├── fi-Kuusamo_Hamppulampi │ │ │ │ ├── fi-Kyyjarvi_Noposenaho │ │ │ │ ├── fi-Lahti │ │ │ │ ├── fi-Lapua │ │ │ │ ├── fi-Laukaa │ │ │ │ ├── fi-Laukaa_Vihtavuori │ │ │ │ ├── fi-Lavia │ │ │ │ ├── fi-Lohja │ │ │ │ ├── fi-Loimaa │ │ │ │ ├── fi-Luhanka │ │ │ │ ├── fi-Luopioinen │ │ │ │ ├── fi-Mantta │ │ │ │ ├── fi-Mantyharju │ │ │ │ ├── fi-Mikkeli │ │ │ │ ├── fi-Muonio_Olostunturi │ │ │ │ ├── fi-Nilsia │ │ │ │ ├── fi-Nilsia_Keski-Siikajarvi │ │ │ │ ├── fi-Nilsia_Pisa │ │ │ │ ├── fi-Nokia │ │ │ │ ├── fi-Nokia_Siuro │ │ │ │ ├── fi-Nummi-Pusula_Hyonola │ │ │ │ ├── fi-Nuorgam_Njallavaara │ │ │ │ ├── fi-Nuorgam_raja │ │ │ │ ├── fi-Nurmes_Konnanvaara │ │ │ │ ├── fi-Nurmes_Kortevaara │ │ │ │ ├── fi-Orivesi_Talviainen │ │ │ │ ├── fi-Oulu │ │ │ │ ├── fi-Padasjoki │ │ │ │ ├── fi-Padasjoki_Arrakoski │ │ │ │ ├── fi-Paltamo_Kivesvaara │ │ │ │ ├── fi-Parainen_Houtskari │ │ │ │ ├── fi-Parikkala │ │ │ │ ├── fi-Parkano_Sopukallio │ │ │ │ ├── fi-Pello │ │ │ │ ├── fi-Pello_Ratasvaara │ │ │ │ ├── fi-Perho │ │ │ │ ├── fi-Pernaja │ │ │ │ ├── fi-Pieksamaki_Halkokumpu │ │ │ │ ├── fi-Pihtipudas │ │ │ │ ├── fi-Porvoo_Suomenkyla │ │ │ │ ├── fi-Posio │ │ │ │ ├── fi-Pudasjarvi │ │ │ │ ├── fi-Pudasjarvi_Iso-Syote │ │ │ │ ├── fi-Pudasjarvi_Kangasvaara │ │ │ │ ├── fi-Puolanka │ │ │ │ ├── fi-Pyhatunturi │ │ │ │ ├── fi-Pyhavuori │ │ │ │ ├── fi-Pylkonmaki_Karankajarvi │ │ │ │ ├── fi-Raahe_Mestauskallio │ │ │ │ ├── fi-Raahe_Piehinki │ │ │ │ ├── fi-Ranua_Haasionmaa │ │ │ │ ├── fi-Ranua_Leppiaho │ │ │ │ ├── fi-Rautavaara_Angervikko │ │ │ │ ├── fi-Rautjarvi_Simpele │ │ │ │ ├── fi-Ristijarvi │ │ │ │ ├── fi-Rovaniemi │ │ │ │ ├── fi-Rovaniemi_Kaihuanvaara │ │ │ │ ├── fi-Rovaniemi_Karhuvaara │ │ │ │ ├── fi-Rovaniemi_Marasenkallio │ │ │ │ ├── fi-Rovaniemi_Rantalaki │ │ │ │ ├── fi-Rovaniemi_Sonka │ │ │ │ ├── fi-Rovaniemi_Sorviselka │ │ │ │ ├── fi-Ruka │ │ │ │ ├── fi-Ruovesi_Storminiemi │ │ │ │ ├── fi-Saarijarvi │ │ │ │ ├── fi-Saarijarvi_Kalmari │ │ │ │ ├── fi-Saarijarvi_Mahlu │ │ │ │ ├── fi-Salla_Hirvasvaara │ │ │ │ ├── fi-Salla_Ihistysjanka │ │ │ │ ├── fi-Salla_Naruska │ │ │ │ ├── fi-Salla_Sallatunturi │ │ │ │ ├── fi-Salla_Sarivaara │ │ │ │ ├── fi-Salo_Isokyla │ │ │ │ ├── fi-Savukoski_Martti │ │ │ │ ├── fi-Savukoski_Tanhua │ │ │ │ ├── fi-Siilinjarvi │ │ │ │ ├── fi-Simo_Viantie │ │ │ │ ├── fi-Sipoo_Norrkulla │ │ │ │ ├── fi-Sodankyla_Pittiovaara │ │ │ │ ├── fi-Sodankyla_Vuotso │ │ │ │ ├── fi-Sulkava_Vaatalanmaki │ │ │ │ ├── fi-Suomussalmi_Ala-Vuokki │ │ │ │ ├── fi-Suomussalmi_Ammansaari │ │ │ │ ├── fi-Suomussalmi_Juntusranta │ │ │ │ ├── fi-Suomussalmi_Myllylahti │ │ │ │ ├── fi-Sysma_Liikola │ │ │ │ ├── fi-Taivalkoski │ │ │ │ ├── fi-Taivalkoski_Taivalvaara │ │ │ │ ├── fi-Tammela │ │ │ │ ├── fi-Tammisaari │ │ │ │ ├── fi-Tampere │ │ │ │ ├── fi-Tampere_Pyynikki │ │ │ │ ├── fi-Tervola │ │ │ │ ├── fi-Turku │ │ │ │ ├── fi-Utsjoki │ │ │ │ ├── fi-Utsjoki_Nuvvus │ │ │ │ ├── fi-Utsjoki_Outakoski │ │ │ │ ├── fi-Utsjoki_Polvarniemi │ │ │ │ ├── fi-Utsjoki_Rovisuvanto │ │ │ │ ├── fi-Utsjoki_Tenola │ │ │ │ ├── fi-Uusikaupunki_Orivo │ │ │ │ ├── fi-Vaala │ │ │ │ ├── fi-Vaasa │ │ │ │ ├── fi-Valtimo │ │ │ │ ├── fi-Vammala_Jyranvuori │ │ │ │ ├── fi-Vammala_Roismala │ │ │ │ ├── fi-Vammala_Savi │ │ │ │ ├── fi-Vantaa_Hakunila │ │ │ │ ├── fi-Varpaisjarvi_Honkamaki │ │ │ │ ├── fi-Virrat_Lappavuori │ │ │ │ ├── fi-Vuokatti │ │ │ │ ├── fi-Ylitornio_Ainiovaara │ │ │ │ ├── fi-Ylitornio_Raanujarvi │ │ │ │ ├── fi-Yllas │ │ │ │ ├── fi-Yllasjarvi │ │ │ │ ├── fr-All │ │ │ │ ├── gr-Athens │ │ │ │ ├── hk-HongKong │ │ │ │ ├── hr-All │ │ │ │ ├── hu-Bekescsaba │ │ │ │ ├── hu-Budapest │ │ │ │ ├── hu-Csavoly-Kiskoros │ │ │ │ ├── hu-Debrecen-Komadi │ │ │ │ ├── hu-Fehergyarmat │ │ │ │ ├── hu-Gerecse-Dorog-Tatabanya │ │ │ │ ├── hu-Gyor │ │ │ │ ├── hu-Kabhegy-Kaposvar-Tamasi │ │ │ │ ├── hu-Karancs-Nagy-Hideg-hegy-Balassagyarmat-Godollo-Salgotarjan-Vac │ │ │ │ ├── hu-Karcag │ │ │ │ ├── hu-Kecskemet │ │ │ │ ├── hu-Kekes-Cegled-Eger-Miskolctapolca-Ozd │ │ │ │ ├── hu-Miskolc-Aggtelek-Fony │ │ │ │ ├── hu-Mor-Siofok-Veszprem-Zirc │ │ │ │ ├── hu-Nagykanizsa-Barcs-Keszthely │ │ │ │ ├── hu-Nyiregyhaza-Tokaj-Kazincbarcika-Saly-Satoraljaujhely │ │ │ │ ├── hu-Pecs-Siklos │ │ │ │ ├── hu-Sopron-Koszeg │ │ │ │ ├── hu-Szeged │ │ │ │ ├── hu-Szekesfehervar │ │ │ │ ├── hu-Szentes-Battonya │ │ │ │ ├── hu-Szolnok │ │ │ │ ├── hu-Szombathely-Vasvar-Lenti-Zalaegerszeg │ │ │ │ ├── hu-Uzd-Bonyhad-Dunaujvaros-Szekszard-Szigetvar │ │ │ │ ├── ie-CairnHill │ │ │ │ ├── ie-ClermontCarn │ │ │ │ ├── ie-Dungarvan │ │ │ │ ├── ie-HolywellHill │ │ │ │ ├── ie-Kippure │ │ │ │ ├── ie-Maghera │ │ │ │ ├── ie-MountLeinster │ │ │ │ ├── ie-Mullaghanish │ │ │ │ ├── ie-SpurHill │ │ │ │ ├── ie-ThreeRock │ │ │ │ ├── ie-Truskmore │ │ │ │ ├── ie-WoodcockHill │ │ │ │ ├── il-All │ │ │ │ ├── ir-Tehran │ │ │ │ ├── is-Reykjavik │ │ │ │ ├── it-All │ │ │ │ ├── lt-All │ │ │ │ ├── lu-All │ │ │ │ ├── lv-Riga │ │ │ │ ├── nl-All │ │ │ │ ├── no-Trondelag_Stjordal │ │ │ │ ├── nz-AucklandInfill │ │ │ │ ├── nz-AucklandWaiatarua │ │ │ │ ├── nz-Christchurch │ │ │ │ ├── nz-Dunedin │ │ │ │ ├── nz-Hamilton │ │ │ │ ├── nz-HawkesBayMtErin │ │ │ │ ├── nz-HawkesBayNapier │ │ │ │ ├── nz-Manawatu │ │ │ │ ├── nz-Tauranga │ │ │ │ ├── nz-Waikato │ │ │ │ ├── nz-WellingtonInfill │ │ │ │ ├── nz-WellingtonKaukau │ │ │ │ ├── nz-WellingtonNgarara │ │ │ │ ├── pl-Czestochowa │ │ │ │ ├── pl-Gdansk │ │ │ │ ├── pl-Krakow │ │ │ │ ├── pl-Krosno_Sucha_Gora │ │ │ │ ├── pl-Rzeszow │ │ │ │ ├── pl-Szczecin │ │ │ │ ├── pl-Warszawa │ │ │ │ ├── pl-Wroclaw │ │ │ │ ├── pt-All │ │ │ │ ├── ro-Bucharest │ │ │ │ ├── ru-Krasnodar │ │ │ │ ├── ru-Novosibirsk │ │ │ │ ├── ru-Volgodonsk │ │ │ │ ├── se-Aareavaara │ │ │ │ ├── se-Adolfstrom │ │ │ │ ├── se-Agnas │ │ │ │ ├── se-Akersjon │ │ │ │ ├── se-Alafors │ │ │ │ ├── se-Albacken │ │ │ │ ├── se-Algsjo │ │ │ │ ├── se-Alingsas_Mariedal │ │ │ │ ├── se-Alvangen │ │ │ │ ├── se-Alvdalen_Brunnsberg │ │ │ │ ├── se-Alvdalsasen │ │ │ │ ├── se-Alvsbacka │ │ │ │ ├── se-Alvsbyn │ │ │ │ ├── se-Ammarnas_Ribovardo │ │ │ │ ├── se-Ammarnas_Tjultrask │ │ │ │ ├── se-Amot │ │ │ │ ├── se-Amotfors_Kroppstad │ │ │ │ ├── se-An │ │ │ │ ├── se-Andersvattnet_Ersmyrberget │ │ │ │ ├── se-Ange_Snoberg │ │ │ │ ├── se-Angebo │ │ │ │ ├── se-Angelholm_Vegeholm │ │ │ │ ├── se-Angersjo │ │ │ │ ├── se-Are │ │ │ │ ├── se-Arjang │ │ │ │ ├── se-Arjeplog_Galtispouda │ │ │ │ ├── se-Arosjokk │ │ │ │ ├── se-Arvidsjaur_Jultrask │ │ │ │ ├── se-Arvika_Orshultaberget │ │ │ │ ├── se-As │ │ │ │ ├── se-Asele_Aslia │ │ │ │ ├── se-Asmon_Sormoflo │ │ │ │ ├── se-Aspeboda │ │ │ │ ├── se-Atvidaberg │ │ │ │ ├── se-Avesta_Krylbo │ │ │ │ ├── se-Backe │ │ │ │ ├── se-Backefors │ │ │ │ ├── se-Bankeryd │ │ │ │ ├── se-Bengtsfors │ │ │ │ ├── se-Berghamn │ │ │ │ ├── se-Bergshamra_Vaxtuna │ │ │ │ ├── se-Bergsjo_Balleberget │ │ │ │ ├── se-Bergvik │ │ │ │ ├── se-Billsjo │ │ │ │ ├── se-Bispfors │ │ │ │ ├── se-Bjorkliden_Tornehamn │ │ │ │ ├── se-Bjorksele │ │ │ │ ├── se-Bjorkvattnet │ │ │ │ ├── se-Bjorna │ │ │ │ ├── se-Bjurberget_Hemtjarn │ │ │ │ ├── se-Bjurtrask │ │ │ │ ├── se-Boberg │ │ │ │ ├── se-Boda_Fagerum │ │ │ │ ├── se-Boden_Skogsa │ │ │ │ ├── se-Bograngen │ │ │ │ ├── se-Bollebygd │ │ │ │ ├── se-Bollnas │ │ │ │ ├── se-Bonhamn │ │ │ │ ├── se-Boras_Dalsjofors │ │ │ │ ├── se-Boras_Sjobo │ │ │ │ ├── se-Borgafjall │ │ │ │ ├── se-Borgholm_Ramsattra │ │ │ │ ├── se-Borgsjobyn │ │ │ │ ├── se-Borkan │ │ │ │ ├── se-Borlange_Idkerberget │ │ │ │ ├── se-Borlange_Nygardarna │ │ │ │ ├── se-Bortansbyn_Bortan │ │ │ │ ├── se-Bosebyn │ │ │ │ ├── se-Botsmark │ │ │ │ ├── se-Bottnaryd_Ryd │ │ │ │ ├── se-Bredaker │ │ │ │ ├── se-Bredbyn_Kubbe │ │ │ │ ├── se-Bredbyn_Vasterfannbyn │ │ │ │ ├── se-Bredsjon │ │ │ │ ├── se-Bromsebro │ │ │ │ ├── se-Bruzaholm │ │ │ │ ├── se-Bydalen_Hovdehogen │ │ │ │ ├── se-Bygdetrask │ │ │ │ ├── se-Bygdsiljum │ │ │ │ ├── se-Byxelkrok │ │ │ │ ├── se-Dadran │ │ │ │ ├── se-Dal │ │ │ │ ├── se-Dalfors │ │ │ │ ├── se-Dals_Langed │ │ │ │ ├── se-Dalstuga │ │ │ │ ├── se-Degeberga │ │ │ │ ├── se-Degerfors │ │ │ │ ├── se-Delary │ │ │ │ ├── se-Delary_Kolaboda │ │ │ │ ├── se-Djura │ │ │ │ ├── se-Dorotea │ │ │ │ ├── se-Drevdagen │ │ │ │ ├── se-Duved │ │ │ │ ├── se-Duvnas │ │ │ │ ├── se-Duvnas_Basna │ │ │ │ ├── se-Edane │ │ │ │ ├── se-Edsbyn │ │ │ │ ├── se-Edsele │ │ │ │ ├── se-Edsleskog_Hogheden │ │ │ │ ├── se-Eksharad_Ekesberget │ │ │ │ ├── se-Ellos │ │ │ │ ├── se-Emmaboda_Balshult │ │ │ │ ├── se-Enafors │ │ │ │ ├── se-Enviken │ │ │ │ ├── se-Erikslund_Bergasen │ │ │ │ ├── se-Fagersta │ │ │ │ ├── se-Fagersta_Jattasen │ │ │ │ ├── se-Falerum_Centrum │ │ │ │ ├── se-Falkenberg_Ringsegard │ │ │ │ ├── se-Faltrask │ │ │ │ ├── se-Falun_Lovberget │ │ │ │ ├── se-Farila │ │ │ │ ├── se-Farjestaden_Algutsrum │ │ │ │ ├── se-Faro_Ajkerstrask │ │ │ │ ├── se-Faro_Ajkestrask │ │ │ │ ├── se-Farosund_Bunge │ │ │ │ ├── se-Fengersfors │ │ │ │ ├── se-Filipstad_Klockarhojden │ │ │ │ ├── se-Finnveden │ │ │ │ ├── se-Fjal │ │ │ │ ├── se-Fjallsta │ │ │ │ ├── se-Flarke │ │ │ │ ├── se-Floda │ │ │ │ ├── se-Flurkmark │ │ │ │ ├── se-Flyggsjo │ │ │ │ ├── se-Flyn │ │ │ │ ├── se-Folsbyn │ │ │ │ ├── se-Forsed │ │ │ │ ├── se-Forsmo │ │ │ │ ├── se-Forsmo_Yttersel │ │ │ │ ├── se-Forsnaset │ │ │ │ ├── se-Frankrikegarden_Frankrike │ │ │ │ ├── se-Fransta │ │ │ │ ├── se-Fredrika │ │ │ │ ├── se-Fredriksberg │ │ │ │ ├── se-Fredros │ │ │ │ ├── se-Fritsla │ │ │ │ ├── se-Fullsjon │ │ │ │ ├── se-Funasdalen_Funasdalsberge │ │ │ │ ├── se-Funasdalen_Telestation │ │ │ │ ├── se-Furudal │ │ │ │ ├── se-Gaddede │ │ │ │ ├── se-Gallivare │ │ │ │ ├── se-Gallsatter │ │ │ │ ├── se-Gardikfors │ │ │ │ ├── se-Gargnas │ │ │ │ ├── se-Garpenberg_Kuppgarden │ │ │ │ ├── se-Gavle_Skogmur │ │ │ │ ├── se-Gillhov │ │ │ │ ├── se-Glimakra │ │ │ │ ├── se-Gnarp │ │ │ │ ├── se-Gnesta │ │ │ │ ├── se-Gnosjo_Marieholm │ │ │ │ ├── se-Gordalen │ │ │ │ ├── se-Goteborg_Brudaremossen │ │ │ │ ├── se-Goteborg_Slattadamm │ │ │ │ ├── se-Graninge │ │ │ │ ├── se-Grasmark │ │ │ │ ├── se-Grasmyr │ │ │ │ ├── se-Grebbestad │ │ │ │ ├── se-Grevie │ │ │ │ ├── se-Grovelsjon │ │ │ │ ├── se-Grums │ │ │ │ ├── se-Guliksberg │ │ │ │ ├── se-Guliksberg_Rodvattnet │ │ │ │ ├── se-Gullbrandstorp │ │ │ │ ├── se-Gumhojden │ │ │ │ ├── se-Gunnarn_Sorsjoliden │ │ │ │ ├── se-Gunnarsbo │ │ │ │ ├── se-Gunnarsbyn │ │ │ │ ├── se-Gunnarskog │ │ │ │ ├── se-Gusum │ │ │ │ ├── se-Hadanberg │ │ │ │ ├── se-Hagfors_Varmullsasen │ │ │ │ ├── se-Hakafot │ │ │ │ ├── se-Halaforsen │ │ │ │ ├── se-Haljeboda │ │ │ │ ├── se-Hallan │ │ │ │ ├── se-Hallaryd │ │ │ │ ├── se-Hallastrom │ │ │ │ ├── se-Hallbo │ │ │ │ ├── se-Halle │ │ │ │ ├── se-Halleviksstrand │ │ │ │ ├── se-Hallsjo │ │ │ │ ├── se-Halmstad_Hamnen │ │ │ │ ├── se-Halmstad_Oskarstrom │ │ │ │ ├── se-Hamburgsund │ │ │ │ ├── se-Harads │ │ │ │ ├── se-Harnosand_Harnon │ │ │ │ ├── se-Harrsjon │ │ │ │ ├── se-Hassela │ │ │ │ ├── se-Havdhem │ │ │ │ ├── se-Hede │ │ │ │ ├── se-Hedemora │ │ │ │ ├── se-Hedenaset │ │ │ │ ├── se-Helgum │ │ │ │ ├── se-Helsingborg_Olympia │ │ │ │ ├── se-Hemavan │ │ │ │ ├── se-Hemson │ │ │ │ ├── se-Henan │ │ │ │ ├── se-Hennan │ │ │ │ ├── se-Hestra_Aspas │ │ │ │ ├── se-Hjo_Grevback │ │ │ │ ├── se-Hofors │ │ │ │ ├── se-Hogfors │ │ │ │ ├── se-Hoglunda │ │ │ │ ├── se-Hogsby_Virstad │ │ │ │ ├── se-Hogvalen │ │ │ │ ├── se-Holjes │ │ │ │ ├── se-Hollviken_Stora_Hammar │ │ │ │ ├── se-Holsbybrunn_Holsbyholm │ │ │ │ ├── se-Horby_Sallerup │ │ │ │ ├── se-Horken │ │ │ │ ├── se-Hornon │ │ │ │ ├── se-Hotagen │ │ │ │ ├── se-Hoting │ │ │ │ ├── se-Hovfjallet │ │ │ │ ├── se-Hudiksvall_Forsa │ │ │ │ ├── se-Hudiksvall_Galgberget │ │ │ │ ├── se-Hummelholm │ │ │ │ ├── se-Hunnebostrand │ │ │ │ ├── se-Huskvarna │ │ │ │ ├── se-Husum │ │ │ │ ├── se-Idivuoma │ │ │ │ ├── se-Idre │ │ │ │ ├── se-Ingatorp │ │ │ │ ├── se-Ingvallsbenning │ │ │ │ ├── se-Irevik │ │ │ │ ├── se-Irevik_3195 │ │ │ │ ├── se-Ivarsbyn │ │ │ │ ├── se-Jakkvik_Frakenmyren │ │ │ │ ├── se-Jamjo │ │ │ │ ├── se-Jarkvissle │ │ │ │ ├── se-Jarnforsen │ │ │ │ ├── se-Jarpen_Mellangardsberget │ │ │ │ ├── se-Jarvso │ │ │ │ ├── se-Jarvtrask │ │ │ │ ├── se-Joestrom │ │ │ │ ├── se-Jokkmokk_Nyborg │ │ │ │ ├── se-Jokkmokk_Tjalmejaure │ │ │ │ ├── se-Jonkoping_Bondberget │ │ │ │ ├── se-Jormvattnet │ │ │ │ ├── se-Jude │ │ │ │ ├── se-Junsele_Hamptjarnsberget │ │ │ │ ├── se-Junsele_Vallen │ │ │ │ ├── se-Kagerod_Mollarp │ │ │ │ ├── se-Kalarne │ │ │ │ ├── se-Kalen │ │ │ │ ├── se-Kalix │ │ │ │ ├── se-Kallered │ │ │ │ ├── se-Kallinge_Kalleberga │ │ │ │ ├── se-Kallror │ │ │ │ ├── se-Kampersvik_Ekeberget │ │ │ │ ├── se-Karbole │ │ │ │ ├── se-Karesuando │ │ │ │ ├── se-Karlanda │ │ │ │ ├── se-Karlsborg_Vaberget │ │ │ │ ├── se-Karlshamn │ │ │ │ ├── se-Karlskrona_Jamjo │ │ │ │ ├── se-Karlskrona_Vamo │ │ │ │ ├── se-Karlstad_Sormon │ │ │ │ ├── se-Kasta_Ringkallen │ │ │ │ ├── se-Kaxas │ │ │ │ ├── se-Kaxholmen_Vistakulle │ │ │ │ ├── se-Kinnastrom │ │ │ │ ├── se-Kiruna_Kirunavaara │ │ │ │ ├── se-Kisa │ │ │ │ ├── se-Klingsta │ │ │ │ ├── se-Klovsjo │ │ │ │ ├── se-Knared │ │ │ │ ├── se-Knavland │ │ │ │ ├── se-Kopmanholmen │ │ │ │ ├── se-Kopparberg │ │ │ │ ├── se-Koppom │ │ │ │ ├── se-Korstrask │ │ │ │ ├── se-Kottsjon │ │ │ │ ├── se-Kovland │ │ │ │ ├── se-Kramfors_Lugnvik │ │ │ │ ├── se-Kramfors_Ostby │ │ │ │ ├── se-Krangede │ │ │ │ ├── se-Kristineberg │ │ │ │ ├── se-Kristinehamn_Utsiktsberget │ │ │ │ ├── se-Krokstrand │ │ │ │ ├── se-Kultsjon │ │ │ │ ├── se-Kungalv │ │ │ │ ├── se-Kungsater │ │ │ │ ├── se-Kungsbacka_Ojersbo │ │ │ │ ├── se-Kungsberget_GI │ │ │ │ ├── se-Kungsberget_Gl │ │ │ │ ├── se-Kungshamn │ │ │ │ ├── se-Kurravaara │ │ │ │ ├── se-Kvarnsvedjan │ │ │ │ ├── se-Kvikkjokk_Arrevare │ │ │ │ ├── se-Kvikkjokk_Tavvevare │ │ │ │ ├── se-Kyrkesund │ │ │ │ ├── se-Lagfors │ │ │ │ ├── se-Laggarberg │ │ │ │ ├── se-Laisvall │ │ │ │ ├── se-Langa │ │ │ │ ├── se-Langsele │ │ │ │ ├── se-Langshyttan │ │ │ │ ├── se-Langshyttan_Engelsfors │ │ │ │ ├── se-Laxsjo │ │ │ │ ├── se-Laxviken │ │ │ │ ├── se-Leksand_Asledsberget │ │ │ │ ├── se-Leksand_Karingberget │ │ │ │ ├── se-Lekvattnet │ │ │ │ ├── se-Lerdala │ │ │ │ ├── se-Lesjofors │ │ │ │ ├── se-Liden │ │ │ │ ├── se-Liden_Osterstrom │ │ │ │ ├── se-Lilla_Edet │ │ │ │ ├── se-Lillogda │ │ │ │ ├── se-Lillpite_Bastaberget │ │ │ │ ├── se-Lilltjara_Digerberget │ │ │ │ ├── se-Limedsforsen │ │ │ │ ├── se-Lindshammar_Ramkvilla │ │ │ │ ├── se-Linkoping_Vattentornet │ │ │ │ ├── se-Linsell │ │ │ │ ├── se-Lit │ │ │ │ ├── se-Ljugarn │ │ │ │ ├── se-Ljugarn_3193 │ │ │ │ ├── se-Ljungaverk │ │ │ │ ├── se-Ljungdalen │ │ │ │ ├── se-Ljustorp │ │ │ │ ├── se-Ljusvattnet │ │ │ │ ├── se-Loderups_Strandbad │ │ │ │ ├── se-Loffstrand │ │ │ │ ├── se-Lofsdalen │ │ │ │ ├── se-Logdealv │ │ │ │ ├── se-Lonneberga │ │ │ │ ├── se-Lorstrand │ │ │ │ ├── se-Lovanger │ │ │ │ ├── se-Ludvika_Bjorkasen │ │ │ │ ├── se-Lumsheden_Trekanten │ │ │ │ ├── se-Lycksele_Knaften │ │ │ │ ├── se-Mahult │ │ │ │ ├── se-Mala │ │ │ │ ├── se-Malmo_Jagersro │ │ │ │ ├── se-Malung │ │ │ │ ├── se-Manserud │ │ │ │ ├── se-Mardsjo │ │ │ │ ├── se-Mariannelund │ │ │ │ ├── se-Markaryd_Hualtet │ │ │ │ ├── se-Matfors │ │ │ │ ├── se-Matsdal │ │ │ │ ├── se-Medstugan │ │ │ │ ├── se-Mittadalen │ │ │ │ ├── se-Mjallom │ │ │ │ ├── se-Mjosjo │ │ │ │ ├── se-Moliden │ │ │ │ ├── se-Molnbo_Tallstugan │ │ │ │ ├── se-Molndal_Vasterberget │ │ │ │ ├── se-Mora_Eldris │ │ │ │ ├── se-Morkret │ │ │ │ ├── se-Moskosel │ │ │ │ ├── se-Motala_Ervasteby │ │ │ │ ├── se-Mullsjo_Torestorp │ │ │ │ ├── se-Munkedal │ │ │ │ ├── se-Munkfors │ │ │ │ ├── se-Muodoslompolo │ │ │ │ ├── se-Nalden │ │ │ │ ├── se-Nasaker │ │ │ │ ├── se-Nasanget │ │ │ │ ├── se-Nassjo │ │ │ │ ├── se-Nasteln │ │ │ │ ├── se-Navekvarn │ │ │ │ ├── se-Naverede_Oberget │ │ │ │ ├── se-Niemisel │ │ │ │ ├── se-Nordanede │ │ │ │ ├── se-Nordmaling │ │ │ │ ├── se-Norra_Rorum │ │ │ │ ├── se-Norrahammar │ │ │ │ ├── se-Norraker │ │ │ │ ├── se-Norrfors │ │ │ │ ├── se-Norrhassel │ │ │ │ ├── se-Norrkoping_Krokek │ │ │ │ ├── se-Norrtalje_Sodra │ │ │ │ ├── se-Norrtalje_Sodra_Bergen │ │ │ │ ├── se-Norsjovallen │ │ │ │ ├── se-Nyhem │ │ │ │ ├── se-Nykoping │ │ │ │ ├── se-Nyliden │ │ │ │ ├── se-Nynashamn_Vattentornet │ │ │ │ ├── se-Odsmal │ │ │ │ ├── se-Olden_Telestation │ │ │ │ ├── se-Olkamangi │ │ │ │ ├── se-Olofstrom │ │ │ │ ├── se-Orebro_Lockhyttan │ │ │ │ ├── se-Orkelljunga │ │ │ │ ├── se-Ornskoldsvik_As │ │ │ │ ├── se-Oskarshamn │ │ │ │ ├── se-Osmo_Bjorsta │ │ │ │ ├── se-Osterforse │ │ │ │ ├── se-Ostergraninge │ │ │ │ ├── se-Ostersund_Brattasen │ │ │ │ ├── se-Osthammar_Valo │ │ │ │ ├── se-Ostmark │ │ │ │ ├── se-Overammer │ │ │ │ ├── se-Overhogdal │ │ │ │ ├── se-Overkalix │ │ │ │ ├── se-Overklinten │ │ │ │ ├── se-Overrissjo │ │ │ │ ├── se-Overtornea_Sarkivaara │ │ │ │ ├── se-Overturingen │ │ │ │ ├── se-Oxberg │ │ │ │ ├── se-Pajala │ │ │ │ ├── se-Paulistom │ │ │ │ ├── se-Paulistrom │ │ │ │ ├── se-Pilgrimstad │ │ │ │ ├── se-Porjus │ │ │ │ ├── se-Puoltsa │ │ │ │ ├── se-Ragunda │ │ │ │ ├── se-Ramsele_Skavasen │ │ │ │ ├── se-Ramsjo │ │ │ │ ├── se-Ramundberget │ │ │ │ ├── se-Randalen │ │ │ │ ├── se-Randijaure │ │ │ │ ├── se-Ransater │ │ │ │ ├── se-Rattvik │ │ │ │ ├── se-Rengsjo │ │ │ │ ├── se-Renstrom │ │ │ │ ├── se-Resele │ │ │ │ ├── se-Risback │ │ │ │ ├── se-Rissna │ │ │ │ ├── se-Ritsem │ │ │ │ ├── se-Robertsfors │ │ │ │ ├── se-Rojdafors │ │ │ │ ├── se-Ronnang │ │ │ │ ├── se-Rorbacksnas │ │ │ │ ├── se-Rosson │ │ │ │ ├── se-Rusksele │ │ │ │ ├── se-Sadvaluspen │ │ │ │ ├── se-Sagmyra │ │ │ │ ├── se-Saivomuotka │ │ │ │ ├── se-Salen │ │ │ │ ├── se-Salfjallet │ │ │ │ ├── se-Sarna_Mickeltemplet │ │ │ │ ├── se-Satila │ │ │ │ ├── se-Savar_Sorbyn │ │ │ │ ├── se-Savast │ │ │ │ ├── se-Saxdalen │ │ │ │ ├── se-Seitevaare │ │ │ │ ├── se-Selanger │ │ │ │ ├── se-Seltjarn │ │ │ │ ├── se-Sidensjo_Aberget │ │ │ │ ├── se-Siljansnas_Uvberget │ │ │ │ ├── se-Simrishamn_Fabriksgatan │ │ │ │ ├── se-Skalan │ │ │ │ ├── se-Skalmsjo │ │ │ │ ├── se-Skarstad │ │ │ │ ├── se-Skarvangen │ │ │ │ ├── se-Skattungbyn │ │ │ │ ├── se-Skaulo_Pyhakielinen │ │ │ │ ├── se-Skelleftea │ │ │ │ ├── se-Skene_Nycklarberget │ │ │ │ ├── se-Skillingsfors │ │ │ │ ├── se-Skorped │ │ │ │ ├── se-Skottsund │ │ │ │ ├── se-Skovde │ │ │ │ ├── se-Skroven │ │ │ │ ├── se-Skymnas │ │ │ │ ├── se-Slussfors │ │ │ │ ├── se-Smedjebacken_Uvberget │ │ │ │ ├── se-Soderhamn │ │ │ │ ├── se-Soderkoping │ │ │ │ ├── se-Sodertalje_Ragnhildsborg │ │ │ │ ├── se-Solleftea_Hallsta │ │ │ │ ├── se-Solleftea_Multra │ │ │ │ ├── se-Soraker │ │ │ │ ├── se-Sorbygden │ │ │ │ ├── se-Sorflarke │ │ │ │ ├── se-Sorsele_Nalovardo │ │ │ │ ├── se-Sorsele_Vattentornet │ │ │ │ ├── se-Sorsjon │ │ │ │ ├── se-Soukolojarvi │ │ │ │ ├── se-Stalon │ │ │ │ ├── se-Stigsjo │ │ │ │ ├── se-Stockholm_Marieberg │ │ │ │ ├── se-Stockholm_Nacka │ │ │ │ ├── se-Stode_Hullsjon │ │ │ │ ├── se-Stode_Intaget │ │ │ │ ├── se-Stomne_Skasas │ │ │ │ ├── se-Stora_Skedvi │ │ │ │ ├── se-Stordalen │ │ │ │ ├── se-Storfjaten │ │ │ │ ├── se-Storlien │ │ │ │ ├── se-Storuman │ │ │ │ ├── se-Stromstad │ │ │ │ ├── se-Stromsund_Grelsgard │ │ │ │ ├── se-Stugun │ │ │ │ ├── se-Styrsjobo │ │ │ │ ├── se-Suddesjaur │ │ │ │ ├── se-Suijavaara │ │ │ │ ├── se-Sulvik │ │ │ │ ├── se-Sundborn │ │ │ │ ├── se-Sundsbruk │ │ │ │ ├── se-Sundsvall_S_Stadsberget │ │ │ │ ├── se-Sunne_As │ │ │ │ ├── se-Sunne_Blabarskullen │ │ │ │ ├── se-Sunnemo │ │ │ │ ├── se-Svaneholm │ │ │ │ ├── se-Svanstein │ │ │ │ ├── se-Svardsosund_Svardso │ │ │ │ ├── se-Svartnas │ │ │ │ ├── se-Sveg_Brickan │ │ │ │ ├── se-Sveg_Ransjo │ │ │ │ ├── se-Svenstavik │ │ │ │ ├── se-Svinesund │ │ │ │ ├── se-Syssleback │ │ │ │ ├── se-Taberg │ │ │ │ ├── se-Tandadalen │ │ │ │ ├── se-Tannas_Vastra │ │ │ │ ├── se-Tanndalen │ │ │ │ ├── se-Tarnaby_Ryfjallet │ │ │ │ ├── se-Tarnamo │ │ │ │ ├── se-Tasjo │ │ │ │ ├── se-Tavelsjo │ │ │ │ ├── se-Tocksfors │ │ │ │ ├── se-Tollsjo │ │ │ │ ├── se-Tormestorp │ │ │ │ ├── se-Tornetrask │ │ │ │ ├── se-Torpshammar │ │ │ │ ├── se-Torsby_Bada │ │ │ │ ├── se-Tranas_Bredkarr │ │ │ │ ├── se-Tranemo │ │ │ │ ├── se-Transtrand_Bolheden │ │ │ │ ├── se-Traryd_Betas │ │ │ │ ├── se-Trehorningsjo │ │ │ │ ├── se-Trelleborg_Gylle │ │ │ │ ├── se-Trollhattan │ │ │ │ ├── se-Trosa │ │ │ │ ├── se-Tullinge_Hamra │ │ │ │ ├── se-Tyringe │ │ │ │ ├── se-Tystberga │ │ │ │ ├── se-Uddevalla_Herrestad │ │ │ │ ├── se-Uddevalla_Kapelle │ │ │ │ ├── se-Uggleheden │ │ │ │ ├── se-Ullanger_Skidsta │ │ │ │ ├── se-Ullared │ │ │ │ ├── se-Ulricehamn │ │ │ │ ├── se-Ulvohamn │ │ │ │ ├── se-Ulvshyttan_Porjus │ │ │ │ ├── se-Umea_Mariehem │ │ │ │ ├── se-Umfors │ │ │ │ ├── se-Umgransele_Granselelund │ │ │ │ ├── se-Undersaker │ │ │ │ ├── se-Uppsala_Rickomberga │ │ │ │ ├── se-Uppsala_Vedyxa │ │ │ │ ├── se-Utansjo │ │ │ │ ├── se-Utanskog │ │ │ │ ├── se-Vaddo_Elmsta │ │ │ │ ├── se-Valadalen │ │ │ │ ├── se-Valanger │ │ │ │ ├── se-Valdemarsvik │ │ │ │ ├── se-Valsjobyn │ │ │ │ ├── se-Vannas_Granlundsberget │ │ │ │ ├── se-Vansbro_Hummelberget │ │ │ │ ├── se-Varberg_Grimeton │ │ │ │ ├── se-Varmvattnet │ │ │ │ ├── se-Varnamo_Alandsryd │ │ │ │ ├── se-Vassbotten │ │ │ │ ├── se-Vassijaure │ │ │ │ ├── se-Vastansjo │ │ │ │ ├── se-Vasteras_Lillharad │ │ │ │ ├── se-Vastervik_Farhult │ │ │ │ ├── se-Vato │ │ │ │ ├── se-Vaxbo │ │ │ │ ├── se-Vemdalsskalet │ │ │ │ ├── se-Vessigebro │ │ │ │ ├── se-Vetlanda_Nye │ │ │ │ ├── se-Vidsel │ │ │ │ ├── se-Vietas │ │ │ │ ├── se-Vikmanshyttan │ │ │ │ ├── se-Viksjo │ │ │ │ ├── se-Vilhelmina │ │ │ │ ├── se-Villands_Vanga │ │ │ │ ├── se-Vindelgransele │ │ │ │ ├── se-Vindeln_Renfors │ │ │ │ ├── se-Virserum │ │ │ │ ├── se-Visby_Follingbo │ │ │ │ ├── se-Visby_Hamnen │ │ │ │ ├── se-Visby_Havdhem │ │ │ │ ├── se-Visingso │ │ │ │ ├── se-Vislanda_Nydala │ │ │ │ ├── se-Vitberget │ │ │ │ ├── se-Vitsand │ │ │ │ ├── se-Vitsand_Vagsjofors │ │ │ │ ├── se-Voxna │ │ │ │ ├── se-Vuollerim │ │ │ │ ├── se-Ystad_Metallgatan │ │ │ │ ├── se-Yttermalung │ │ │ │ ├── si-Ljubljana │ │ │ │ ├── sk-BanskaBystrica │ │ │ │ ├── sk-BanskaStiavnica │ │ │ │ ├── sk-Bardejov │ │ │ │ ├── sk-Bratislava │ │ │ │ ├── sk-Cadca │ │ │ │ ├── sk-Detva │ │ │ │ ├── sk-Hnusta │ │ │ │ ├── sk-Kosice │ │ │ │ ├── sk-KralovskyChlmec │ │ │ │ ├── sk-Krompachy │ │ │ │ ├── sk-Lucenec │ │ │ │ ├── sk-Medzev │ │ │ │ ├── sk-Namestovo │ │ │ │ ├── sk-Nitra │ │ │ │ ├── sk-Poprad │ │ │ │ ├── sk-PovazskaBystrica │ │ │ │ ├── sk-Presov │ │ │ │ ├── sk-Prievidza │ │ │ │ ├── sk-Revuca │ │ │ │ ├── sk-Roznava │ │ │ │ ├── sk-Ruzomberok │ │ │ │ ├── sk-Snina │ │ │ │ ├── sk-StaraLubovna │ │ │ │ ├── sk-Sturovo │ │ │ │ ├── sk-Trencin │ │ │ │ ├── sk-Zilina │ │ │ │ ├── tw-All │ │ │ │ ├── ua-Kharkov │ │ │ │ ├── ua-Kiev │ │ │ │ ├── ua-Lozovaya │ │ │ │ ├── ua-Odessa │ │ │ │ ├── ug-All │ │ │ │ ├── uk-Aberdare │ │ │ │ ├── uk-Angus │ │ │ │ ├── uk-BeaconHill │ │ │ │ ├── uk-Belmont │ │ │ │ ├── uk-Bilsdale │ │ │ │ ├── uk-BlackHill │ │ │ │ ├── uk-Blaenplwyf │ │ │ │ ├── uk-BluebellHill │ │ │ │ ├── uk-Bressay │ │ │ │ ├── uk-BrierleyHill │ │ │ │ ├── uk-BristolIlchesterCrescent │ │ │ │ ├── uk-BristolKingsWeston │ │ │ │ ├── uk-Bromsgrove │ │ │ │ ├── uk-BrougherMountain │ │ │ │ ├── uk-Caldbeck │ │ │ │ ├── uk-CaradonHill │ │ │ │ ├── uk-Carmel │ │ │ │ ├── uk-Chatton │ │ │ │ ├── uk-Chesterfield │ │ │ │ ├── uk-Craigkelly │ │ │ │ ├── uk-CrystalPalace │ │ │ │ ├── uk-Darvel │ │ │ │ ├── uk-Divis │ │ │ │ ├── uk-Dover │ │ │ │ ├── uk-Durris │ │ │ │ ├── uk-Eitshal │ │ │ │ ├── uk-EmleyMoor │ │ │ │ ├── uk-Fenham │ │ │ │ ├── uk-Fenton │ │ │ │ ├── uk-Ferryside │ │ │ │ ├── uk-Guildford │ │ │ │ ├── uk-Hannington │ │ │ │ ├── uk-Hastings │ │ │ │ ├── uk-Heathfield │ │ │ │ ├── uk-HemelHempstead │ │ │ │ ├── uk-HuntshawCross │ │ │ │ ├── uk-Idle │ │ │ │ ├── uk-KeelylangHill │ │ │ │ ├── uk-Keighley │ │ │ │ ├── uk-KilveyHill │ │ │ │ ├── uk-KnockMore │ │ │ │ ├── uk-Lancaster │ │ │ │ ├── uk-LarkStoke │ │ │ │ ├── uk-Limavady │ │ │ │ ├── uk-Llanddona │ │ │ │ ├── uk-Malvern │ │ │ │ ├── uk-Mendip │ │ │ │ ├── uk-Midhurst │ │ │ │ ├── uk-MoelyParc │ │ │ │ ├── uk-Nottingham │ │ │ │ ├── uk-OliversMount │ │ │ │ ├── uk-Oxford │ │ │ │ ├── uk-PendleForest │ │ │ │ ├── uk-Plympton │ │ │ │ ├── uk-PontopPike │ │ │ │ ├── uk-Pontypool │ │ │ │ ├── uk-Preseli │ │ │ │ ├── uk-Redruth │ │ │ │ ├── uk-Reigate │ │ │ │ ├── uk-RidgeHill │ │ │ │ ├── uk-Rosemarkie │ │ │ │ ├── uk-Rosneath │ │ │ │ ├── uk-Rowridge │ │ │ │ ├── uk-RumsterForest │ │ │ │ ├── uk-Saddleworth │ │ │ │ ├── uk-Salisbury │ │ │ │ ├── uk-SandyHeath │ │ │ │ ├── uk-Selkirk │ │ │ │ ├── uk-Sheffield │ │ │ │ ├── uk-StocklandHill │ │ │ │ ├── uk-Storeton │ │ │ │ ├── uk-Sudbury │ │ │ │ ├── uk-SuttonColdfield │ │ │ │ ├── uk-Tacolneston │ │ │ │ ├── uk-TheWrekin │ │ │ │ ├── uk-Torosay │ │ │ │ ├── uk-TunbridgeWells │ │ │ │ ├── uk-Waltham │ │ │ │ ├── uk-Wenvoe │ │ │ │ ├── uk-WhitehawkHill │ │ │ │ ├── uk-WinterHill │ │ │ │ ├── vn-Hanoi │ │ │ │ └── vn-Thaibinh │ │ ├── faac │ │ │ └── faac_1.29.9.2.bb │ │ ├── fdk-aac │ │ │ └── fdk-aac_2.0.1.bb │ │ ├── fluidsynth │ │ │ ├── fluidsynth-native_git.bb │ │ │ ├── fluidsynth.inc │ │ │ ├── fluidsynth │ │ │ │ ├── 0001-Do-not-build-gentables-helper-we-have-to-use-native-.patch │ │ │ │ ├── 0002-fluid_synth_nwrite_float-Allow-zero-pointer-for-left.patch │ │ │ │ └── 0003-Use-ARM-NEON-accelaration-for-float-multithreaded-se.patch │ │ │ └── fluidsynth_git.bb │ │ ├── gerbera │ │ │ ├── gerbera │ │ │ │ └── 0001-include-optional-header.patch │ │ │ └── gerbera_1.7.0.bb │ │ ├── gstreamer-1.0 │ │ │ ├── gst-shark_git.bb │ │ │ ├── gstd │ │ │ │ └── 0001-gstd-yocto-compatibility.patch │ │ │ └── gstd_git.bb │ │ ├── images │ │ │ ├── meta-multimedia-image-base.bb │ │ │ ├── meta-multimedia-image.bb │ │ │ └── multimedia-libcamera-image.bb │ │ ├── juce │ │ │ ├── projucer.inc │ │ │ ├── projucer │ │ │ │ └── 0001-Disable-webkit-component.patch │ │ │ └── projucer_git.bb │ │ ├── libao │ │ │ └── libao_1.2.0.bb │ │ ├── libavc1394 │ │ │ └── libavc1394_0.5.4.bb │ │ ├── libcamera │ │ │ ├── libcamera.bb │ │ │ └── libcamera │ │ │ │ └── 0001-uvcvideo-Use-auto-variable-to-avoid-range-loop-warni.patch │ │ ├── libdc1394 │ │ │ ├── files │ │ │ │ └── install_examples.patch │ │ │ └── libdc1394_2.2.6.bb │ │ ├── libde265 │ │ │ └── libde265_1.0.5.bb │ │ ├── libdvbcsa │ │ │ ├── libdvbcsa │ │ │ │ └── libdvbcsa.pc │ │ │ └── libdvbcsa_1.1.0.bb │ │ ├── libdvbpsi │ │ │ └── libdvbpsi_1.3.0.bb │ │ ├── libdvdnav │ │ │ └── libdvdnav_5.0.3.bb │ │ ├── libiec61883 │ │ │ └── libiec61883_1.2.0.bb │ │ ├── libopenmpt │ │ │ ├── files │ │ │ │ └── run-ptest │ │ │ └── libopenmpt_0.3.10.bb │ │ ├── libsquish │ │ │ └── libsquish_git.bb │ │ ├── libuvc │ │ │ └── libuvc.bb │ │ ├── mimic │ │ │ ├── mimic │ │ │ │ ├── 0001-Fix-musl-compatibility.patch │ │ │ │ └── 0001-cmu_indic_lang-Make-cst_rx_not_indic-as-extern-decla.patch │ │ │ └── mimic_1.3.0.1.bb │ │ ├── minidlna │ │ │ ├── minidlna.inc │ │ │ ├── minidlna │ │ │ │ ├── 0001-Mark-setjmp_buffer-extern-declaration.patch │ │ │ │ ├── 0001-Update-Gettext-version.patch │ │ │ │ ├── 0001-configure-Check-for-clock_gettime-seprately-from-__N.patch │ │ │ │ ├── minidlna-daemon.init.d │ │ │ │ └── minidlna.service │ │ │ └── minidlna_1.2.1.bb │ │ ├── musicbrainz │ │ │ ├── files │ │ │ │ └── allow-libdir-override.patch │ │ │ └── libmusicbrainz_git.bb │ │ ├── musicpd │ │ │ ├── libmpd-11.8.17 │ │ │ │ └── glibc-2.20.patch │ │ │ ├── libmpd_11.8.17.bb │ │ │ ├── libmpdclient_2.19.bb │ │ │ ├── mpc_0.33.bb │ │ │ ├── mpd │ │ │ │ └── mpd.conf.in │ │ │ ├── mpd_0.22.6.bb │ │ │ └── ncmpc_0.45.bb │ │ ├── mycroft │ │ │ ├── files │ │ │ │ ├── 0001-Remove-python-venv.patch │ │ │ │ ├── 0002-dev_setup.sh-Remove-the-git-dependency.patch │ │ │ │ ├── 0003-dev_setup.sh-Remove-the-TERM-dependency.patch │ │ │ │ ├── 0004-dev_setup.sh-Ignore-missing-package-manager.patch │ │ │ │ ├── 0005-pip-requirements-Don-t-install-requirements-with-pip.patch │ │ │ │ ├── 0006-Use-python3-and-pip3-instead-of-python-and-pip.patch │ │ │ │ ├── 0007-mycroft.conf-Use-pocketsphinx-by-default.patch │ │ │ │ ├── dev_opts.json │ │ │ │ ├── mycroft-setup.service │ │ │ │ └── mycroft.service │ │ │ └── mycroft_19.8.1.bb │ │ ├── openal │ │ │ ├── openal-soft │ │ │ │ ├── 0001-Use-BUILD_CC-to-compile-native-tools.patch │ │ │ │ └── 0002-makehrtf-Disable-Wstringop-truncation.patch │ │ │ └── openal-soft_1.20.1.bb │ │ ├── opencore-amr │ │ │ ├── opencore-amr_0.1.3.bb │ │ │ ├── vo-aacenc_0.1.3.bb │ │ │ └── vo-amrwbenc_0.1.3.bb │ │ ├── openh264 │ │ │ ├── openh264 │ │ │ │ └── 0001-Makefile-Use-cp-options-to-preserve-file-mode.patch │ │ │ └── openh264_2.1.1.bb │ │ ├── opusfile │ │ │ └── opusfile_0.12.bb │ │ ├── packagegroups │ │ │ └── packagegroup-meta-multimedia.bb │ │ ├── pipewire │ │ │ ├── pipewire-0.2_git.bb │ │ │ └── pipewire_0.3.24.bb │ │ ├── rtmpdump │ │ │ ├── rtmpdump │ │ │ │ └── fix-racing-build-issue.patch │ │ │ └── rtmpdump_2.4.bb │ │ ├── sample-content │ │ │ ├── bigbuckbunny-1080p.bb │ │ │ ├── bigbuckbunny-480p.bb │ │ │ ├── bigbuckbunny-720p.bb │ │ │ └── tearsofsteel-1080p.bb │ │ ├── schroedinger │ │ │ ├── schroedinger │ │ │ │ └── configure.ac.patch │ │ │ └── schroedinger_1.0.11.bb │ │ ├── sox │ │ │ ├── sox │ │ │ │ ├── 0001-Update-exported-symbol-list.patch │ │ │ │ └── 0001-remove-the-error-line-and-live-without-file-type-det.patch │ │ │ └── sox_14.4.2.bb │ │ ├── streamripper │ │ │ ├── streamripper │ │ │ │ ├── 0001-build-these-are-foreign-automake-projects.patch │ │ │ │ ├── 0002-build-don-t-ignore-CPPFLAGS-from-environment.patch │ │ │ │ └── 0003-ripstream-fix-compilation.patch │ │ │ └── streamripper_1.64.6.bb │ │ ├── tinyalsa │ │ │ ├── tinyalsa.bb │ │ │ └── tinyalsa │ │ │ │ └── 0001-Use-CMAKE_INSTALL_-path-instead-of-hardcoding-bin-li.patch │ │ ├── tremor │ │ │ ├── tremor │ │ │ │ ├── obsolete_automake_macros.patch │ │ │ │ └── tremor-arm-thumb2.patch │ │ │ └── tremor_20180319.bb │ │ ├── vlc │ │ │ ├── libdvdcss_1.4.2.bb │ │ │ ├── vlc │ │ │ │ ├── 0001-include-limits-header.patch │ │ │ │ ├── 0001-make-opencv-configurable.patch │ │ │ │ ├── 0002-use-vorbisidec.patch │ │ │ │ ├── 0003-fix-luaL-checkint.patch │ │ │ │ ├── 0004-Use-packageconfig-to-detect-mmal-support.patch │ │ │ │ └── 0005-linux-thread-Use-SYS_futex-instead-of-__NR_futex.patch │ │ │ └── vlc_3.0.12.bb │ │ ├── vorbis-tools │ │ │ ├── vorbis-tools │ │ │ │ ├── 0001-oggenc-Fix-large-alloca-on-bad-AIFF-input.patch │ │ │ │ ├── 0004-Fix-format-error-blocking-compilation-with-hardening.patch │ │ │ │ └── gettext.patch │ │ │ └── vorbis-tools_1.4.0.bb │ │ ├── webrtc-audio-processing │ │ │ ├── webrtc-audio-processing │ │ │ │ ├── 0004-typedefs.h-add-support-for-64-bit-and-big-endian-MIP.patch │ │ │ │ ├── 0005-typedefs.h-add-support-for-PowerPC.patch │ │ │ │ ├── 0006-common_audio-implement-endianness-conversion-in-wav-.patch │ │ │ │ └── riscv_support.patch │ │ │ └── webrtc-audio-processing_0.3.1.bb │ │ └── x265 │ │ │ └── x265_3.2.1.bb │ └── recipes-support │ │ ├── crossguid │ │ └── crossguid_0.2.2.bb │ │ ├── gst-instruments │ │ └── gst-instruments_git.bb │ │ ├── libmediaart │ │ ├── libmediaart-2.0_1.9.4.bb │ │ ├── libmediaart.inc │ │ └── libmediaart_0.7.0.bb │ │ ├── libsrtp │ │ └── libsrtp_2.3.0.bb │ │ └── srt │ │ ├── srt │ │ ├── 0001-core-Fix-build-with-GCC-11.-1806.patch │ │ └── 0001-don-t-install-srt-ffplay.patch │ │ └── srt_1.4.2.bb ├── meta-networking │ ├── COPYING.MIT │ ├── MAINTAINERS │ ├── README │ ├── classes │ │ ├── kernel_wireless_regdb.bbclass │ │ └── waf-samba.bbclass │ ├── conf │ │ └── layer.conf │ ├── files │ │ └── waf-cross-answers │ │ │ ├── README │ │ │ ├── cross-answers-aarch64.txt │ │ │ ├── cross-answers-aarch64_be.txt │ │ │ ├── cross-answers-arm.txt │ │ │ ├── cross-answers-armeb.txt │ │ │ ├── cross-answers-i586.txt │ │ │ ├── cross-answers-i686.txt │ │ │ ├── cross-answers-mips.txt │ │ │ ├── cross-answers-mips64.txt │ │ │ ├── cross-answers-mips64el.txt │ │ │ ├── cross-answers-mipsel.txt │ │ │ ├── cross-answers-powerpc.txt │ │ │ ├── cross-answers-powerpc64.txt │ │ │ ├── cross-answers-powerpc64le.txt │ │ │ ├── cross-answers-riscv32.txt │ │ │ ├── cross-answers-riscv64.txt │ │ │ └── cross-answers-x86_64.txt │ ├── licenses │ │ ├── DMTF │ │ ├── copyleft-next-0.3.0 │ │ ├── netperf │ │ └── radvd │ ├── recipes-connectivity │ │ ├── adcli │ │ │ ├── adcli_0.9.0.bb │ │ │ └── files │ │ │ │ └── Fixed-build-error-on-musl.patch │ │ ├── autossh │ │ │ └── autossh_1.4g.bb │ │ ├── bearssl │ │ │ ├── bearssl │ │ │ │ ├── 0001-conf-Unix.mk-remove-fixed-command-definitions.patch │ │ │ │ ├── 0001-make-Pass-LDFLAGS-when-building-shared-objects.patch │ │ │ │ └── 0002-test-test_x509.c-fix-potential-overflow-issue.patch │ │ │ └── bearssl_0.6.bb │ │ ├── blueman │ │ │ ├── blueman │ │ │ │ ├── 0001-Search-for-cython3.patch │ │ │ │ └── 0002-fix-fail-to-enable-bluetooth.patch │ │ │ └── blueman_2.1.4.bb │ │ ├── cannelloni │ │ │ └── cannelloni_1.0.0.bb │ │ ├── civetweb │ │ │ ├── civetweb │ │ │ │ └── 0001-Unittest-Link-librt-and-libm-using-l-option.patch │ │ │ └── civetweb_git.bb │ │ ├── crda │ │ │ ├── crda │ │ │ │ ├── 0001-Makefile-respect-LDFLAGS-for-libreg.patch │ │ │ │ ├── crda-4.14-python-3.patch │ │ │ │ ├── do-not-run-ldconfig-if-destdir-is-set.patch │ │ │ │ ├── fix-gcc-6-unused-variables.patch │ │ │ │ ├── fix-issues-when-USE_OPENSSL-1.patch │ │ │ │ ├── fix-linking-of-libraries-used-by-reglib.patch │ │ │ │ ├── make.patch │ │ │ │ └── use-target-word-size-instead-of-host-s.patch │ │ │ └── crda_3.18.bb │ │ ├── daq │ │ │ ├── daq_2.0.7.bb │ │ │ └── files │ │ │ │ ├── 0001-correct-the-location-of-unistd.h.patch │ │ │ │ └── disable-run-test-program-while-cross-compiling.patch │ │ ├── dibbler │ │ │ ├── dibbler │ │ │ │ └── dibbler_fix_getSize_crash.patch │ │ │ └── dibbler_git.bb │ │ ├── ez-ipupdate │ │ │ ├── ez-ipupdate_3.0.11b7.bb │ │ │ └── files │ │ │ │ ├── Makefile.am.patch │ │ │ │ ├── cache_file.c.patch │ │ │ │ ├── conf_file.c.patch │ │ │ │ └── wformat.patch │ │ ├── firewalld │ │ │ ├── files │ │ │ │ └── firewalld.init │ │ │ └── firewalld_0.9.3.bb │ │ ├── freeradius │ │ │ ├── files │ │ │ │ ├── 0001-raddb-certs-Makefile-fix-the-existed-certificate-err.patch │ │ │ │ ├── 0001-raddb-certs-Makefile-fix-the-occasional-verification.patch │ │ │ │ ├── 0001-rlm_mschap-Use-includedir-instead-of-hardcoding-usr-.patch │ │ │ │ ├── 0001-workaround-error-with-autoconf-2.7.patch │ │ │ │ ├── freeradius │ │ │ │ ├── freeradius-avoid-searching-host-dirs.patch │ │ │ │ ├── freeradius-configure.ac-add-option-for-libcap.patch │ │ │ │ ├── freeradius-configure.ac-allow-cross-compilation.patch │ │ │ │ ├── freeradius-enble-user-in-conf.patch │ │ │ │ ├── freeradius-fix-error-for-expansion-of-macro.patch │ │ │ │ ├── freeradius-fix-quoting-for-BUILT_WITH.patch │ │ │ │ ├── freeradius-libtool-detection.patch │ │ │ │ ├── freeradius-libtool-do-not-use-jlibtool.patch │ │ │ │ ├── freeradius-rlm_python-add-PY_INC_DIR.patch │ │ │ │ ├── radiusd-volatiles.conf │ │ │ │ ├── radiusd.service │ │ │ │ └── volatiles.58_radiusd │ │ │ └── freeradius_3.0.21.bb │ │ ├── lftp │ │ │ └── lftp_4.9.2.bb │ │ ├── libdnet │ │ │ └── libdnet_1.14.bb │ │ ├── libiec61850 │ │ │ ├── files │ │ │ │ ├── 0001-use-poll.h-instead-of-sys-poll.h.patch │ │ │ │ ├── 0002-serial_port_linux-Add-missing-include-sys-time.h.patch │ │ │ │ └── 0003-pyiec61850-don-t-break-CMAKE_INSTALL_PATH-by-trying-.patch │ │ │ └── libiec61850_1.4.2.1.bb │ │ ├── mbedtls │ │ │ ├── mbedtls │ │ │ │ └── 0001-ssl_tls-Increase-size-of-padbuf-to-64.patch │ │ │ └── mbedtls_2.25.0.bb │ │ ├── miniupnpd │ │ │ ├── files │ │ │ │ ├── 0001-Add-OpenEmbedded-cross-compile-case.patch │ │ │ │ └── miniupnpd.service │ │ │ └── miniupnpd_2.1.20191006.bb │ │ ├── mosquitto │ │ │ ├── files │ │ │ │ ├── 1571.patch │ │ │ │ └── mosquitto.init │ │ │ └── mosquitto_2.0.10.bb │ │ ├── nanomsg │ │ │ ├── nanomsg_1.1.5.bb │ │ │ ├── nng_1.2.5.bb │ │ │ └── nngpp_git.bb │ │ ├── netplan │ │ │ ├── netplan │ │ │ │ ├── 0001-dbus-Remove-unused-variabes.patch │ │ │ │ ├── 0001-don-t-fail-if-GLOB_BRACE-is-not-defined.patch │ │ │ │ └── 0002-Makefile-Exclude-.h-files-from-target-rule.patch │ │ │ └── netplan_0.101.bb │ │ ├── networkmanager │ │ │ ├── networkmanager-openvpn_1.8.14.bb │ │ │ ├── networkmanager │ │ │ │ ├── 0001-Fixed-configure.ac-Fix-pkgconfig-sysroot-locations.patch │ │ │ │ ├── 0002-Do-not-create-settings-settings-property-documentati.patch │ │ │ │ ├── 0003-install-firewalld-to-var-libdir-rather-than-hardcod-.patch │ │ │ │ ├── musl │ │ │ │ │ ├── 0001-Fix-build-with-musl-systemd-specific.patch │ │ │ │ │ └── 0002-Fix-build-with-musl-systemd-specific.patch │ │ │ │ └── networkmanager.initd │ │ │ └── networkmanager_1.30.2.bb │ │ ├── openconnect │ │ │ └── openconnect_8.10.bb │ │ ├── python-networkmanager │ │ │ └── python3-networkmanager_2.2.bb │ │ ├── rdate │ │ │ ├── rdate │ │ │ │ ├── 0001-rdate-define-logwtmp-on-libc-glibc.patch │ │ │ │ └── 0001-src-rdate-Fix-printf-format-errors.patch │ │ │ └── rdate_1.5.bb │ │ ├── rdist │ │ │ ├── rdist-6.1.5 │ │ │ │ ├── rdist-6.1.5-bb-build.patch │ │ │ │ ├── rdist-6.1.5-bison.patch │ │ │ │ ├── rdist-6.1.5-cleanup.patch │ │ │ │ ├── rdist-6.1.5-fix-msgsndnotify-loop.patch │ │ │ │ ├── rdist-6.1.5-fix-parallel-build.patch │ │ │ │ ├── rdist-6.1.5-hardlink.patch │ │ │ │ ├── rdist-6.1.5-lfs.patch │ │ │ │ ├── rdist-6.1.5-links.patch │ │ │ │ ├── rdist-6.1.5-linux.patch │ │ │ │ ├── rdist-6.1.5-makefile-add-ldflags.patch │ │ │ │ ├── rdist-6.1.5-maxargs.patch │ │ │ │ ├── rdist-6.1.5-mkstemp.patch │ │ │ │ ├── rdist-6.1.5-oldpath.patch │ │ │ │ ├── rdist-6.1.5-ssh.patch │ │ │ │ ├── rdist-6.1.5-stat64.patch │ │ │ │ ├── rdist-6.1.5-svr4.patch │ │ │ │ └── rdist-6.1.5-varargs.patch │ │ │ └── rdist_6.1.5.bb │ │ ├── relayd │ │ │ ├── relayd │ │ │ │ └── 0001-rtnl_flush-Error-on-failed-write.patch │ │ │ └── relayd_git.bb │ │ ├── samba │ │ │ ├── samba │ │ │ │ ├── 0001-Add-options-to-configure-the-use-of-libbsd.patch │ │ │ │ ├── 0001-lib-replace-wscript-Avoid-generating-nested-main-fun.patch │ │ │ │ ├── 0001-nsswitch-nsstest.c-Avoid-nss-function-conflicts-with.patch │ │ │ │ ├── 0001-samba-fix-musl-lib-without-innetgr.patch │ │ │ │ ├── 0001-waf-add-support-of-cross_compile.patch │ │ │ │ ├── 0002-util_sec.c-Move-__thread-variable-to-global-scope.patch │ │ │ │ ├── 16-do-not-check-xsltproc-manpages.patch │ │ │ │ ├── 20-do-not-import-target-module-while-cross-compile.patch │ │ │ │ ├── 21-add-config-option-without-valgrind.patch │ │ │ │ ├── CVE-2020-14318.patch │ │ │ │ ├── CVE-2020-14383.patch │ │ │ │ ├── cmocka-uintptr_t.patch │ │ │ │ ├── dnsserver-4.7.0.patch │ │ │ │ ├── glibc_only.patch │ │ │ │ ├── iconv-4.7.0.patch │ │ │ │ ├── netdb_defines.patch │ │ │ │ ├── samba-4.3.9-remove-getpwent_r.patch │ │ │ │ ├── samba-pam.patch │ │ │ │ ├── smb.conf │ │ │ │ ├── smb_conf-4.7.0.patch │ │ │ │ └── volatiles.03_samba │ │ │ └── samba_4.10.18.bb │ │ ├── sethdlc │ │ │ ├── files │ │ │ │ └── sethdlc-fix-host-contamination.patch │ │ │ └── sethdlc_1.18.bb │ │ ├── snort │ │ │ ├── snort │ │ │ │ ├── 0001-libpcap-search-sysroot-for-headers.patch │ │ │ │ ├── configure.in-disable-tirpc-checking-for-fedora.patch │ │ │ │ ├── disable-run-test-program-while-cross-compiling.patch │ │ │ │ ├── fix-host-contamination-when-enable-static-daq.patch │ │ │ │ ├── snort.init │ │ │ │ └── volatiles.99_snort │ │ │ └── snort_2.9.17.1.bb │ │ ├── ufw │ │ │ ├── ufw │ │ │ │ ├── 0001-optimize-boot.patch │ │ │ │ ├── 0002-lp1044361.patch │ │ │ │ ├── 0003-fix-typeerror-on-error.patch │ │ │ │ ├── 0004-lp1039729.patch │ │ │ │ ├── 0005-lp1191197.patch │ │ │ │ ├── setup-add-an-option-to-specify-iptables-location.patch │ │ │ │ └── setup-only-make-one-reference-to-env.patch │ │ │ └── ufw_0.33.bb │ │ ├── vlan │ │ │ ├── vlan-1.9 │ │ │ │ ├── 0001-Add-printf-format-and-silence-format-security-warnin.patch │ │ │ │ └── no-HOME-includes.patch │ │ │ └── vlan_1.9.bb │ │ ├── vpnc │ │ │ ├── vpnc │ │ │ │ ├── 0001-search-for-log-help-in-build-dir.patch │ │ │ │ ├── 0002-Fix-vpnc-install-for-cross-compile.patch │ │ │ │ ├── 0003-error.h-is-specific-to-glibc-on-linux.patch │ │ │ │ ├── 0004-Use-pkgconfig-instead-of-libgcrypt-config.patch │ │ │ │ ├── 0005-include-sys-ttydefaults.h-for-CEOT-definition.patch │ │ │ │ ├── 0006-sysdep-Add-header-include-sequence-to-adjust-for-mus.patch │ │ │ │ ├── 0007-add-error-API-when-error.h-is-not-on-platform.patch │ │ │ │ ├── 0008-include-sysdep.h-before-net-if_tun.h.patch │ │ │ │ ├── 0009-reduce-lifetime-value.patch │ │ │ │ ├── default.conf │ │ │ │ └── long-help │ │ │ └── vpnc_0.5.3.bb │ │ └── wolfssl │ │ │ └── wolfssl_4.7.0.bb │ ├── recipes-core │ │ ├── images │ │ │ ├── meta-networking-image-base.bb │ │ │ └── meta-networking-image.bb │ │ └── packagegroups │ │ │ └── packagegroup-meta-networking.bb │ ├── recipes-daemons │ │ ├── atftp │ │ │ ├── atftp │ │ │ │ ├── atftpd.init │ │ │ │ └── atftpd.service │ │ │ └── atftp_0.7.4.bb │ │ ├── autofs │ │ │ ├── autofs │ │ │ │ ├── 0001-Bug-fix-for-pid_t-not-found-on-musl.patch │ │ │ │ ├── 0001-Define-__SWORD_TYPE-and-_PATH_NSSWITCH_CONF.patch │ │ │ │ ├── 0001-Do-not-hardcode-path-for-pkg.m4.patch │ │ │ │ ├── 0001-modules-lookup_multi.c-Replace-__S_IEXEC-with-S_IEXE.patch │ │ │ │ ├── 0002-Replace-__S_IEXEC-with-S_IEXEC.patch │ │ │ │ ├── add-the-needed-stdarg.h.patch │ │ │ │ ├── autofs-5.0.7-fix-lib-deps.patch │ │ │ │ ├── autofs-5.0.7-include-linux-nfs.h-directly-in-rpc_sub.patch │ │ │ │ ├── cross.patch │ │ │ │ ├── fix-the-YACC-rule-to-fix-a-building-failure.patch │ │ │ │ ├── fix_disable_ldap.patch │ │ │ │ ├── force-STRIP-to-emtpy.patch │ │ │ │ ├── no-bash.patch │ │ │ │ ├── pkgconfig-libnsl.patch │ │ │ │ ├── remove-bashism.patch │ │ │ │ └── using-pkg-config-to-detect-libxml-2.0-and-krb5.patch │ │ │ └── autofs_5.1.6.bb │ │ ├── cyrus-sasl │ │ │ ├── cyrus-sasl │ │ │ │ ├── 0001-Allow-saslauthd-to-be-built-outside-of-source-tree-w.patch │ │ │ │ ├── 0001-makeinit.sh-fix-parallel-build-issue.patch │ │ │ │ ├── 0004-configure.ac-fix-condition-for-suppliment-snprintf-i.patch │ │ │ │ ├── CVE-2019-19906.patch │ │ │ │ ├── Fix-hardcoded-libdir.patch │ │ │ │ ├── avoid-to-call-AC_TRY_RUN.patch │ │ │ │ ├── debian_patches_0014_avoid_pic_overwrite.diff │ │ │ │ ├── saslauthd.conf │ │ │ │ └── saslauthd.service │ │ │ └── cyrus-sasl_2.1.27.bb │ │ ├── igmpproxy │ │ │ └── igmpproxy_0.3.bb │ │ ├── ippool │ │ │ ├── ippool │ │ │ │ ├── 0001-Respect-flags-from-env.patch │ │ │ │ ├── 0001-read-returns-ssize_t.patch │ │ │ │ ├── 0001-usl_timer-Check-for-return-value-of-write-API.patch │ │ │ │ ├── 0002-Mark-first-element-of-a-string-as-null.patch │ │ │ │ ├── 0002-link-with-libtirpc.patch │ │ │ │ ├── 0003-cli-Mark-return-of-strtol-as-long-int.patch │ │ │ │ ├── 0003-musl-fixes.patch │ │ │ │ ├── always_syslog.patch │ │ │ │ ├── ippool.service │ │ │ │ ├── ippool_init.d.patch │ │ │ │ ├── ippool_parallel_make_and_pic.patch │ │ │ │ ├── ippool_usl_timer.patch │ │ │ │ ├── makefile-add-ldflags.patch │ │ │ │ ├── runtest.sh │ │ │ │ └── strncpy-truncation.patch │ │ │ └── ippool_1.3.bb │ │ ├── iscsi-initiator-utils │ │ │ ├── files │ │ │ │ ├── 0001-Makefile-Do-not-set-Werror.patch │ │ │ │ ├── 99_iscsi-initiator-utils │ │ │ │ ├── initd.debian │ │ │ │ ├── iscsi-initiator │ │ │ │ ├── iscsi-initiator-targets.service │ │ │ │ ├── iscsi-initiator.service │ │ │ │ └── set_initiatorname │ │ │ └── iscsi-initiator-utils_2.1.4.bb │ │ ├── keepalived │ │ │ └── keepalived_2.2.1.bb │ │ ├── lldpd │ │ │ ├── files │ │ │ │ ├── lldpd.default │ │ │ │ └── lldpd.init.d │ │ │ └── lldpd_1.0.8.bb │ │ ├── ncftp │ │ │ ├── ncftp │ │ │ │ ├── ncftp-3.2.5-gcc10.patch │ │ │ │ ├── ncftp-configure-use-BUILD_CC-for-ccdv.patch │ │ │ │ └── unistd.patch │ │ │ └── ncftp_3.2.6.bb │ │ ├── networkd-dispatcher │ │ │ └── networkd-dispatcher_2.1.bb │ │ ├── openhpi │ │ │ ├── files │ │ │ │ ├── 0001-Do-not-poke-at-build-host-s-etc-os-release.patch │ │ │ │ ├── 0001-include-iostream-for-cout.patch │ │ │ │ ├── 0001-session-close-socket.patch │ │ │ │ ├── c++11.patch │ │ │ │ ├── clang-c++11.patch │ │ │ │ ├── cross_899198.patch │ │ │ │ ├── fix-narrowing-warning.patch │ │ │ │ ├── no-md2.patch │ │ │ │ ├── openhpi-3.6.1-ssl.patch │ │ │ │ ├── openhpi-add-libnetsnmp-when-link.patch │ │ │ │ ├── openhpi-fix-alignment-issue.patch │ │ │ │ ├── openhpi-fix-function-saHpiSensorThresholds.patch │ │ │ │ ├── openhpi-fix-host-gcc.patch │ │ │ │ ├── openhpi-glib-cross-compile.patch │ │ │ │ ├── openhpi-invalide-session.patch │ │ │ │ ├── openhpi-libxml2-cross-compile.patch │ │ │ │ ├── openhpi-linkfix.patch │ │ │ │ ├── openhpi-netsnmp-cross-compile.patch │ │ │ │ ├── openhpi-sysfs-cross-compile.patch │ │ │ │ ├── openhpi-use-serial-tests-config-needed-by-ptest.patch │ │ │ │ ├── openhpi.init │ │ │ │ ├── openhpid.service │ │ │ │ └── run-ptest │ │ │ └── openhpi_3.8.0.bb │ │ ├── opensaf │ │ │ ├── opensaf │ │ │ │ ├── 0001-Fix-build-with-fno-common.patch │ │ │ │ ├── 0001-Use-correct-printf-format-for-__fsblkcnt_t.patch │ │ │ │ ├── 0001-configure-Disable-format-overflow-if-supported-by-gc.patch │ │ │ │ ├── 0001-configure-Pass-linker-specific-options-with-Wl.patch │ │ │ │ ├── 0001-create_empty_library-Use-CC-variable-intead-of-hardc.patch │ │ │ │ ├── 0001-immom_python-convert-to-python3.patch │ │ │ │ ├── 0001-immpbe_dump.cc-Use-sys-wait.h-instead-of-wait.h.patch │ │ │ │ └── 0001-src-Add-missing-header-limits.h-for-_POSIX_HOST_NAME.patch │ │ │ └── opensaf_5.21.03.bb │ │ ├── postfix │ │ │ ├── files │ │ │ │ ├── 0001-makedefs-Use-native-compiler-to-build-makedefs.test.patch │ │ │ │ ├── 0001-makedefs-add-lnsl-and-lresolv-to-SYSLIBS-by-default.patch │ │ │ │ ├── aliasesdb │ │ │ │ ├── check_hostname.sh │ │ │ │ ├── icu-config.patch │ │ │ │ ├── install.patch │ │ │ │ ├── internal_recipient │ │ │ │ ├── main.cf │ │ │ │ ├── makedefs.patch │ │ │ │ ├── postfix │ │ │ │ ├── postfix-install.patch │ │ │ │ └── postfix.service │ │ │ ├── postfix.inc │ │ │ └── postfix_3.4.12.bb │ │ ├── proftpd │ │ │ ├── files │ │ │ │ ├── basic.conf.patch │ │ │ │ ├── build_fixup.patch │ │ │ │ ├── close-RequireValidShell-check.patch │ │ │ │ ├── contrib.patch │ │ │ │ ├── default │ │ │ │ ├── proftpd-basic.init │ │ │ │ └── proftpd.service │ │ │ └── proftpd_1.3.6.bb │ │ ├── ptpd │ │ │ ├── ptpd │ │ │ │ ├── 0001-ptpd-Solve-memory-leak-for-function-NTPDCrequest.patch │ │ │ │ ├── Fixed-100-CPU-using-issue-by-adding-minimum-POSIX-ti.patch │ │ │ │ ├── ptpd-use-pkgconfig.patch │ │ │ │ ├── ptpd.conf │ │ │ │ └── ptpd.service │ │ │ └── ptpd_2.3.1.bb │ │ ├── pure-ftpd │ │ │ ├── pure-ftpd │ │ │ │ ├── 0001-Remove-hardcoded-usr-local-includes-from-configure.a.patch │ │ │ │ └── nostrip.patch │ │ │ └── pure-ftpd_1.0.49.bb │ │ ├── radvd │ │ │ ├── files │ │ │ │ ├── radvd.conf │ │ │ │ ├── radvd.default │ │ │ │ ├── radvd.init │ │ │ │ ├── radvd.service │ │ │ │ └── volatiles.03_radvd │ │ │ ├── radvd.inc │ │ │ └── radvd_2.19.bb │ │ ├── squid │ │ │ ├── files │ │ │ │ ├── 0001-Fix-build-on-Fedora-Rawhide-772.patch │ │ │ │ ├── 0001-configure-Check-for-Wno-error-format-truncation-comp.patch │ │ │ │ ├── 0001-splay.cc-fix-bind-is-not-a-member-of-std.patch │ │ │ │ ├── 0001-tools.cc-fixed-unused-result-warning.patch │ │ │ │ ├── Fix-flawed-dynamic-ldb-link-test-in-configure.patch │ │ │ │ ├── Set-up-for-cross-compilation.patch │ │ │ │ ├── Skip-AC_RUN_IFELSE-tests.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── set_sysroot_patch.patch │ │ │ │ ├── squid-don-t-do-squid-conf-tests-at-build-time.patch │ │ │ │ ├── squid-use-serial-tests-config-needed-by-ptest.patch │ │ │ │ └── volatiles.03_squid │ │ │ └── squid_4.14.bb │ │ ├── tftp-hpa │ │ │ ├── files │ │ │ │ ├── 0001-__progname-is-provided-by-libc.patch │ │ │ │ ├── 0001-tftp-Mark-toplevel-definition-as-external.patch │ │ │ │ ├── add-error-check-for-disk-filled-up.patch │ │ │ │ ├── default │ │ │ │ ├── fix-writing-emtpy-file.patch │ │ │ │ ├── init │ │ │ │ ├── tftp-0.40-remap.patch │ │ │ │ ├── tftp-0.42-tftpboot.patch │ │ │ │ ├── tftp-0.49-chk_retcodes.patch │ │ │ │ ├── tftp-0.49-cmd_arg.patch │ │ │ │ ├── tftp-hpa-0.39-tzfix.patch │ │ │ │ ├── tftp-hpa-0.49-fortify-strcpy-crash.patch │ │ │ │ ├── tftp-hpa-0.49-stats.patch │ │ │ │ ├── tftp-hpa-5.2-pktinfo.patch │ │ │ │ ├── tftp-hpa-bug-fix-on-separated-CR-and-LF.patch │ │ │ │ ├── tftp-xinetd │ │ │ │ ├── tftpd-hpa.service │ │ │ │ └── tftpd-hpa.socket │ │ │ └── tftp-hpa_5.2.bb │ │ ├── vblade │ │ │ ├── files │ │ │ │ ├── cross.patch │ │ │ │ ├── makefile-add-ldflags.patch │ │ │ │ ├── vblade.conf │ │ │ │ ├── vblade.init │ │ │ │ ├── vblade.service │ │ │ │ └── volatiles.99_vblade │ │ │ └── vblade_25.bb │ │ └── vsftpd │ │ │ ├── files │ │ │ ├── change-secure_chroot_dir.patch │ │ │ ├── init │ │ │ ├── volatiles.99_vsftpd │ │ │ ├── vsftpd.conf │ │ │ ├── vsftpd.ftpusers │ │ │ ├── vsftpd.service │ │ │ └── vsftpd.user_list │ │ │ ├── vsftpd-3.0.3 │ │ │ ├── 0001-seccompsandbox.c-allow-newfstatat-and-pselect6-sysca.patch │ │ │ ├── 0001-sysdeputil.c-Fix-with-musl-which-does-not-have-utmpx.patch │ │ │ ├── 0001-vsftpd-allow-syscalls-in-the-seccomp-sandbox.patch │ │ │ ├── makefile-destdir.patch │ │ │ ├── makefile-libs.patch │ │ │ ├── makefile-strip.patch │ │ │ ├── nopam-with-tcp_wrappers.patch │ │ │ ├── nopam.patch │ │ │ ├── vsftpd-2.1.0-filter.patch │ │ │ └── vsftpd-tcp_wrappers-support.patch │ │ │ └── vsftpd_3.0.3.bb │ ├── recipes-devtools │ │ └── python │ │ │ └── python3-ldap_3.3.1.bb │ ├── recipes-extended │ │ ├── corosync │ │ │ ├── corosync │ │ │ │ └── corosync.conf │ │ │ └── corosync_3.0.3.bb │ │ ├── dlm │ │ │ ├── dlm │ │ │ │ ├── 0001-Include-sys-sysmacros.h-for-major-minor-macros-in-gl.patch │ │ │ │ ├── 0001-dlm-fix-compile-error-since-xml2-config-should-not-b.patch │ │ │ │ └── 0001-make-Replace-cp-a-with-mode-preserving-options.patch │ │ │ └── dlm_4.0.9.bb │ │ └── kronosnet │ │ │ └── kronosnet_1.20.bb │ ├── recipes-filter │ │ ├── arno-iptables-firewall │ │ │ └── arno-iptables-firewall_2.1.1.bb │ │ ├── conntrack-tools │ │ │ ├── conntrack-tools_1.4.6.bb │ │ │ └── files │ │ │ │ ├── conntrack-failover │ │ │ │ └── init │ │ ├── ebtables │ │ │ ├── ebtables-2.0.11 │ │ │ │ ├── 0001-Makefile.am-do-not-install-etc-ethertypes.patch │ │ │ │ ├── 0010-Adjust-header-include-sequence.patch │ │ │ │ ├── ebtables-legacy-save │ │ │ │ ├── ebtables.common │ │ │ │ └── ebtables.service │ │ │ └── ebtables_2.0.11.bb │ │ ├── ipset │ │ │ └── ipset_7.11.bb │ │ ├── libnetfilter │ │ │ ├── files │ │ │ │ ├── 0001-libnetfilter-acct-Declare-the-define-visivility-attribute-together.patch │ │ │ │ ├── 0001-libnetfilter-queue-Declare-the-define-visivility-attribute-together.patch │ │ │ │ ├── libnetfilter-cthelper-visibility-hidden.patch │ │ │ │ └── libnetfilter-cttimeout-visibility-hidden.patch │ │ │ ├── libnetfilter-acct_1.0.3.bb │ │ │ ├── libnetfilter-conntrack_1.0.8.bb │ │ │ ├── libnetfilter-cthelper_1.0.0.bb │ │ │ ├── libnetfilter-cttimeout_1.0.0.bb │ │ │ ├── libnetfilter-log_1.0.1.bb │ │ │ └── libnetfilter-queue_1.0.3.bb │ │ ├── libnfnetlink │ │ │ ├── libnfnetlink │ │ │ │ ├── 0001-build-resolve-automake-1.12-warnings.patch │ │ │ │ ├── 0002-src-get-source-code-license-header-in-sync-with-curr.patch │ │ │ │ ├── 0003-configure-uclinux-is-also-linux.patch │ │ │ │ ├── 0004-libnfnetlink-initialize-attribute-padding-to-resolve.patch │ │ │ │ ├── 0005-include-Sync-with-kernel-headers.patch │ │ │ │ └── 0006-src-Use-stdint-types-everywhere.patch │ │ │ └── libnfnetlink_1.0.1.bb │ │ ├── libnftnl │ │ │ ├── libnftnl │ │ │ │ └── 0001-avoid-naming-local-function-as-one-of-printf-family.patch │ │ │ └── libnftnl_1.1.9.bb │ │ ├── nfacct │ │ │ └── nfacct_1.0.2.bb │ │ └── nftables │ │ │ └── nftables_0.9.8.bb │ ├── recipes-irc │ │ ├── weechat │ │ │ ├── weechat │ │ │ │ └── 0001-use-pkg-config-for-gcrypt-instead.patch │ │ │ └── weechat_3.0.bb │ │ └── znc │ │ │ └── znc_1.8.2.bb │ ├── recipes-kernel │ │ └── wireguard │ │ │ ├── wireguard-module_1.0.20201112.bb │ │ │ ├── wireguard-tools_1.0.20210315.bb │ │ │ └── wireguard.inc │ ├── recipes-netkit │ │ ├── netkit-ftp │ │ │ ├── netkit-ftp │ │ │ │ ├── 0001-ftp-include-sys-types.h-for-u_long.patch │ │ │ │ └── Add_ARG_MAX_define.patch │ │ │ └── netkit-ftp_0.17.bb │ │ ├── netkit-rpc │ │ │ ├── netkit-rpc │ │ │ │ ├── 0001-rpcgen-Fix-printf-formats.patch │ │ │ │ └── gcc4.patch │ │ │ └── netkit-rpc_0.17.bb │ │ ├── netkit-rsh │ │ │ ├── netkit-rsh │ │ │ │ ├── CVE-2019-7282-and-CVE-2019-7283.patch │ │ │ │ ├── fix-host-variable.patch │ │ │ │ ├── fixup_wait3_api_change.patch │ │ │ │ ├── netkit-rsh-0.17-rexec-ipv6.patch │ │ │ │ ├── no_pam_build_fix.patch │ │ │ │ ├── rexec.pam │ │ │ │ ├── rexec.xinetd.netkit │ │ │ │ ├── rlogin.pam │ │ │ │ ├── rlogin.xinetd.netkit │ │ │ │ ├── rsh-redone_link_order_file.patch │ │ │ │ ├── rsh.pam │ │ │ │ └── rsh.xinetd.netkit │ │ │ └── netkit-rsh_0.17.bb │ │ ├── netkit-rusers │ │ │ ├── netkit-rusers │ │ │ │ ├── 0001-Link-with-libtirpc.patch │ │ │ │ └── rpc.rusersd-Makefile-fix-parallel-build-issue.patch │ │ │ └── netkit-rusers_0.17.bb │ │ ├── netkit-rwho │ │ │ ├── netkit-rwho │ │ │ │ ├── 0001-Add-missing-include-path-to-I-options.patch │ │ │ │ ├── 0002-Fix-build-issues-found-with-musl.patch │ │ │ │ ├── rwhod │ │ │ │ └── rwhod.default │ │ │ └── netkit-rwho_0.17.bb │ │ ├── netkit-telnet │ │ │ ├── files │ │ │ │ ├── 0001-telnet-telnetd-Fix-deadlock-on-cleanup.patch │ │ │ │ ├── 0001-telnet-telnetd-Fix-print-format-strings.patch │ │ │ │ ├── 0001-telnetd-utility.c-Fix-buffer-overflow-in-netoprintf.patch │ │ │ │ ├── CVE-2020-10188.patch │ │ │ │ ├── To-aviod-buffer-overflow-in-telnet.patch │ │ │ │ ├── Warning-fix-in-the-step-of-install.patch │ │ │ │ ├── cross-compile.patch │ │ │ │ └── telnet-xinetd │ │ │ └── netkit-telnet_0.17.bb │ │ └── netkit-tftp │ │ │ ├── netkit-tftp │ │ │ ├── 0001-tftp-Include-missing-fcntl.h.patch │ │ │ └── tftp.conf │ │ │ └── netkit-tftp_0.17.bb │ ├── recipes-protocols │ │ ├── babeld │ │ │ └── babeld_1.9.2.bb │ │ ├── dante │ │ │ └── dante_1.4.1.bb │ │ ├── freediameter │ │ │ ├── files │ │ │ │ ├── 0001-libfdcore-sctp.c-update-the-old-sctp-api-check.patch │ │ │ │ ├── Replace-murmurhash-algorithm-with-Robert-Jenkin-s-ha.patch │ │ │ │ ├── freeDiameter.conf │ │ │ │ ├── freediameter.init │ │ │ │ ├── freediameter.service │ │ │ │ ├── install_test.patch │ │ │ │ ├── pass-ptest-env.patch │ │ │ │ └── run-ptest │ │ │ └── freediameter_1.4.0.bb │ │ ├── mdns │ │ │ ├── files │ │ │ │ ├── 0001-Create-subroutine-for-cleaning-recent-interfaces.patch │ │ │ │ ├── 0001-mdns-include-stddef.h-for-NULL.patch │ │ │ │ ├── 0002-Create-subroutine-for-tearing-down-an-interface.patch │ │ │ │ ├── 0002-mdns-cross-compilation-fixes-for-bitbake.patch │ │ │ │ ├── 0003-Track-interface-socket-family.patch │ │ │ │ ├── 0004-Use-list-for-changed-interfaces.patch │ │ │ │ ├── 0006-Remove-unneeded-function.patch │ │ │ │ ├── 0008-Mark-deleted-interfaces-as-being-changed.patch │ │ │ │ ├── 0009-Fix-possible-NULL-dereference.patch │ │ │ │ ├── 0010-Handle-errors-from-socket-calls.patch │ │ │ │ ├── 0011-Change-a-dynamic-allocation-to-file-scope-variable.patch │ │ │ │ └── mdns.service │ │ │ └── mdns_1310.40.42.bb │ │ ├── net-snmp │ │ │ ├── files │ │ │ │ ├── init │ │ │ │ ├── snmpd.conf │ │ │ │ └── snmptrapd.conf │ │ │ ├── net-snmp │ │ │ │ ├── 0001-ac_add_search_path.m4-keep-consistent-between-32bit.patch │ │ │ │ ├── 0001-config_os_headers-Error-Fix.patch │ │ │ │ ├── 0001-get_pid_from_inode-Include-limit.h.patch │ │ │ │ ├── 0001-snmplib-keytools.c-Don-t-check-for-return-from-EVP_M.patch │ │ │ │ ├── 0002-configure-fix-a-cc-check-issue.patch │ │ │ │ ├── 0004-configure-fix-incorrect-variable.patch │ │ │ │ ├── fix-libtool-finish.patch │ │ │ │ ├── net-snmp-5.7.2-fix-engineBoots-value-on-SIGHUP.patch │ │ │ │ ├── net-snmp-add-knob-whether-nlist.h-are-checked.patch │ │ │ │ ├── net-snmp-fix-for-disable-des.patch │ │ │ │ ├── net-snmp-testing-add-the-output-format-for-ptest.patch │ │ │ │ ├── reproducibility-have-printcap.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── snmpd.service │ │ │ │ ├── snmptrapd.service │ │ │ │ └── systemd-support.patch │ │ │ └── net-snmp_5.9.bb │ │ ├── nopoll │ │ │ └── nopoll_0.4.6.b400.bb │ │ ├── openflow │ │ │ ├── openflow.inc │ │ │ ├── openflow │ │ │ │ ├── 0001-Check-and-use-strlcpy-from-libc-before-defining-own.patch │ │ │ │ ├── 0001-generate-not-static-get_dh-functions.patch │ │ │ │ └── 0002-lib-netdev-Adjust-header-include-sequence.patch │ │ │ ├── openflow_1.0.bb │ │ │ └── openflow_git.bb │ │ ├── openl2tp │ │ │ ├── openl2tp │ │ │ │ ├── 0001-Use-1-instead-of-WAIT_ANY.patch │ │ │ │ ├── 0001-l2tp_api-Included-needed-headers.patch │ │ │ │ ├── 0001-test-pppd_dummy.c-Fix-return-value.patch │ │ │ │ ├── 0002-cli-include-fcntl.h-for-O_CREAT-define.patch │ │ │ │ ├── 0002-user-ipv6-structures.patch │ │ │ │ ├── 0003-cli-Define-_GNU_SOURCE-for-getting-sighandler_t.patch │ │ │ │ ├── Makefile-modify-CFLAGS-to-aviod-build-error.patch │ │ │ │ ├── Makefile-obey-LDFLAGS.patch │ │ │ │ ├── fix_linux_4.15_compile.patch │ │ │ │ ├── openl2tp-simplify-gcc-warning-hack.patch │ │ │ │ ├── openl2tpd-enable-tests.patch │ │ │ │ ├── openl2tpd-initscript-fix-sysconfig.patch │ │ │ │ ├── openl2tpd-initscript-fix-warning.patch │ │ │ │ ├── openl2tpd-initscript-fix.patch │ │ │ │ ├── openl2tpd.service │ │ │ │ └── run-ptest │ │ │ └── openl2tp_1.8.bb │ │ ├── openlldp │ │ │ ├── files │ │ │ │ ├── 0001-Fix-musl-libc-build-issue.patch │ │ │ │ ├── 0001-autotools-Add-include-path-to-generated-version.h.patch │ │ │ │ ├── 0001-autotools-Add-option-to-disable-installation-of-syst.patch │ │ │ │ ├── 0001-cmds-fix-enum-conversion.patch │ │ │ │ ├── 0002-lldp_head-rename-and-make-extern.patch │ │ │ │ ├── 0003-lldp-add-packed-struct-definition.patch │ │ │ │ ├── 0004-lldptool-make-extern.patch │ │ │ │ ├── 0005-cisco_oui-match-encode-handler-prototypes.patch │ │ │ │ ├── 0006-ecp22-make-enum-a-type-rather-than-instance.patch │ │ │ │ ├── 0007-lldp_8021qaz-extern-config-object.patch │ │ │ │ ├── 0008-stringops-fix-some-string-copy-errors.patch │ │ │ │ └── 0009-8021qaz-mark-prio-map-functions-static.patch │ │ │ └── openlldp_1.0.1.bb │ │ ├── pptp-linux │ │ │ ├── pptp-linux │ │ │ │ └── options.pptp │ │ │ └── pptp-linux_1.10.0.bb │ │ ├── quagga │ │ │ ├── files │ │ │ │ ├── bgpd.service │ │ │ │ ├── isisd.service │ │ │ │ ├── ospf6d.service │ │ │ │ ├── ospfd.service │ │ │ │ ├── quagga.default │ │ │ │ ├── quagga.init │ │ │ │ ├── quagga.pam │ │ │ │ ├── ripd.service │ │ │ │ ├── ripngd.service │ │ │ │ ├── volatiles.03_quagga │ │ │ │ ├── watchquagga.default │ │ │ │ ├── watchquagga.init │ │ │ │ └── zebra.service │ │ │ ├── quagga.inc │ │ │ └── quagga_1.2.4.bb │ │ ├── radiusclient-ng │ │ │ ├── radiusclient-ng │ │ │ │ ├── Modify-configure.in-and-etc-Makefile.am.patch │ │ │ │ └── config-site.radiusclient-ng-0.5.6 │ │ │ └── radiusclient-ng_0.5.6.bb │ │ ├── rp-pppoe │ │ │ ├── rp-pppoe │ │ │ │ ├── 0001-ppoe-Dont-include-linux-if_ether.h.patch │ │ │ │ ├── 0002-Enable-support-for-the-kernel-module.patch │ │ │ │ ├── configure.in-Error-fix.patch │ │ │ │ ├── configure.patch │ │ │ │ ├── configure_in_cross.patch │ │ │ │ ├── discard-use-of-dnl-in-Makefile.am.patch │ │ │ │ ├── dont-swallow-errors.patch │ │ │ │ ├── pppoe-server.default │ │ │ │ ├── pppoe-server.init │ │ │ │ ├── pppoe-server.service │ │ │ │ ├── top-autoconf.patch │ │ │ │ └── update-config.patch │ │ │ └── rp-pppoe_3.13.bb │ │ ├── tsocks │ │ │ ├── tsocks │ │ │ │ └── makefile-add-ldflags.patch │ │ │ └── tsocks_1.8beta5.bb │ │ ├── usrsctp │ │ │ └── usrsctp_git.bb │ │ ├── xl2tpd │ │ │ └── xl2tpd_1.3.14.bb │ │ └── zeroconf │ │ │ ├── zeroconf │ │ │ ├── 0001-zeroconf-Rename-arp_op-to-avoid-namespace-conflicts-.patch │ │ │ ├── compilefix.patch │ │ │ ├── debian-zeroconf │ │ │ ├── makefile-add-ldflags.patch │ │ │ └── zeroconf-default │ │ │ └── zeroconf_0.9.bb │ ├── recipes-support │ │ ├── aoetools │ │ │ ├── aoetools │ │ │ │ ├── aoe-stat-no-bashism.patch │ │ │ │ ├── makefile-add-ldflags.patch │ │ │ │ └── reproducible-build.patch │ │ │ └── aoetools_36.bb │ │ ├── arptables │ │ │ ├── arptables │ │ │ │ ├── 0001-Use-ARPCFLAGS-for-package-specific-compiler-flags.patch │ │ │ │ ├── arptables-arpt-get-target-fix.patch │ │ │ │ └── arptables.service │ │ │ └── arptables_git.bb │ │ ├── bridge-utils │ │ │ ├── bridge-utils │ │ │ │ ├── 0005-build-don-t-ignore-CFLAGS-from-environment.patch │ │ │ │ ├── 0006-libbridge-Modifying-the-AR-to-cross-toolchain.patch │ │ │ │ └── kernel-headers.patch │ │ │ └── bridge-utils_1.7.bb │ │ ├── celt051 │ │ │ ├── celt051 │ │ │ │ ├── 0001-configure.ac-make-tools-support-optional.patch │ │ │ │ └── 0001-tests-Include-entcode.c-into-test-sources-to-provide.patch │ │ │ └── celt051_git.bb │ │ ├── chrony │ │ │ ├── chrony │ │ │ │ ├── 0001-Fix-compilation-with-musl.patch │ │ │ │ ├── arm_eabi.patch │ │ │ │ ├── chrony.conf │ │ │ │ └── chronyd │ │ │ └── chrony_4.0.bb │ │ ├── cifs │ │ │ └── cifs-utils_6.12.bb │ │ ├── cim-schema │ │ │ ├── cim-schema-docs_2.40.0.bb │ │ │ ├── cim-schema-exper_2.50.0.bb │ │ │ ├── cim-schema-final_2.40.0.bb │ │ │ ├── cim-schema.inc │ │ │ └── files │ │ │ │ └── LICENSE │ │ ├── curlpp │ │ │ └── curlpp_0.8.1.bb │ │ ├── dnsmasq │ │ │ ├── dnsmasq.inc │ │ │ ├── dnsmasq │ │ │ │ └── lua.patch │ │ │ ├── dnsmasq_2.84.bb │ │ │ └── files │ │ │ │ ├── 99_dnsmasq │ │ │ │ ├── dnsmasq-noresolvconf.service │ │ │ │ ├── dnsmasq-resolvconf-helper │ │ │ │ ├── dnsmasq-resolvconf.service │ │ │ │ ├── dnsmasq-resolved.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.resolvconf │ │ │ │ └── init │ │ ├── dovecot │ │ │ ├── dovecot │ │ │ │ ├── 0001-configure.ac-convert-AC_TRY_RUN-to-AC_TRY_LINK-state.patch │ │ │ │ ├── 0001-not-check-pandoc.patch │ │ │ │ ├── dovecot.service │ │ │ │ └── dovecot.socket │ │ │ └── dovecot_2.3.14.bb │ │ ├── drbd │ │ │ ├── drbd-utils │ │ │ │ ├── 0001-drbd-utils-support-usrmerge.patch │ │ │ │ └── 0001-v84-Make-setup_options-definitions-as-extern.patch │ │ │ ├── drbd-utils_9.13.1.bb │ │ │ ├── drbd │ │ │ │ └── check_existence_of_modules_before_installing.patch │ │ │ └── drbd_9.0.24-1.bb │ │ ├── esmtp │ │ │ └── esmtp_1.2.bb │ │ ├── ettercap │ │ │ └── ettercap_0.8.3.1.bb │ │ ├── fetchmail │ │ │ └── fetchmail_6.4.18.bb │ │ ├── fping │ │ │ └── fping_5.0.bb │ │ ├── fwknop │ │ │ ├── fwknop │ │ │ │ └── 0001-Fix-compilation-with-GCC-s-fno-common-flag-fixes-305.patch │ │ │ └── fwknop_2.6.10.bb │ │ ├── geoip │ │ │ ├── files │ │ │ │ └── run-ptest │ │ │ ├── geoip-perl │ │ │ │ └── run-ptest │ │ │ ├── geoip-perl_1.51.bb │ │ │ ├── geoip_1.6.12.bb │ │ │ ├── geoipupdate-2.5.0 │ │ │ │ ├── GeoIP.conf │ │ │ │ └── geoipupdate.cron │ │ │ └── geoipupdate_2.5.0.bb │ │ ├── htpdate │ │ │ ├── htpdate │ │ │ │ ├── 0001-Make-environment-variables-assignments-to-be-weak.patch │ │ │ │ └── 0001-Replace-ntp_adjtime-with-adjtimex.patch │ │ │ └── htpdate_1.2.2.bb │ │ ├── ifenslave │ │ │ └── ifenslave_2.11.bb │ │ ├── ifmetric │ │ │ ├── ifmetric │ │ │ │ ├── ifmetric.8_typo.patch │ │ │ │ ├── ifmetric.c_netlink-invalid-arg.patch │ │ │ │ ├── ifmetric.c_typo.patch │ │ │ │ └── nlrequest.c_packet-too-small_fix.patch │ │ │ └── ifmetric_0.3.bb │ │ ├── iftop │ │ │ ├── iftop │ │ │ │ └── iftop-1.0-gcc10.patch │ │ │ └── iftop_1.0pre4.bb │ │ ├── ipcalc │ │ │ ├── ipcalc │ │ │ │ └── 0001-Makefile-pass-extra-linker-flags.patch │ │ │ └── ipcalc_0.2.3.bb │ │ ├── ipvsadm │ │ │ ├── ipvsadm │ │ │ │ ├── 0001-Modify-the-Makefile-for-cross-compile.patch │ │ │ │ ├── 0003-ipvsadm-remove-dependency-on-bash.patch │ │ │ │ └── makefile-add-ldflags.patch │ │ │ └── ipvsadm_1.31.bb │ │ ├── libesmtp │ │ │ ├── libesmtp │ │ │ │ ├── include-topdir.patch │ │ │ │ └── snprintf.patch │ │ │ └── libesmtp_1.0.6.bb │ │ ├── libldb │ │ │ ├── libldb │ │ │ │ ├── 0001-waf-add-support-of-cross_compile.patch │ │ │ │ ├── avoid-openldap-unless-wanted.patch │ │ │ │ ├── do-not-import-target-module-while-cross-compile.patch │ │ │ │ ├── libldb-fix-musl-libc-conflict-type-error.patch │ │ │ │ ├── libldb-fix-musl-libc-unkown-type-error.patch │ │ │ │ └── options-1.5.4.patch │ │ │ └── libldb_1.5.8.bb │ │ ├── libmaxminddb │ │ │ └── libmaxminddb_1.4.3.bb │ │ ├── libmemcached │ │ │ ├── files │ │ │ │ ├── 0001-Fix-comparison-types.patch │ │ │ │ ├── 0001-configure.ac-Do-not-configure-build-aux.patch │ │ │ │ ├── 0002-POSIX_SPAWN_USEVFORK-is-not-linux-specific-but-glibc.patch │ │ │ │ └── crosscompile.patch │ │ │ ├── libmemcached.inc │ │ │ ├── libmemcached_1.0.18.bb │ │ │ └── libmemcached_1.0.7.bb │ │ ├── libtalloc │ │ │ ├── libtalloc │ │ │ │ ├── avoid-attr-unless-wanted.patch │ │ │ │ └── options-2.2.0.patch │ │ │ └── libtalloc_2.3.2.bb │ │ ├── libtdb │ │ │ ├── libtdb │ │ │ │ └── tdb-Add-configure-options-for-packages.patch │ │ │ └── libtdb_1.4.3.bb │ │ ├── libtevent │ │ │ ├── libtevent │ │ │ │ ├── 0001-libtevent-fix-musl-libc-compile-error.patch │ │ │ │ ├── avoid-attr-unless-wanted.patch │ │ │ │ └── options-0.10.0.patch │ │ │ └── libtevent_0.10.2.bb │ │ ├── linux-atm │ │ │ ├── linux-atm │ │ │ │ ├── 0001-IFNAMSIZ-is-defined-in-net-if.h.patch │ │ │ │ ├── 0001-fix-compile-error-with-linux-kernel-v4.8.patch │ │ │ │ ├── 0001-saaldump-atmdump-Include-linux-sockios.h-for-SIOCGST.patch │ │ │ │ ├── 0001-ttcp-Add-printf-format-string.patch │ │ │ │ ├── 0003-mpoad-Drop-old-hack-to-compile-with-very-old-glibc.patch │ │ │ │ ├── install-from-buildir.patch │ │ │ │ ├── link-with-ldflags.patch │ │ │ │ └── musl-no-on_exit.patch │ │ │ └── linux-atm_2.5.2.bb │ │ ├── lksctp-tools │ │ │ ├── lksctp-tools │ │ │ │ ├── 0001-m4-sctp.m4-make-conpatible-to-autoconf-2.70.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── v4test.sh │ │ │ │ └── v6test.sh │ │ │ └── lksctp-tools_1.0.18.bb │ │ ├── lowpan-tools │ │ │ ├── lowpan-tools │ │ │ │ ├── 0001-Fix-build-errors-with-clang.patch │ │ │ │ ├── 0001-Fix-potential-string-truncation-in-strncpy.patch │ │ │ │ ├── 0001-Remove-newline-from-format-line.patch │ │ │ │ ├── 0001-addrdb-coord-config-parse.y-add-missing-time.h-inclu.patch │ │ │ │ ├── 0001-coordinator-Fix-strncpy-range-warning.patch │ │ │ │ ├── 0001-src-iz.c-Undef-dprintf-before-redefining.patch │ │ │ │ └── no-help2man.patch │ │ │ └── lowpan-tools_git.bb │ │ ├── macchanger │ │ │ ├── macchanger │ │ │ │ └── 0001-Fix-musl-build.patch │ │ │ └── macchanger_1.7.0.bb │ │ ├── memcached │ │ │ ├── memcached │ │ │ │ ├── 0001-Replace-sigignore-with-signal-API.patch │ │ │ │ └── memcached-add-hugetlbfs-check.patch │ │ │ └── memcached_1.6.6.bb │ │ ├── mtr │ │ │ └── mtr_0.94.bb │ │ ├── nbd │ │ │ └── nbd_3.20.bb │ │ ├── nbdkit │ │ │ ├── nbdkit │ │ │ │ └── 0001-server-Fix-build-when-printf-is-a-macro.patch │ │ │ └── nbdkit_1.25.5.bb │ │ ├── ncp │ │ │ ├── libowfat │ │ │ │ └── 0001-Depend-on-haveuint128.h-for-umult64.c.patch │ │ │ ├── libowfat_0.32.bb │ │ │ └── ncp_1.2.4.bb │ │ ├── ndisc6 │ │ │ ├── ndisc6 │ │ │ │ ├── 0001-autogen-Do-not-symlink-gettext.h-from-build-host.patch │ │ │ │ ├── 0001-replace-VLAIS-with-malloc-free-pair.patch │ │ │ │ └── 0002-Do-not-undef-_GNU_SOURCE.patch │ │ │ └── ndisc6_git.bb │ │ ├── netcat │ │ │ ├── netcat-openbsd │ │ │ │ └── 0001-bundle-own-base64-encode-decode-functions.patch │ │ │ ├── netcat-openbsd_1.195.bb │ │ │ ├── netcat.inc │ │ │ ├── netcat │ │ │ │ ├── gettext.patch │ │ │ │ ├── make-netcat_flag_count_work.patch │ │ │ │ ├── netcat-locale_h.patch │ │ │ │ └── obsolete_autoconf_macros.patch │ │ │ └── netcat_0.7.1.bb │ │ ├── netcf │ │ │ └── netcf_0.2.8.bb │ │ ├── netperf │ │ │ ├── files │ │ │ │ ├── 0001-netlib.c-Move-including-sched.h-out-og-function.patch │ │ │ │ ├── 0001-nettest_omni-Remove-duplicate-variable-definitions.patch │ │ │ │ ├── cpu_set.patch │ │ │ │ ├── init │ │ │ │ └── vfork.patch │ │ │ └── netperf_git.bb │ │ ├── nghttp2 │ │ │ ├── nghttp2 │ │ │ │ └── 0001-fetch-ocsp-response-use-python3.patch │ │ │ └── nghttp2_1.43.0.bb │ │ ├── nis │ │ │ ├── files │ │ │ │ └── ypbind.init │ │ │ ├── nis.inc │ │ │ ├── yp-tools │ │ │ │ └── domainname.service │ │ │ ├── yp-tools_2.14.bb │ │ │ ├── yp-tools_4.2.3.bb │ │ │ ├── ypbind-mt │ │ │ │ ├── 0001-Add-configure-time-check-for-gettid-API.patch │ │ │ │ ├── 0001-dns_hosts-Fix-build-with-musl.patch │ │ │ │ └── ypbind.service │ │ │ └── ypbind-mt_2.6.bb │ │ ├── ntimed │ │ │ ├── ntimed │ │ │ │ └── use-ldflags.patch │ │ │ └── ntimed_git.bb │ │ ├── ntopng │ │ │ ├── files │ │ │ │ ├── 0001-Makefile.in-don-t-use-the-internal-lua.patch │ │ │ │ ├── 0001-autogen.sh-generate-configure.ac-only.patch │ │ │ │ ├── 0001-autogen.sh-not-generate-configure.patch │ │ │ │ ├── 0001-configure.seed-fix-configure-error.patch │ │ │ │ ├── 0001-configure.seed-fix-host-contamination.patch │ │ │ │ ├── 0001-configure.seed-not-check-clang-on-host.patch │ │ │ │ └── ntopng.service │ │ │ ├── ndpi_3.4.bb │ │ │ └── ntopng_4.2.bb │ │ ├── ntp │ │ │ ├── ntp │ │ │ │ ├── ntp-4.2.4_p6-nano.patch │ │ │ │ ├── ntp.conf │ │ │ │ ├── ntpd │ │ │ │ ├── ntpd.list │ │ │ │ ├── ntpd.service │ │ │ │ ├── ntpdate │ │ │ │ ├── ntpdate.default │ │ │ │ ├── ntpdate.service │ │ │ │ ├── reproducibility-fixed-path-to-posix-shell.patch │ │ │ │ ├── sntp │ │ │ │ └── sntp.service │ │ │ └── ntp_4.2.8p15.bb │ │ ├── nuttcp │ │ │ ├── nuttcp │ │ │ │ ├── nuttcp.socket │ │ │ │ └── nuttcp@.service │ │ │ └── nuttcp_8.2.2.bb │ │ ├── nvmetcli │ │ │ └── nvmetcli_0.7.bb │ │ ├── open-isns │ │ │ ├── files │ │ │ │ └── 0001-isnsd.socket-use-run-instead-of-var-run.patch │ │ │ └── open-isns_0.101.bb │ │ ├── open-vm-tools │ │ │ ├── open-vm-tools │ │ │ │ ├── 0001-Add-resolv_compat.h-for-musl-builds.patch │ │ │ │ ├── 0001-Make-HgfsConvertFromNtTimeNsec-aware-of-64-bit-time_.patch │ │ │ │ ├── 0001-configure.ac-don-t-use-dnet-config.patch │ │ │ │ ├── 0001-hgfsmounter-Makefile.am-support-usrmerge.patch │ │ │ │ ├── 0001-pollGtk-Fix-volatile-qualifier-exposed-incorrectly.patch │ │ │ │ ├── 0002-hgfsServerLinux-Consider-64bit-time_t-possibility.patch │ │ │ │ ├── 0003-Use-configure-test-for-struct-timespec.patch │ │ │ │ ├── 0004-Fix-definition-of-ALLPERMS-and-ACCESSPERMS.patch │ │ │ │ ├── 0005-Use-configure-to-test-for-feature-instead-of-platfor.patch │ │ │ │ ├── 0006-Use-configure-test-for-sys-stat.h-include.patch │ │ │ │ ├── 0007-Fix-subdir-objects-configure-error.patch │ │ │ │ ├── 0008-include-poll.h-instead-of-sys-poll.h.patch │ │ │ │ ├── 0009-Rename-poll.h-to-vm_poll.h.patch │ │ │ │ ├── 0010-use-posix-strerror_r-unless-on-gnu-libc-system.patch │ │ │ │ ├── 0011-Use-uintmax_t-for-handling-rlim_t.patch │ │ │ │ ├── 0012-Use-off64_t-instead-of-__off64_t.patch │ │ │ │ ├── 0013-misc-Do-not-print-NULL-string-into-logs.patch │ │ │ │ ├── tools.conf │ │ │ │ ├── vmtoolsd.init │ │ │ │ └── vmtoolsd.service │ │ │ └── open-vm-tools_11.2.5.bb │ │ ├── openipmi │ │ │ ├── files │ │ │ │ ├── fix-symlink-install-error-in-cmdlang.patch │ │ │ │ ├── include_sys_types.patch │ │ │ │ ├── ipmi-init-fix-the-arguments.patch │ │ │ │ ├── ipmi.service │ │ │ │ ├── openipmi-helper │ │ │ │ ├── openipmi-no-openipmigui-man.patch │ │ │ │ └── openipmi-remove-host-path-from-la_LDFLAGS.patch │ │ │ └── openipmi_2.0.31.bb │ │ ├── openvpn │ │ │ ├── openvpn │ │ │ │ ├── openvpn │ │ │ │ ├── openvpn-volatile.conf │ │ │ │ └── openvpn@.service │ │ │ └── openvpn_2.5.1.bb │ │ ├── phytool │ │ │ └── phytool.bb │ │ ├── pimd │ │ │ ├── pimd │ │ │ │ └── 0001-configure-Dont-use-uname-to-determine-target-OS.patch │ │ │ └── pimd_2.3.2.bb │ │ ├── rdma-core │ │ │ └── rdma-core_33.0.bb │ │ ├── ruli │ │ │ ├── files │ │ │ │ ├── 0001-Fix-build-with-format-string-checks.patch │ │ │ │ ├── 0001-Make-space-for-flags-from-environment.patch │ │ │ │ ├── 0001-ruli_srv-Mark-prev_addr_list_size-as-unused.patch │ │ │ │ ├── 0001-src-ruli_addr.c-Add-missing-format-string.patch │ │ │ │ └── float-conversion.patch │ │ │ └── ruli_0.36.bb │ │ ├── smcroute │ │ │ └── smcroute_2.4.4.bb │ │ ├── spice │ │ │ ├── spice-protocol_git.bb │ │ │ ├── spice │ │ │ │ ├── 0001-Convert-pthread_t-to-be-numeric.patch │ │ │ │ ├── 0001-Fix-compile-errors-on-Linux-32bit-system.patch │ │ │ │ └── 0001-configure.ac-explicitly-link-to-jpeg-lib.patch │ │ │ ├── spice_git.bb │ │ │ └── usbredir_0.9.0.bb │ │ ├── ssmping │ │ │ ├── files │ │ │ │ └── 0001-Makefile-tweak-install-dir.patch │ │ │ └── ssmping_0.9.1.bb │ │ ├── ssmtp │ │ │ ├── ssmtp │ │ │ │ ├── build-ouside_srcdir.patch │ │ │ │ ├── ssmtp-bug584162-fix.patch │ │ │ │ └── use-DESTDIR.patch │ │ │ └── ssmtp_2.64.bb │ │ ├── strongswan │ │ │ ├── files │ │ │ │ ├── 0001-memory.h-Include-stdint.h-for-uintptr_t.patch │ │ │ │ └── fix-funtion-parameter.patch │ │ │ └── strongswan_5.9.2.bb │ │ ├── stunnel │ │ │ ├── stunnel │ │ │ │ └── fix-openssl-no-des.patch │ │ │ └── stunnel_5.59.bb │ │ ├── tcpdump │ │ │ ├── tcpdump │ │ │ │ ├── 0001-aclocal.m4-Skip-checking-for-pcap-config.patch │ │ │ │ ├── add-ptest.patch │ │ │ │ └── run-ptest │ │ │ ├── tcpdump_4.99.0.bb │ │ │ ├── tcpslice │ │ │ │ ├── tcpslice-1.2a3-time.patch │ │ │ │ └── tcpslice-CVS.20010207-bpf.patch │ │ │ └── tcpslice_1.2a3.bb │ │ ├── tcpreplay │ │ │ └── tcpreplay_4.3.3.bb │ │ ├── tinyproxy │ │ │ ├── tinyproxy │ │ │ │ ├── disable-documentation.patch │ │ │ │ ├── tinyproxy.conf │ │ │ │ └── tinyproxy.service │ │ │ └── tinyproxy_1.10.0.bb │ │ ├── tnftp │ │ │ ├── tnftp │ │ │ │ └── tnftp-autotools.patch │ │ │ └── tnftp_20151004.bb │ │ ├── traceroute │ │ │ └── traceroute_2.1.0.bb │ │ ├── tunctl │ │ │ ├── tunctl.inc │ │ │ ├── tunctl │ │ │ │ └── makefile-add-ldflags.patch │ │ │ └── tunctl_1.5.bb │ │ ├── uftp │ │ │ └── uftp_5.0.bb │ │ ├── unbound │ │ │ ├── unbound │ │ │ │ └── 0001-contrib-add-yocto-compatible-init-script.patch │ │ │ └── unbound_1.12.0.bb │ │ ├── vnstat │ │ │ └── vnstat_2.6.bb │ │ ├── wireshark │ │ │ ├── README │ │ │ ├── files │ │ │ │ ├── 0001-wireshark-src-improve-reproducibility.patch │ │ │ │ ├── 0002-flex-Remove-line-directives.patch │ │ │ │ ├── 0003-bison-Remove-line-directives.patch │ │ │ │ └── 0004-lemon-Remove-line-directives.patch │ │ │ └── wireshark_3.4.4.bb │ │ └── wpan-tools │ │ │ └── wpan-tools_0.9.bb │ └── site │ │ ├── endian-big │ │ └── endian-little ├── meta-oe │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ ├── breakpad.bbclass │ │ ├── gitpkgv.bbclass │ │ ├── gitver.bbclass │ │ ├── gpe.bbclass │ │ ├── image_types_sparse.bbclass │ │ ├── itstool.bbclass │ │ ├── machine_kernel_pr.bbclass │ │ ├── scancode.bbclass │ │ └── socorro-syms.bbclass │ ├── conf │ │ └── layer.conf │ ├── dynamic-layers │ │ ├── gnome-layer │ │ │ ├── recipes-core │ │ │ │ └── packagegroups │ │ │ │ │ └── packagegroup-meta-oe.bbappend │ │ │ └── recipes-graphics │ │ │ │ └── openbox │ │ │ │ ├── openbox-xdgmenu │ │ │ │ ├── 7_6.diff │ │ │ │ ├── fix-menu-generation.patch │ │ │ │ └── port-gnome-menus3.patch │ │ │ │ └── openbox-xdgmenu_0.3.bb │ │ ├── meta-python │ │ │ ├── recipes-benchmark │ │ │ │ └── speedtest-cli │ │ │ │ │ └── speedtest-cli_2.1.2.bb │ │ │ ├── recipes-bsp │ │ │ │ └── rwmem │ │ │ │ │ └── rwmem_1.2.bb │ │ │ ├── recipes-connectivity │ │ │ │ ├── lirc │ │ │ │ │ ├── lirc │ │ │ │ │ │ ├── 0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch │ │ │ │ │ │ ├── fix_build_errors.patch │ │ │ │ │ │ ├── lirc.tmpfiles │ │ │ │ │ │ ├── lirc_options.conf │ │ │ │ │ │ ├── lircd.conf │ │ │ │ │ │ ├── lircd.init │ │ │ │ │ │ ├── lircd.service │ │ │ │ │ │ └── lircexec.init │ │ │ │ │ └── lirc_0.10.1.bb │ │ │ │ └── thingsboard-gateway │ │ │ │ │ ├── thingsboard-gateway │ │ │ │ │ ├── bacnet.json │ │ │ │ │ ├── ble.json │ │ │ │ │ ├── can.json │ │ │ │ │ ├── custom_serial.json │ │ │ │ │ ├── logs.conf │ │ │ │ │ ├── modbus.json │ │ │ │ │ ├── modbus_serial.json │ │ │ │ │ ├── mqtt.json │ │ │ │ │ ├── odbc.json │ │ │ │ │ ├── opcua.json │ │ │ │ │ ├── request.json │ │ │ │ │ ├── rest.json │ │ │ │ │ ├── snmp.json │ │ │ │ │ ├── tb_gateway.yaml │ │ │ │ │ └── thingsboard-gateway.service │ │ │ │ │ └── thingsboard-gateway_2.5.2.bb │ │ │ ├── recipes-core │ │ │ │ └── packagegroups │ │ │ │ │ └── packagegroup-meta-oe.bbappend │ │ │ ├── recipes-dbs │ │ │ │ └── mongodb │ │ │ │ │ ├── mongodb │ │ │ │ │ ├── 0001-Fix-compilation-with-fno-common.patch │ │ │ │ │ ├── 0001-IntelRDFPMathLib20U1-Check-for-__DEFINED_wchar_t.patch │ │ │ │ │ ├── 0001-Mark-one-of-strerror_r-implementation-glibc-specific.patch │ │ │ │ │ ├── 0001-Support-deprecated-resolver-functions.patch │ │ │ │ │ ├── 0001-Tell-scons-to-use-build-settings-from-environment-va.patch │ │ │ │ │ ├── 0001-Use-__GLIBC__-to-control-use-of-gnu_get_libc_version.patch │ │ │ │ │ ├── 0001-Use-long-long-instead-of-int64_t.patch │ │ │ │ │ ├── 0001-asio-Dont-use-experimental-with-clang.patch │ │ │ │ │ ├── 0001-include-needed-c-header.patch │ │ │ │ │ ├── 0001-kms-message-bump-libmongocrypto-to-v1.0.4.patch │ │ │ │ │ ├── 0001-stacktrace-Define-ARCH_BITS-for-x86.patch │ │ │ │ │ ├── 0002-Add-a-definition-for-the-macro-__ELF_NATIVE_CLASS.patch │ │ │ │ │ ├── 0002-Fix-default-stack-size-to-256K.patch │ │ │ │ │ ├── 0003-Fix-unknown-prefix-env.patch │ │ │ │ │ ├── 0004-wiredtiger-Disable-strtouq-on-musl.patch │ │ │ │ │ ├── 1296.patch │ │ │ │ │ ├── arm64-support.patch │ │ │ │ │ ├── disable_runtime_check.patch │ │ │ │ │ └── ppc64_ARCH_BITS.patch │ │ │ │ │ └── mongodb_git.bb │ │ │ ├── recipes-devtools │ │ │ │ └── nanopb │ │ │ │ │ └── nanopb_0.4.5.bb │ │ │ ├── recipes-extended │ │ │ │ ├── lcdproc │ │ │ │ │ ├── lcdproc │ │ │ │ │ │ ├── 0001-Fix-compilation-with-GCC-10.x.patch │ │ │ │ │ │ ├── 0001-Fix-parallel-build-fix-port-internal-make-dependenci.patch │ │ │ │ │ │ ├── 0002-Include-limits.h-for-PATH_MAX-definition.patch │ │ │ │ │ │ └── 0003-Fix-non-x86-platforms-on-musl.patch │ │ │ │ │ └── lcdproc_git.bb │ │ │ │ └── mozjs │ │ │ │ │ ├── mozjs │ │ │ │ │ ├── 0001-Port-build-to-python3.patch │ │ │ │ │ ├── 0002-js.pc.in-do-not-include-RequiredDefines.h-for-depend.patch │ │ │ │ │ ├── 0003-fix-cross-compilation-on-i586-targets.patch │ │ │ │ │ ├── 0004-do-not-create-python-environment.patch │ │ │ │ │ ├── 0005-fix-cannot-find-link.patch │ │ │ │ │ ├── 0006-workaround-autoconf-2.13-detection-failed.patch │ │ │ │ │ ├── 0007-fix-do_compile-failed-on-mips.patch │ │ │ │ │ ├── 0008-add-riscv-support.patch │ │ │ │ │ ├── 0009-mozjs-fix-coredump-caused-by-getenv.patch │ │ │ │ │ ├── 0010-format-overflow.patch │ │ │ │ │ ├── 0011-To-fix-build-error-on-arm32BE.patch │ │ │ │ │ ├── 0012-JS_PUBLIC_API.patch │ │ │ │ │ ├── 0013-riscv-Disable-atomic-operations.patch │ │ │ │ │ ├── 0014-remove-JS_VOLATIME_ARM.patch │ │ │ │ │ ├── mipsarchn32 │ │ │ │ │ │ └── 0001-fix-compiling-failure-on-mips64-n32-bsp.patch │ │ │ │ │ └── musl │ │ │ │ │ │ ├── 0001-support-musl.patch │ │ │ │ │ │ └── 0002-js-Fix-build-with-musl.patch │ │ │ │ │ └── mozjs_60.9.0.bb │ │ │ └── recipes-support │ │ │ │ └── smem │ │ │ │ ├── smem │ │ │ │ └── 0001-smem-fix-support-for-source-option-python3.patch │ │ │ │ └── smem_1.5.bb │ │ ├── networking-layer │ │ │ ├── recipes-core │ │ │ │ └── packagegroups │ │ │ │ │ └── packagegroup-meta-oe.bbappend │ │ │ └── recipes-devtools │ │ │ │ └── valijson │ │ │ │ └── valijson_0.3.bb │ │ └── perl-layer │ │ │ ├── recipes-core │ │ │ └── packagegroups │ │ │ │ └── packagegroup-meta-oe.bbappend │ │ │ └── recipes-support │ │ │ ├── debsums │ │ │ └── debsums_2.2.2.bb │ │ │ └── rasdaemon │ │ │ ├── files │ │ │ ├── 0001-Fix-system-header-includes.patch │ │ │ ├── init │ │ │ └── rasdaemon.service │ │ │ └── rasdaemon_0.6.6.bb │ ├── lib │ │ └── oeqa │ │ │ └── selftest │ │ │ └── cases │ │ │ └── meta_oe_sources.py │ ├── licenses │ │ ├── ACE-TAO-CIAO │ │ ├── Arphic-Public-License │ │ ├── FLTK │ │ ├── GD │ │ ├── GPL-2.0-with-lmbench-restriction │ │ ├── HDF5 │ │ ├── ImageMagick │ │ ├── Khronos │ │ ├── Kilgard │ │ ├── ManishSingh │ │ ├── Mini-XML-License │ │ ├── OFL-1.0 │ │ ├── OGPL │ │ ├── OpenLDAP │ │ ├── QWTv1.0 │ │ ├── SSPL-1 │ │ ├── TLWG │ │ ├── UFL │ │ ├── X11 │ │ ├── flite │ │ ├── gnuplot │ │ ├── iozone3 │ │ ├── nbench-byte │ │ ├── read-edid │ │ ├── safec │ │ ├── ttf-mplus │ │ ├── unRAR │ │ ├── wxWidgets │ │ └── zsh │ ├── recipes-benchmark │ │ ├── bonnie │ │ │ └── bonnie++_1.04.bb │ │ ├── cpuburn │ │ │ ├── cpuburn-arm │ │ │ │ ├── 0001-cpuburn-a8.S-Remove-.func-.endfunc.patch │ │ │ │ ├── 0002-burn.S-Add.patch │ │ │ │ └── 0003-burn.S-Remove-.func-.endfunc.patch │ │ │ └── cpuburn-arm_git.bb │ │ ├── dbench │ │ │ ├── dbench_4.0.bb │ │ │ └── files │ │ │ │ ├── destdir.patch │ │ │ │ └── makefile.patch │ │ ├── dhrystone │ │ │ ├── dhrystone-2.1 │ │ │ │ └── dhrystone.patch │ │ │ └── dhrystone_2.1.bb │ │ ├── fio │ │ │ └── fio_3.26.bb │ │ ├── glmark2 │ │ │ ├── files │ │ │ │ ├── 0001-fix-dispmanx-build.patch │ │ │ │ └── 0002-run-dispmanx-fullscreen.patch │ │ │ └── glmark2_git.bb │ │ ├── iozone3 │ │ │ ├── iozone3 │ │ │ │ ├── 0001-let-system-headers-provide-pread64.patch │ │ │ │ ├── copyright.txt │ │ │ │ └── parallelism.patch │ │ │ └── iozone3_490.bb │ │ ├── iperf2 │ │ │ ├── iperf2 │ │ │ │ └── 0001-Detect-bool-definition-considering-stdbool.h-being-p.patch │ │ │ └── iperf2_2.0.13.bb │ │ ├── iperf3 │ │ │ ├── iperf3 │ │ │ │ ├── 0001-configure.ac-check-for-CPP-prog.patch │ │ │ │ └── 0002-Remove-pg-from-profile_CFLAGS.patch │ │ │ └── iperf3_3.9.bb │ │ ├── libc-bench │ │ │ └── libc-bench_git.bb │ │ ├── libhugetlbfs │ │ │ ├── files │ │ │ │ ├── 0001-Revert-ld.hugetlbfs-fix-Ttext-segment-argument-on-AA.patch │ │ │ │ ├── 0001-huge_page_setup_helper-use-python3-interpreter.patch │ │ │ │ ├── 0001-include-stddef.h-for-ptrdiff_t.patch │ │ │ │ ├── 0001-run_test.py-not-use-hard-coded-path-.-obj-hugeadm.patch │ │ │ │ ├── 0001-tests-makefile-Append-CPPFLAGS-rather-then-override.patch │ │ │ │ ├── 0002-Mark-glibc-specific-code-so.patch │ │ │ │ ├── 0003-alloc.c-Avoid-sysconf-_SC_LEVEL2_CACHE_LINESIZE-on-l.patch │ │ │ │ ├── 0004-shm.c-Mark-glibc-specific-changes-so.patch │ │ │ │ ├── 0005-Include-dirent.h-for-ino_t.patch │ │ │ │ ├── 0006-include-limits.h-for-PATH_MAX.patch │ │ │ │ ├── libhugetlbfs-avoid-search-host-library-path-for-cros.patch │ │ │ │ ├── libhugetlbfs-elf_i386-avoid-search-host-library-path.patch │ │ │ │ ├── skip-checking-LIB32-and-LIB64-if-they-point-to-the-s.patch │ │ │ │ └── tests-Makefile-install-static-4G-edge-testcases.patch │ │ │ └── libhugetlbfs_git.bb │ │ ├── linpack │ │ │ └── linpack_1.0.bb │ │ ├── lmbench │ │ │ ├── lmbench-3.0-a9 │ │ │ │ ├── 0001-Check-for-musl-define-guard-before-redefining-sockle.patch │ │ │ │ ├── 0001-doc-Fix-typos-in-lat_unix_connect-manual-page.patch │ │ │ │ ├── 0001-doc-Fix-typos-in-manual-pages.patch │ │ │ │ ├── 0001-lat_fifo-Fix-cleanup-sequence.patch │ │ │ │ ├── 0001-lat_http.c-Add-printf-format.patch │ │ │ │ ├── 0001-lmbench-Point-webpage-lm-to-target-directory.patch │ │ │ │ ├── 0001-src-Makefile-use-libdir-instead-of-hardcoded-lib.patch │ │ │ │ ├── 0002-build-Adjust-CFLAGS-LDFLAGS-to-append-values-passed-.patch │ │ │ │ ├── fix-lmbench-memory-check-failure.patch │ │ │ │ ├── lmbench_result_html_report.patch │ │ │ │ ├── obey-ranlib.patch │ │ │ │ ├── update-config-script.patch │ │ │ │ └── update-results-script.patch │ │ │ ├── lmbench │ │ │ │ ├── 0001-avoid-gcc-optimize-away-the-loops.patch │ │ │ │ ├── lmbench-run │ │ │ │ └── rename-line-binary.patch │ │ │ └── lmbench_3.0-a9.bb │ │ ├── memtester │ │ │ ├── files │ │ │ │ └── Makefile.patch │ │ │ └── memtester_4.5.0.bb │ │ ├── nbench-byte │ │ │ ├── nbench-byte │ │ │ │ ├── Makefile-add-more-dependencies-to-pointer.h.patch │ │ │ │ └── nbench_32bits.patch │ │ │ └── nbench-byte_2.2.3.bb │ │ ├── phoronix-test-suite │ │ │ └── phoronix-test-suite_9.2.1.bb │ │ ├── s-suite │ │ │ └── s-suite_git.bb │ │ ├── stressapptest │ │ │ ├── stressapptest │ │ │ │ ├── libcplusplus-compat.patch │ │ │ │ └── read_sysfs_for_cachesize.patch │ │ │ └── stressapptest_1.0.9.bb │ │ ├── sysbench │ │ │ └── sysbench_0.4.12.bb │ │ ├── tinymembench │ │ │ ├── tinymembench │ │ │ │ └── 0001-asm-Delete-.func-.endfunc-directives.patch │ │ │ └── tinymembench_git.bb │ │ ├── tiobench │ │ │ ├── tiobench-0.3.3 │ │ │ │ ├── 0001-Drop-inline-of-crc32-function-to-fix-build-using-GCC.patch │ │ │ │ ├── 0001-Specify-printf-formats.patch │ │ │ │ ├── avoid-glibc-clashes.patch │ │ │ │ └── tiobench-makefile.patch │ │ │ └── tiobench_0.3.3.bb │ │ └── whetstone │ │ │ └── whetstone_1.2.bb │ ├── recipes-bsp │ │ ├── acpitool │ │ │ └── acpitool_0.5.1.bb │ │ ├── con2fbmap │ │ │ └── con2fbmap_git.bb │ │ ├── cpufrequtils │ │ │ ├── cpufrequtils │ │ │ │ └── 0001-dont-unset-cflags.patch │ │ │ └── cpufrequtils_008.bb │ │ ├── edac-utils │ │ │ ├── edac-utils_git.bb │ │ │ └── files │ │ │ │ ├── add-restart-to-initscript.patch │ │ │ │ ├── edac.service │ │ │ │ └── make-init-script-be-able-to-automatically-load-EDAC-.patch │ │ ├── firmwared │ │ │ ├── firmwared │ │ │ │ └── firmwared.service │ │ │ └── firmwared_git.bb │ │ ├── flashrom │ │ │ ├── flashrom │ │ │ │ ├── 0001-flashrom-Mark-RISCV-as-non-memory-mapped-I-O-archite.patch │ │ │ │ ├── 0001-typecast-enum-conversions-explicitly.patch │ │ │ │ └── meson-fixes.patch │ │ │ └── flashrom_1.2.bb │ │ ├── irda-utils │ │ │ ├── irda-utils-0.9.18 │ │ │ │ ├── init │ │ │ │ ├── ldflags.patch │ │ │ │ └── musl.patch │ │ │ └── irda-utils_0.9.18.bb │ │ ├── ledmon │ │ │ ├── ledmon │ │ │ │ ├── 0001-Don-t-build-with-Werror-to-fix-compile-error.patch │ │ │ │ └── 0002-include-sys-select.h-and-sys-types.h.patch │ │ │ └── ledmon_git.bb │ │ ├── lm_sensors │ │ │ ├── lmsensors-config │ │ │ │ ├── fancontrol │ │ │ │ ├── sensord │ │ │ │ ├── sensord.cgi │ │ │ │ ├── sensord.conf │ │ │ │ └── sensors.conf │ │ │ ├── lmsensors-config_1.0.bb │ │ │ ├── lmsensors │ │ │ │ ├── 0001-Change-PIDFile-path-from-var-run-to-run.patch │ │ │ │ ├── fancontrol.init │ │ │ │ └── sensord.init │ │ │ └── lmsensors_3.6.0.bb │ │ ├── lsscsi │ │ │ └── lsscsi_0.31.bb │ │ ├── nvme-cli │ │ │ └── nvme-cli_1.13.bb │ │ ├── pcmciautils │ │ │ ├── pcmciautils │ │ │ │ ├── lex_sys_types.patch │ │ │ │ ├── makefile_fix.patch │ │ │ │ └── makefile_race.patch │ │ │ └── pcmciautils_018.bb │ │ └── pointercal │ │ │ ├── pointercal │ │ │ ├── COPYING │ │ │ ├── pointercal │ │ │ ├── qemuarm │ │ │ │ └── pointercal │ │ │ ├── qemuarmv6 │ │ │ │ └── pointercal │ │ │ ├── qemuarmv7 │ │ │ │ └── pointercal │ │ │ ├── qemumips │ │ │ │ └── pointercal │ │ │ ├── qemuppc │ │ │ │ └── pointercal │ │ │ ├── qemux86-64 │ │ │ │ └── pointercal │ │ │ └── qemux86 │ │ │ │ └── pointercal │ │ │ └── pointercal_0.0.bb │ ├── recipes-connectivity │ │ ├── ace │ │ │ ├── ace_6.5.12.bb │ │ │ └── files │ │ │ │ ├── ace_config.patch │ │ │ │ └── no_sysctl.patch │ │ ├── gammu │ │ │ ├── gammu │ │ │ │ ├── gammu-smsdrc │ │ │ │ └── gammurc │ │ │ └── gammu_1.32.0.bb │ │ ├── gattlib │ │ │ ├── files │ │ │ │ ├── 0001-cmake-Use-GNUInstallDirs.patch │ │ │ │ └── dbus-avoid-strange-chars-from-the-build-dir.patch │ │ │ └── gattlib_git.bb │ │ ├── gensio │ │ │ └── gensio_2.2.4.bb │ │ ├── hostapd │ │ │ ├── hostapd │ │ │ │ ├── CVE-2019-16275.patch │ │ │ │ ├── CVE-2019-5061.patch │ │ │ │ ├── CVE-2021-0326.patch │ │ │ │ ├── CVE-2021-27803.patch │ │ │ │ ├── CVE-2021-30004.patch │ │ │ │ ├── defconfig │ │ │ │ ├── hostapd.service │ │ │ │ └── init │ │ │ └── hostapd_2.9.bb │ │ ├── ifplugd │ │ │ ├── ifplugd │ │ │ │ ├── 0001-src-interface.h-Make-declarations-as-extern.patch │ │ │ │ └── Fix-build-with-musl.patch │ │ │ └── ifplugd_0.28.bb │ │ ├── irssi │ │ │ └── irssi_1.2.2.bb │ │ ├── iwd │ │ │ └── iwd_1.12.bb │ │ ├── krb5 │ │ │ ├── krb5 │ │ │ │ ├── 0001-aclocal-Add-parameter-to-disable-keyutils-detection.patch │ │ │ │ ├── crosscompile_nm.patch │ │ │ │ ├── debian-suppress-usr-lib-in-krb5-config.patch │ │ │ │ ├── etc │ │ │ │ │ ├── default │ │ │ │ │ │ ├── krb5-admin-server │ │ │ │ │ │ └── krb5-kdc │ │ │ │ │ └── init.d │ │ │ │ │ │ ├── krb5-admin-server │ │ │ │ │ │ └── krb5-kdc │ │ │ │ ├── krb5-admin-server.service │ │ │ │ └── krb5-kdc.service │ │ │ └── krb5_1.17.2.bb │ │ ├── libev │ │ │ └── libev_4.33.bb │ │ ├── libimobiledevice │ │ │ └── libimobiledevice_1.3.0.bb │ │ ├── libmbim │ │ │ └── libmbim_1.24.6.bb │ │ ├── libmtp │ │ │ ├── libmtp │ │ │ │ └── 0001-Use-native-mtp-hotplug.patch │ │ │ └── libmtp_1.1.18.bb │ │ ├── libndp │ │ │ └── libndp_1.7.bb │ │ ├── libnet │ │ │ ├── libnet │ │ │ │ └── 0001-Support-musl-libc-remove-support-for-glibc-2.1.patch │ │ │ └── libnet_1.2-rc3.bb │ │ ├── libqmi │ │ │ └── libqmi_1.28.2.bb │ │ ├── libtorrent │ │ │ ├── libtorrent │ │ │ │ └── don-t-run-code-while-configuring-package.patch │ │ │ └── libtorrent_git.bb │ │ ├── libwebsockets │ │ │ └── libwebsockets_4.1.6.bb │ │ ├── linuxptp │ │ │ ├── linuxptp │ │ │ │ ├── Use-cross-cpp-in-incdefs.patch │ │ │ │ └── build-Allow-CC-and-prefix-to-be-overriden.patch │ │ │ └── linuxptp_3.1.bb │ │ ├── loudmouth │ │ │ ├── loudmouth-1.4.3 │ │ │ │ ├── 04-use-pkg-config-for-gnutls.patch │ │ │ │ └── glib-2.32.patch │ │ │ └── loudmouth_1.4.3.bb │ │ ├── modemmanager │ │ │ └── modemmanager_1.16.2.bb │ │ ├── mosh │ │ │ ├── mosh │ │ │ │ └── 0001-Fix-building-with-libc.patch │ │ │ └── mosh_1.3.2.bb │ │ ├── obex │ │ │ ├── obex-data-server │ │ │ │ └── obex-data-server-0.4.6-build-fixes-1.patch │ │ │ ├── obex-data-server_0.4.6.bb │ │ │ └── openobex_1.7.2.bb │ │ ├── obexftp │ │ │ ├── obexftp │ │ │ │ ├── 0001-apps-CMakeLists.txt-Explicitly-link-libbfb-and-libmu.patch │ │ │ │ ├── Remove_some_printf_in_obexftpd.patch │ │ │ │ └── make_fuse_swig_optional.patch │ │ │ └── obexftp_0.24.2.bb │ │ ├── packagegroups │ │ │ └── packagegroup-tools-bluetooth.bb │ │ ├── paho-mqtt-c │ │ │ ├── files │ │ │ │ └── makefile.patch │ │ │ └── paho-mqtt-c_1.3.8.bb │ │ ├── rabbitmq-c │ │ │ └── rabbitmq-c_0.11.0.bb │ │ ├── rfkill │ │ │ ├── rfkill │ │ │ │ ├── 0001-rfkill-makefile-don-t-use-t-the-OE-install-wrapper-d.patch │ │ │ │ └── dont.call.git.rev-parse.on.parent.dir.patch │ │ │ └── rfkill_1.0.bb │ │ ├── rtorrent │ │ │ ├── rtorrent │ │ │ │ └── don-t-run-code-while-configuring-package.patch │ │ │ └── rtorrent_git.bb │ │ ├── ser2net │ │ │ └── ser2net_4.3.3.bb │ │ ├── smstools3 │ │ │ ├── smstools3 │ │ │ │ ├── 0001-Make-extern-declarations-to-avoid-duplicate-var-defi.patch │ │ │ │ ├── scripts_no_bash.patch │ │ │ │ └── sms_binpath.patch │ │ │ └── smstools3_3.1.21.bb │ │ ├── telepathy │ │ │ ├── telepathy-glib_0.24.1.bb │ │ │ ├── telepathy-idle │ │ │ │ └── fix-svc-gtk-doc.h-target.patch │ │ │ └── telepathy-idle_0.2.0.bb │ │ ├── thrift │ │ │ ├── thrift │ │ │ │ └── 0001-DefineInstallationPaths.cmake-Define-libdir-in-terms.patch │ │ │ └── thrift_0.13.0.bb │ │ ├── transmission │ │ │ ├── files │ │ │ │ └── transmission-daemon │ │ │ └── transmission_git.bb │ │ ├── usbmuxd │ │ │ └── usbmuxd_1.1.1.bb │ │ ├── wifi-test-suite │ │ │ ├── files │ │ │ │ ├── 0001-Use-toolchain-from-environment-variables.patch │ │ │ │ ├── 0002-Add-missing-include-removes-unnedded-stuff-and-add-n.patch │ │ │ │ ├── 0003-fix-path-to-usr-sbin-for-script-and-make-script-for-.patch │ │ │ │ ├── 0004-run-ranlib-per-library-and-use-AR.patch │ │ │ │ └── fno-common.patch │ │ │ └── wifi-test-suite_git.bb │ │ ├── wvdial │ │ │ ├── wvdial │ │ │ │ ├── musl-support.patch │ │ │ │ └── typo_pon.wvdial.1.patch │ │ │ ├── wvdial_1.61.bb │ │ │ ├── wvstreams │ │ │ │ ├── 0001-Check-for-limits.h-during-configure.patch │ │ │ │ ├── 0001-Fix-narrowing-conversion-error.patch │ │ │ │ ├── 0001-Forward-port-to-OpenSSL-1.1.x.patch │ │ │ │ ├── 0001-build-fix-parallel-make.patch │ │ │ │ ├── 0002-wvrules.mk-Use-_DEFAULT_SOURCE.patch │ │ │ │ ├── 0003-wvtask-Check-for-HAVE_LIBC_STACK_END-only-on-glibc-s.patch │ │ │ │ ├── 0004-wvcrash-Replace-use-of-basename-API.patch │ │ │ │ ├── 0005-check-for-libexecinfo-during-configure.patch │ │ │ │ ├── 04_signed_request.diff │ │ │ │ ├── 05_gcc.diff │ │ │ │ ├── 06_gcc-4.7.diff │ │ │ │ ├── 07_buildflags.diff │ │ │ │ ├── argp.patch │ │ │ │ ├── gcc-6.patch │ │ │ │ └── openssl-buildfix.patch │ │ │ └── wvstreams_4.6.1.bb │ │ ├── zabbix │ │ │ ├── zabbix │ │ │ │ ├── 0001-Fix-configure.ac.patch │ │ │ │ └── zabbix-agent.service │ │ │ └── zabbix_5.2.6.bb │ │ └── zeromq │ │ │ ├── cppzmq_git.bb │ │ │ ├── czmq_4.2.1.bb │ │ │ ├── files │ │ │ ├── 0001-CMakeLists-txt-Avoid-host-specific-path-to-libsodium.patch │ │ │ └── run-ptest │ │ │ └── zeromq_4.3.4.bb │ ├── recipes-core │ │ ├── dbus-cxx │ │ │ ├── dbus-cxx_0.12.bb │ │ │ └── files │ │ │ │ └── fix_build_musl.patch │ │ ├── dbus │ │ │ ├── dbus-broker_28.bb │ │ │ ├── dbus-daemon-proxy │ │ │ │ └── 0001-dbus-daemon-proxy-Return-DBUS_HANDLER_RESULT_NOT_YET.patch │ │ │ ├── dbus-daemon-proxy_git.bb │ │ │ ├── libdbus-c++-0.9.0 │ │ │ │ ├── 0001-pipe.c-Use-a-string-instead-of-char.patch │ │ │ │ ├── 0001-src-eventloop.cpp-use-portable-method-for-initializi.patch │ │ │ │ ├── 0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch │ │ │ │ ├── 0003-Fixed-undefined-ssize_t-for-clang-3.8.0-on-FreeBSD.patch │ │ │ │ ├── 0004-use-POSIX-poll.h-instead-of-sys-poll.h.patch │ │ │ │ ├── fix-missing-unistd.h-include.patch │ │ │ │ └── remove-CXX_FOR_BUILD-stuff.patch │ │ │ └── libdbus-c++_0.9.0.bb │ │ ├── emlog │ │ │ ├── emlog.inc │ │ │ ├── emlog │ │ │ │ ├── 0001-Remove-modules_clean-from-clean-target.patch │ │ │ │ ├── Drop-use-of-error-h.patch │ │ │ │ └── emlog.initd │ │ │ ├── emlog_git.bb │ │ │ └── kernel-module-emlog_git.bb │ │ ├── glfw │ │ │ └── glfw_3.3.bb │ │ ├── glib-2.0 │ │ │ ├── glibmm │ │ │ │ └── remove-examples.patch │ │ │ └── glibmm_2.62.0.bb │ │ ├── images │ │ │ ├── meta-oe-image-base.bb │ │ │ ├── meta-oe-image.bb │ │ │ └── meta-oe-ptest-image.bb │ │ ├── libnfc │ │ │ └── libnfc_git.bb │ │ ├── libsigc++-2.0 │ │ │ ├── libsigc++-2.0_2.10.6.bb │ │ │ └── libsigc++-3_3.0.6.bb │ │ ├── libxml │ │ │ ├── libxml++ │ │ │ │ ├── libxml++_ptest.patch │ │ │ │ └── run-ptest │ │ │ └── libxml++_2.40.1.bb │ │ ├── mdbus2 │ │ │ ├── mdbus2 │ │ │ │ └── 0001-Fix-arguments-in-GLib.DBusSignalCallback-for-Vala-0..patch │ │ │ └── mdbus2_git.bb │ │ ├── meta │ │ │ └── distro-feed-configs.bb │ │ ├── mm-common │ │ │ ├── mm-common │ │ │ │ └── 0001-meson.build-do-not-ask-for-python-installation-versi.patch │ │ │ └── mm-common_1.0.2.bb │ │ ├── musl-rpmatch │ │ │ └── musl-rpmatch_git.bb │ │ ├── ndctl │ │ │ └── ndctl_v69.bb │ │ ├── opencl │ │ │ ├── ocl-icd_2.3.0.bb │ │ │ ├── opencl-clhpp_git.bb │ │ │ ├── opencl-headers_git.bb │ │ │ └── opencl-icd-loader_git.bb │ │ ├── packagegroups │ │ │ ├── packagegroup-basic.bb │ │ │ ├── packagegroup-boot.bb │ │ │ └── packagegroup-meta-oe.bb │ │ ├── plymouth │ │ │ ├── files │ │ │ │ └── 0001-Make-full-path-to-systemd-tty-ask-password-agent-con.patch │ │ │ └── plymouth_0.9.5.bb │ │ ├── proxy-libintl │ │ │ └── proxy-libintl_20100902.bb │ │ ├── safec │ │ │ └── safec_3.5.1.bb │ │ ├── sdbus-c++ │ │ │ ├── sdbus-c++-0.8.3 │ │ │ │ └── run-ptest │ │ │ ├── sdbus-c++-libsystemd-243 │ │ │ │ ├── 0001-do-not-disable-buffer-in-writing-files.patch │ │ │ │ ├── 0001-meson-Fix-reallocarray-check.patch │ │ │ │ ├── 0002-don-t-use-glibc-specific-qsort_r.patch │ │ │ │ ├── 0002-src-login-brightness.c-include-sys-wait.h.patch │ │ │ │ ├── 0003-missing_type.h-add-__compare_fn_t-and-comparison_fn_.patch │ │ │ │ ├── 0003-src-basic-copy.c-include-signal.h.patch │ │ │ │ ├── 0004-add-fallback-parse_printf_format-implementation.patch │ │ │ │ ├── 0004-src-shared-cpu-set-util.h-add-__cpu_mask-definition.patch │ │ │ │ ├── 0005-src-basic-missing.h-check-for-missing-strndupa.patch │ │ │ │ ├── 0006-Include-netinet-if_ether.h.patch │ │ │ │ ├── 0007-don-t-fail-if-GLOB_BRACE-and-GLOB_ALTDIRFUNC-is-not.patch │ │ │ │ ├── 0008-add-missing-FTW_-macros-for-musl.patch │ │ │ │ ├── 0010-fix-missing-of-__register_atfork-for-non-glibc-build.patch │ │ │ │ ├── 0011-Use-uintmax_t-for-handling-rlim_t.patch │ │ │ │ ├── 0014-test-sizeof.c-Disable-tests-for-missing-typedefs-in-.patch │ │ │ │ ├── 0015-don-t-pass-AT_SYMLINK_NOFOLLOW-flag-to-faccessat.patch │ │ │ │ ├── 0016-Define-glibc-compatible-basename-for-non-glibc-syste.patch │ │ │ │ ├── 0017-Do-not-disable-buffering-when-writing-to-oom_score_a.patch │ │ │ │ ├── 0018-distinguish-XSI-compliant-strerror_r-from-GNU-specif.patch │ │ │ │ ├── 0019-Hide-__start_BUS_ERROR_MAP-and-__stop_BUS_ERROR_MAP.patch │ │ │ │ ├── 0020-missing_type.h-add-__compar_d_fn_t-definition.patch │ │ │ │ ├── 0021-avoid-redefinition-of-prctl_mm_map-structure.patch │ │ │ │ ├── 0024-test-json.c-define-M_PIl.patch │ │ │ │ └── static-libsystemd-pkgconfig.patch │ │ │ ├── sdbus-c++-libsystemd_243.bb │ │ │ ├── sdbus-c++-tools_0.8.3.bb │ │ │ └── sdbus-c++_0.8.3.bb │ │ ├── toybox │ │ │ ├── toybox-inittab │ │ │ │ ├── inittab │ │ │ │ ├── rcK │ │ │ │ └── rcS │ │ │ ├── toybox-inittab_0.8.2.bb │ │ │ └── toybox_0.8.4.bb │ │ └── usleep │ │ │ ├── files │ │ │ ├── GPLv2.patch │ │ │ ├── usleep.1 │ │ │ └── usleep.c │ │ │ └── usleep_1.0.bb │ ├── recipes-crypto │ │ ├── botan │ │ │ └── botan_2.14.0.bb │ │ ├── cryptsetup │ │ │ └── cryptsetup_2.3.5.bb │ │ ├── fsverity-utils │ │ │ └── fsverity-utils_1.3.bb │ │ ├── libkcapi │ │ │ ├── libkcapi │ │ │ │ └── 0001-Disable-use-of-__NR_io_getevents-when-not-defined.patch │ │ │ └── libkcapi_1.2.1.bb │ │ ├── libmcrypt │ │ │ └── libmcrypt_2.5.8.bb │ │ ├── libsodium │ │ │ └── libsodium_1.0.18.bb │ │ └── pkcs11-helper │ │ │ └── pkcs11-helper_1.27.bb │ ├── recipes-dbs │ │ ├── influxdb │ │ │ ├── influxdb │ │ │ │ ├── 0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch │ │ │ │ ├── influxdb │ │ │ │ └── influxdb.conf │ │ │ └── influxdb_1.7.10.bb │ │ ├── leveldb │ │ │ ├── leveldb │ │ │ │ └── run-ptest │ │ │ └── leveldb_1.22.bb │ │ ├── libdbi │ │ │ ├── libdbi.inc │ │ │ └── libdbi_0.9.0.bb │ │ ├── mysql │ │ │ ├── mariadb-native_10.5.9.bb │ │ │ ├── mariadb.inc │ │ │ ├── mariadb │ │ │ │ ├── 0001-Fix-library-LZ4-lookup.patch │ │ │ │ ├── 0001-aio_linux-Check-if-syscall-exists-before-using-it.patch │ │ │ │ ├── 0001-disable-ucontext-on-musl.patch │ │ │ │ ├── 0001-innobase-Define-__NR_futex-if-it-does-not-exist.patch │ │ │ │ ├── c11_atomics.patch │ │ │ │ ├── clang_version_header_conflict.patch │ │ │ │ ├── configure.cmake-fix-valgrind.patch │ │ │ │ ├── fix-a-building-failure.patch │ │ │ │ ├── fix-arm-atomic.patch │ │ │ │ ├── install_db │ │ │ │ ├── install_db.service │ │ │ │ ├── my.cnf │ │ │ │ ├── mysql-systemd-start │ │ │ │ ├── mysqld.service │ │ │ │ ├── ppc-remove-glibc-dep.patch │ │ │ │ ├── sql-CMakeLists.txt-fix-gen_lex_hash-not-found.patch │ │ │ │ ├── support-files-CMakeLists.txt-fix-do_populate_sysroot.patch │ │ │ │ └── sys_futex.patch │ │ │ ├── mariadb_10.5.9.bb │ │ │ ├── mysql-python │ │ │ │ └── 0001-_mysql.c-fix-compilation-with-MariaDB-with-10.3.13.patch │ │ │ └── mysql-python_1.2.5.bb │ │ ├── postgresql │ │ │ ├── files │ │ │ │ ├── 0001-Add-support-for-RISC-V.patch │ │ │ │ ├── 0001-Improve-reproducibility.patch │ │ │ │ ├── 0001-configure.in-bypass-autoconf-2.69-version-check.patch │ │ │ │ ├── not-check-libperl.patch │ │ │ │ ├── postgresql-profile │ │ │ │ ├── postgresql-setup │ │ │ │ ├── postgresql.init │ │ │ │ ├── postgresql.pam │ │ │ │ └── postgresql.service │ │ │ ├── postgresql.inc │ │ │ └── postgresql_13.2.bb │ │ ├── psqlodbc │ │ │ ├── files │ │ │ │ ├── psqlodbc-donot-use-the-hardcode-libdir.patch │ │ │ │ ├── psqlodbc-fix-for-ptest-support.patch │ │ │ │ ├── psqlodbc-remove-some-checks-for-cross-compiling.patch │ │ │ │ └── run-ptest │ │ │ ├── psqlodbc.inc │ │ │ └── psqlodbc_09.05.0300.bb │ │ ├── rocksdb │ │ │ ├── files │ │ │ │ ├── 0001-cmake-Add-check-for-atomic-support.patch │ │ │ │ ├── 0001-cmake-Use-exported-target-for-bz2.patch │ │ │ │ └── 0001-folly-Use-SYS_futex-for-syscall.patch │ │ │ └── rocksdb_6.15.5.bb │ │ ├── soci │ │ │ ├── soci │ │ │ │ └── soci_libdir.patch │ │ │ └── soci_3.2.3.bb │ │ └── sqlite │ │ │ ├── sqlite-2.8.17 │ │ │ ├── 0001-shell.c-Fix-format-not-a-string-literal-warning.patch │ │ │ ├── mainmk_build_dynamic.patch │ │ │ ├── mainmk_no_tcl.patch │ │ │ └── sqlite.pc │ │ │ └── sqlite_2.8.17.bb │ ├── recipes-devtools │ │ ├── abseil-cpp │ │ │ ├── abseil-cpp │ │ │ │ ├── 0001-absl-always-use-asm-sgidefs.h.patch │ │ │ │ ├── 0002-Remove-maes-option-from-cross-compilation.patch │ │ │ │ └── abseil-ppc-fixes.patch │ │ │ └── abseil-cpp_git.bb │ │ ├── android-tools │ │ │ ├── android-tools-conf-configfs │ │ │ │ ├── 10-adbd-configfs.conf │ │ │ │ ├── android-gadget-cleanup │ │ │ │ ├── android-gadget-setup │ │ │ │ └── android-gadget-start │ │ │ ├── android-tools-conf-configfs_1.0.bb │ │ │ ├── android-tools-conf │ │ │ │ └── android-gadget-setup │ │ │ ├── android-tools-conf_1.0.bb │ │ │ ├── android-tools │ │ │ │ ├── adb.mk │ │ │ │ ├── adbd.mk │ │ │ │ ├── android-tools-adbd.service │ │ │ │ ├── build │ │ │ │ │ └── 0001-Riscv-Add-risc-v-Android-config-header.patch │ │ │ │ ├── core │ │ │ │ │ ├── 0001-adb-remove-selinux-extensions.patch │ │ │ │ │ ├── 0002-adb-Use-local-sockets-where-appropriate.patch │ │ │ │ │ ├── 0003-adb-define-shell-command.patch │ │ │ │ │ ├── 0004-adb-Fix-build-on-big-endian-systems.patch │ │ │ │ │ ├── 0005-adb-add-base64-implementation.patch │ │ │ │ │ ├── 0006-adb-Musl-fixes.patch │ │ │ │ │ ├── 0007-adb-usb_linux.c-fix-build-with-glibc-2.28.patch │ │ │ │ │ ├── 0008-adb-Allow-adbd-to-be-ran-as-root.patch │ │ │ │ │ ├── 0009-mkbootimg-Add-dt-parameter-to-specify-DT-image.patch │ │ │ │ │ ├── 0010-Use-linux-capability.h-on-linux-systems-too.patch │ │ │ │ │ ├── 0011-Remove-bionic-specific-calls.patch │ │ │ │ │ ├── 0012-Fix-implicit-declaration-of-stlcat-strlcopy-function.patch │ │ │ │ │ ├── 0013-adb-Support-riscv64.patch │ │ │ │ │ └── adb_libssl_11.diff │ │ │ │ ├── ext4_utils.mk │ │ │ │ ├── extras │ │ │ │ │ ├── 0001-ext4_utils-remove-selinux-extensions.patch │ │ │ │ │ └── 0002-ext4_utils-add-o-argument-to-preserve-ownership.patch │ │ │ │ ├── fastboot.mk │ │ │ │ ├── gitignore │ │ │ │ ├── libselinux │ │ │ │ │ ├── 0001-Remove-bionic-specific-calls.patch │ │ │ │ │ └── 0001-libselinux-Do-not-define-gettid-if-glibc-2.30-is-use.patch │ │ │ │ └── mkbootimg.mk │ │ │ └── android-tools_5.1.1.r37.bb │ │ ├── apitrace │ │ │ └── apitrace_9.0.bb │ │ ├── autoconf-2.13 │ │ │ ├── autoconf-2.13-native_2.13.bb │ │ │ └── autoconf-2.13 │ │ │ │ └── 0001-Add-config.guess-config.sub-install-to-destdir.patch │ │ ├── boost-url │ │ │ └── boost-url_git.bb │ │ ├── bootchart │ │ │ ├── bootchart │ │ │ │ ├── 0001-svg-add-rudimentary-support-for-ARM-cpuinfo.patch │ │ │ │ └── 0002-svg-open-etc-os-release-and-use-PRETTY_NAME-for-the-.patch │ │ │ └── bootchart_git.bb │ │ ├── breakpad │ │ │ ├── breakpad │ │ │ │ ├── 0001-Do-not-add-stack-pointer-to-clobber-list.patch │ │ │ │ ├── 0001-Remove-HAVE_GETCONTEXT-check-to-add-local-implementa.patch │ │ │ │ ├── 0001-Turn-off-sign-compare-for-musl-libc.patch │ │ │ │ ├── 0001-include-sys-reg.h-to-get-__WORDSIZE-on-musl-libc.patch │ │ │ │ ├── 0001-lss-Match-syscalls-to-match-musl.patch │ │ │ │ ├── 0003-Dont-include-stab.h.patch │ │ │ │ ├── 0003-Fix-conflict-between-musl-libc-dirent.h-and-lss.patch │ │ │ │ ├── 0004-elf_reader.cc-include-sys-reg.h-to-get-__WORDSIZE-on.patch │ │ │ │ ├── mcontext.patch │ │ │ │ └── mips_asm_sgidefs.patch │ │ │ └── breakpad_git.bb │ │ ├── capnproto │ │ │ ├── capnproto │ │ │ │ └── 0001-mutex-Fix-build-on-32-bit-architectures-using-64-bit.patch │ │ │ └── capnproto_0.8.0.bb │ │ ├── cgdb │ │ │ ├── cgdb │ │ │ │ └── 0001-Avoid-use-of-mips-which-is-reserved-on-mips.patch │ │ │ └── cgdb_0.7.1.bb │ │ ├── cjson │ │ │ └── cjson_1.7.14.bb │ │ ├── cloc │ │ │ └── cloc_1.88.bb │ │ ├── concurrencykit │ │ │ ├── concurrencykit │ │ │ │ └── cross.patch │ │ │ └── concurrencykit_git.bb │ │ ├── cpuid │ │ │ └── cpuid_20201006.bb │ │ ├── cscope │ │ │ └── cscope_15.9.bb │ │ ├── ctags │ │ │ └── ctags_5.8.bb │ │ ├── debootstrap │ │ │ ├── debootstrap │ │ │ │ ├── 0001-support-to-override-usr-sbin-and-usr-share.patch │ │ │ │ └── 0002-support-to-override-usr-bin-arch-test.patch │ │ │ └── debootstrap_1.0.123.bb │ │ ├── dmalloc │ │ │ ├── dmalloc │ │ │ │ ├── 0001-undefined-strdup-macro.patch │ │ │ │ ├── 02-Makefile.in.patch │ │ │ │ ├── 03-threads.patch │ │ │ │ ├── 100-use-xtools.patch │ │ │ │ ├── 13-fix-ldflags-in-makefile.patch │ │ │ │ ├── 130-mips.patch │ │ │ │ ├── 150-use_DESTDIR.patch │ │ │ │ └── configure-pagesize-HACK.patch │ │ │ └── dmalloc_5.5.2.bb │ │ ├── dnf-plugin-tui │ │ │ ├── dnf-plugin-tui_git.bb │ │ │ └── files │ │ │ │ └── oe-remote.repo.sample │ │ ├── doxygen │ │ │ ├── doxygen │ │ │ │ ├── 0001-build-don-t-look-for-Iconv.patch │ │ │ │ └── doxygen-native-only-check-python3.patch │ │ │ └── doxygen_1.9.1.bb │ │ ├── exprtk │ │ │ └── exprtk_git.bb │ │ ├── flatbuffers │ │ │ └── flatbuffers_1.12.0.bb │ │ ├── geany │ │ │ ├── geany-plugins │ │ │ │ └── 0001-Use-pkg-config-to-find-gpgme.patch │ │ │ ├── geany-plugins_1.37.bb │ │ │ ├── geany │ │ │ │ └── 0001-configure-Upgrade-to-a-modern-Gettext.patch │ │ │ └── geany_1.37.1.bb │ │ ├── giflib │ │ │ ├── files │ │ │ │ └── CVE-2019-15133.patch │ │ │ └── giflib_5.1.4.bb │ │ ├── glade │ │ │ ├── glade │ │ │ │ └── remove-yelp-help-rules-var.patch │ │ │ └── glade_3.22.2.bb │ │ ├── grpc │ │ │ └── grpc_1.36.4.bb │ │ ├── guider │ │ │ └── guider_3.9.8.bb │ │ ├── heaptrack │ │ │ ├── heaptrack │ │ │ │ ├── 0001-libheaptrack-Replace-__pid_t-with-pid_t.patch │ │ │ │ ├── 0002-heaptrack_inject-Include-dlfcn.h-for-dlopen-dlclose.patch │ │ │ │ ├── 0003-heaptrack_preload-Make-noexcept-attribute-conditiona.patch │ │ │ │ └── 0004-backtrace-Always-include-stdint.h.patch │ │ │ └── heaptrack_1.2.0.bb │ │ ├── icon-slicer │ │ │ ├── files │ │ │ │ └── 0001-Makefile.am-no-examples.patch │ │ │ └── icon-slicer_0.3.bb │ │ ├── iptraf │ │ │ ├── iptraf-ng │ │ │ │ ├── 0001-Fix-printd-formatting-strings.patch │ │ │ │ └── ncurses-config.patch │ │ │ └── iptraf-ng_1.1.4.bb │ │ ├── jq │ │ │ └── jq_1.6.bb │ │ ├── json-schema-validator │ │ │ └── json-schema-validator_2.1.0.bb │ │ ├── json-spirit │ │ │ ├── json-spirit │ │ │ │ ├── 0001-Adjust-the-cmake-files.patch │ │ │ │ ├── 0001-Link-to-libatomic.patch │ │ │ │ └── json_spirit_v4.08.zip │ │ │ └── json-spirit_4.08.bb │ │ ├── jsoncpp │ │ │ └── jsoncpp_1.9.4.bb │ │ ├── jsonrpc │ │ │ ├── jsonrpc │ │ │ │ └── 0001-Fix-build-with-libmicrohttpd.patch │ │ │ └── jsonrpc_1.3.0.bb │ │ ├── kconfig-frontends │ │ │ ├── files │ │ │ │ ├── 0001-Makefile-ensure-frontends-exits-before-writing-into-.patch │ │ │ │ └── 0001-Switch-utils-kconfig-diff-to-use-Python-3.patch │ │ │ └── kconfig-frontends_4.11.0.1.bb │ │ ├── lapack │ │ │ └── lapack_3.9.0.bb │ │ ├── ldns │ │ │ └── ldns_1.7.1.bb │ │ ├── lemon │ │ │ ├── files │ │ │ │ └── lemon.1 │ │ │ ├── lemon.inc │ │ │ └── lemon_3.7.3.bb │ │ ├── libgee │ │ │ └── libgee_0.20.4.bb │ │ ├── libsombok3 │ │ │ ├── libsombok3 │ │ │ │ └── 0001-configure.ac-fix-cross-compiling-issue.patch │ │ │ └── libsombok3_2.4.0.bb │ │ ├── libubox │ │ │ ├── libubox │ │ │ │ ├── 0001-blobmsg-fix-array-out-of-bounds-GCC-10-warning.patch │ │ │ │ ├── 0001-version-libraries.patch │ │ │ │ └── fix-libdir.patch │ │ │ └── libubox_git.bb │ │ ├── lshw │ │ │ ├── files │ │ │ │ └── 0001-Fix-musl-build.patch │ │ │ └── lshw_02.19.2.bb │ │ ├── ltrace │ │ │ ├── ltrace │ │ │ │ ├── 0001-ARM-code-has-unreachable-code-after-switch-statement.patch │ │ │ │ ├── 0001-Add-support-for-mips64-n32-n64.patch │ │ │ │ ├── 0001-Bug-fix-for-data-type-length-judgment.patch │ │ │ │ ├── 0001-Fix-tautological-compare-warning.patch │ │ │ │ ├── 0001-Use-correct-enum-type.patch │ │ │ │ ├── 0001-configure-Recognise-linux-musl-as-a-host-OS.patch │ │ │ │ ├── 0001-ensure-the-struct-pointers-are-null-initilized.patch │ │ │ │ ├── 0001-hook-Do-not-append-int-to-std-string.patch │ │ │ │ ├── 0001-mips-plt.c-Delete-include-error.h.patch │ │ │ │ ├── 0001-move-fprintf-into-same-block-where-modname-and-symna.patch │ │ │ │ ├── 0001-replace-readdir_r-with-readdir.patch │ │ │ │ ├── 0002-Fix-const-qualifier-error.patch │ │ │ │ ├── add_ppc64le.patch │ │ │ │ ├── configure-allow-to-disable-selinux-support.patch │ │ │ │ └── include_unistd_nr.patch │ │ │ └── ltrace_git.bb │ │ ├── lua │ │ │ ├── lua │ │ │ │ ├── 0001-Allow-building-lua-without-readline-on-Linux.patch │ │ │ │ ├── 0001-Fixed-bug-barriers-cannot-be-active-during-sweep.patch │ │ │ │ ├── CVE-2020-15888.patch │ │ │ │ ├── CVE-2020-15945.patch │ │ │ │ ├── lua.pc.in │ │ │ │ ├── run-ptest │ │ │ │ └── uclibc-pthread.patch │ │ │ └── lua_5.3.6.bb │ │ ├── luajit │ │ │ ├── luajit │ │ │ │ ├── 0001-Do-not-strip-automatically-this-leaves-the-stripping.patch │ │ │ │ └── clang.patch │ │ │ └── luajit_git.bb │ │ ├── luaposix │ │ │ ├── luaposix │ │ │ │ └── 0001-fix-avoid-race-condition-between-test-and-mkdir.patch │ │ │ └── luaposix_33.4.0.bb │ │ ├── mcpp │ │ │ ├── files │ │ │ │ ├── CVE-2019-14274.patch │ │ │ │ └── ice-mcpp.patch │ │ │ └── mcpp_2.7.2.bb │ │ ├── memstat │ │ │ ├── memstat │ │ │ │ └── 0001-Include-limits.h-for-PATH_MAX-definition.patch │ │ │ └── memstat_1.0.bb │ │ ├── mercurial │ │ │ └── mercurial_5.5.bb │ │ ├── mpich │ │ │ └── mpich_3.4.1.bb │ │ ├── msgpack │ │ │ └── msgpack-c_3.2.1.bb │ │ ├── msr-tools │ │ │ └── msr-tools_1.3.bb │ │ ├── musl │ │ │ ├── musl-nscd │ │ │ │ ├── 0001-Fix-build-under-GCC-fno-common.patch │ │ │ │ ├── 0001-configure-Check-for-flex-if-lex-is-not-found.patch │ │ │ │ └── 0001-nsswitch.y-Replace-empty-bison-extension.patch │ │ │ └── musl-nscd_git.bb │ │ ├── nlohmann-fifo │ │ │ └── nlohmann-fifo_git.bb │ │ ├── nlohmann-json │ │ │ └── nlohmann-json_3.9.1.bb │ │ ├── nodejs │ │ │ ├── nodejs │ │ │ │ ├── 0001-Disable-running-gyp-files-for-bundled-deps.patch │ │ │ │ ├── 0001-Remove-use-of-register-r7-because-llvm-now-issues-an.patch │ │ │ │ ├── 0002-Using-native-binaries.patch │ │ │ │ ├── 0003-Install-both-binaries-and-use-libdir.patch │ │ │ │ ├── 0004-v8-don-t-override-ARM-CFLAGS.patch │ │ │ │ ├── big-endian.patch │ │ │ │ └── mips-warnings.patch │ │ │ └── nodejs_12.21.0.bb │ │ ├── octave │ │ │ ├── files │ │ │ │ └── fix-blas-library-integer-size.patch │ │ │ └── octave_4.4.1.bb │ │ ├── openocd │ │ │ └── openocd_git.bb │ │ ├── packagegroups │ │ │ └── packagegroup-sdk-target.bb │ │ ├── pax-utils │ │ │ └── pax-utils_1.2.2.bb │ │ ├── pcimem │ │ │ └── pcimem_2.0.bb │ │ ├── perl │ │ │ ├── ipc-run_20200505.0.bb │ │ │ ├── libdbd-mysql-perl_4.050.bb │ │ │ ├── libdbi-perl_1.643.bb │ │ │ ├── libdev-checklib-perl │ │ │ │ └── 0001-CheckLib.pm-don-t-execute-the-binary.patch │ │ │ ├── libdev-checklib-perl_1.14.bb │ │ │ ├── libio-pty-perl_1.16.bb │ │ │ ├── libjson-perl_4.03000.bb │ │ │ └── libperlio-gzip-perl_0.20.bb │ │ ├── php │ │ │ ├── php │ │ │ │ ├── 0001-configure.ac-don-t-include-build-libtool.m4.patch │ │ │ │ ├── 0001-opcache-config.m4-enable-opcache.patch │ │ │ │ ├── 0001-php-don-t-use-broken-wrapper-for-mkdir.patch │ │ │ │ ├── 0001-php.m4-don-t-unset-cache-variables.patch │ │ │ │ ├── 70_mod_php7.conf │ │ │ │ ├── CVE-2020-7069.patch │ │ │ │ ├── CVE-2020-7070.patch │ │ │ │ ├── debian-php-fixheader.patch │ │ │ │ ├── iconv.patch │ │ │ │ ├── imap-fix-autofoo.patch │ │ │ │ ├── pear-makefile.patch │ │ │ │ ├── phar-makefile.patch │ │ │ │ ├── php-fpm-apache.conf │ │ │ │ ├── php-fpm.conf │ │ │ │ ├── php-fpm.service │ │ │ │ ├── php_exec_native.patch │ │ │ │ └── xfail_two_bug_tests.patch │ │ │ └── php_7.4.9.bb │ │ ├── ply │ │ │ └── ply_git.bb │ │ ├── pmtools │ │ │ ├── pmtools │ │ │ │ └── pmtools-switch-to-dynamic-buffer-for-huge-ACPI-table.patch │ │ │ └── pmtools_git.bb │ │ ├── protobuf │ │ │ ├── protobuf-c │ │ │ │ └── 0001-avoid-race-condition.patch │ │ │ ├── protobuf-c_1.3.3.bb │ │ │ ├── protobuf │ │ │ │ ├── 0001-Makefile.am-include-descriptor.cc-when-building-libp.patch │ │ │ │ ├── 0001-examples-Makefile-respect-CXX-LDFLAGS-variables-fix-.patch │ │ │ │ ├── 0001-protobuf-fix-configure-error.patch │ │ │ │ └── run-ptest │ │ │ └── protobuf_3.15.2.bb │ │ ├── pugixml │ │ │ └── pugixml_1.11.2.bb │ │ ├── python │ │ │ ├── python-distutils-extra.inc │ │ │ └── python3-distutils-extra.bb │ │ ├── rapidjson │ │ │ └── rapidjson_git.bb │ │ ├── serialcheck │ │ │ └── serialcheck_1.0.0.bb │ │ ├── sip │ │ │ └── sip3_4.19.23.bb │ │ ├── sqlite-orm │ │ │ └── sqlite-orm_1.5.bb │ │ ├── squashfs-tools-ng │ │ │ └── squashfs-tools-ng_1.0.2.bb │ │ ├── suitesparse │ │ │ ├── suitesparse │ │ │ │ ├── 0001-Preserve-CXXFLAGS-from-environment-in-Mongoose.patch │ │ │ │ ├── 0002-Preserve-links-when-installing-libmetis.patch │ │ │ │ └── 0003-Add-version-information-to-libmetis.patch │ │ │ └── suitesparse_5.8.1.bb │ │ ├── tclap │ │ │ ├── files │ │ │ │ └── 0001-tclap-add-pkg-config-file.patch │ │ │ └── tclap_1.4.0.bb │ │ ├── tcltk │ │ │ ├── tk │ │ │ │ ├── confsearch.diff │ │ │ │ ├── fix-xft.diff │ │ │ │ └── tkprivate.diff │ │ │ └── tk_8.6.10.bb │ │ ├── uftrace │ │ │ ├── uftrace │ │ │ │ └── 0001-Fix-error-on-aarch64-with-binutils2.35.1.patch │ │ │ └── uftrace_0.9.4.bb │ │ ├── uw-imap │ │ │ ├── uw-imap │ │ │ │ ├── 0001-Support-OpenSSL-1.1.patch │ │ │ │ ├── imap-2007e-shared.patch │ │ │ │ ├── imap-2007f-format-security.patch │ │ │ │ └── quote_cctype.patch │ │ │ └── uw-imap_2007f.bb │ │ ├── xerces-c │ │ │ └── xerces-c_3.1.4.bb │ │ ├── xmlrpc-c │ │ │ ├── xmlrpc-c │ │ │ │ ├── 0001-test-cpp-server_abyss-Fix-build-with-clang-libc.patch │ │ │ │ ├── 0002-fix-formatting-issues.patch │ │ │ │ └── 0003-src-Makefile-Fix-Makefile-macro-error.patch │ │ │ └── xmlrpc-c_1.54.02.bb │ │ ├── yajl │ │ │ ├── yajl_1.0.12.bb │ │ │ └── yajl_2.1.0.bb │ │ └── yasm │ │ │ ├── yasm │ │ │ └── 0001-Do-not-use-AC_HEADER_STDC.patch │ │ │ └── yasm_git.bb │ ├── recipes-extended │ │ ├── beep │ │ │ ├── beep_1.4.9.bb │ │ │ └── files │ │ │ │ ├── 0001-Do-not-use-Werror-as-it-fails-with-newer-clang-11.patch │ │ │ │ └── linux-input.patch │ │ ├── bitwise │ │ │ ├── bitwise_0.41.bb │ │ │ └── files │ │ │ │ └── 0001-makefile.am-Fix-build-when-build-dir-is-not-same-as-.patch │ │ ├── boinc │ │ │ ├── boinc-client │ │ │ │ ├── boinc-AM_CONDITIONAL.patch │ │ │ │ └── gtk-configure.patch │ │ │ └── boinc-client_7.16.16.bb │ │ ├── brotli │ │ │ ├── brotli │ │ │ │ └── 838.patch │ │ │ └── brotli_1.0.9.bb │ │ ├── byacc │ │ │ ├── byacc.inc │ │ │ ├── byacc │ │ │ │ ├── 0001-byacc-do-not-reorder-CC-and-CFLAGS.patch │ │ │ │ └── byacc-open.patch │ │ │ └── byacc_20200910.bb │ │ ├── cfengine │ │ │ ├── cfengine-masterfiles │ │ │ │ └── python3.patch │ │ │ ├── cfengine-masterfiles_3.15.0.bb │ │ │ ├── cfengine │ │ │ │ └── set-path-of-default-config-file.patch │ │ │ └── cfengine_3.15.0.bb │ │ ├── cmpi-bindings │ │ │ ├── cmpi-bindings │ │ │ │ ├── 0001-Add-PYTHON_ABI-suffix-to-the-python-library-name.patch │ │ │ │ ├── 0001-Fix-error.patch │ │ │ │ ├── 0001-Modify-cmakelist.patch │ │ │ │ ├── 0001-fix-the-build-error-when-python-3.0.patch │ │ │ │ ├── cmpi-bindings-0.4.17-no-ruby-perl.patch │ │ │ │ ├── cmpi-bindings-0.4.17-sblim-sigsegv.patch │ │ │ │ └── cmpi-bindings-0.9.5-python-lib-dir.patch │ │ │ └── cmpi-bindings_1.0.1.bb │ │ ├── collectd │ │ │ ├── collectd │ │ │ │ ├── 0001-Remove-including-sys-sysctl.h-on-glibc-based-systems.patch │ │ │ │ ├── 0001-configure-Check-for-Wno-error-format-truncation-comp.patch │ │ │ │ ├── 0001-fix-to-build-with-glibc-2.25.patch │ │ │ │ ├── 0005-Disable-new-gcc8-warnings.patch │ │ │ │ ├── 0006-libcollectdclient-Fix-string-overflow-errors.patch │ │ │ │ ├── collectd.init │ │ │ │ ├── collectd.service │ │ │ │ └── no-gcrypt-badpath.patch │ │ │ └── collectd_5.12.0.bb │ │ ├── ddrescue │ │ │ └── ddrescue_1.25.bb │ │ ├── dialog │ │ │ └── dialog_1.3-20210319.bb │ │ ├── dlt-daemon │ │ │ ├── dlt-daemon │ │ │ │ ├── 0002-Don-t-execute-processes-as-a-specific-user.patch │ │ │ │ └── 0004-Modify-systemd-config-directory.patch │ │ │ └── dlt-daemon_2.18.6.bb │ │ ├── docopt.cpp │ │ │ └── docopt.cpp_git.bb │ │ ├── dumb-init │ │ │ └── dumb-init_1.2.5.bb │ │ ├── enscript │ │ │ ├── enscript │ │ │ │ ├── 0001-Fix-builds-with-recent-gettext.patch │ │ │ │ └── enscript-autoconf.patch │ │ │ └── enscript_1.6.6.bb │ │ ├── figlet │ │ │ ├── figlet │ │ │ │ └── 0001-build-add-autotools-support-to-allow-easy-cross-comp.patch │ │ │ └── figlet_git.bb │ │ ├── fluentbit │ │ │ ├── fluentbit │ │ │ │ ├── 0001-bin-fix-SIGSEGV-caused-by-using-flb_free-instead-of-.patch │ │ │ │ ├── 0001-ppc-Fix-signature-for-co_create-API.patch │ │ │ │ ├── 0002-parser-Fix-SIGSEGV-caused-by-using-flb_free-instead-.patch │ │ │ │ ├── builtin-nan.patch │ │ │ │ ├── cross-build-init-system-detection.patch │ │ │ │ └── jemalloc.patch │ │ │ └── fluentbit_1.3.5.bb │ │ ├── gnuplot │ │ │ ├── gnuplot │ │ │ │ ├── 0001-reduce-build-to-conversion-tools-for-native-build.patch │ │ │ │ ├── 0002-do-not-build-demos.patch │ │ │ │ ├── 0003-Use-native-tools-to-build-docs.patch │ │ │ │ ├── 0004-Add-configure-option-to-find-qt5-native-tools.patch │ │ │ │ ├── gnuplot.desktop │ │ │ │ └── gnuplot.png │ │ │ └── gnuplot_5.2.8.bb │ │ ├── haveged │ │ │ └── haveged_1.9.14.bb │ │ ├── hexedit │ │ │ └── hexedit_1.5.bb │ │ ├── hiredis │ │ │ ├── files │ │ │ │ └── 0001-Makefile-remove-hardcoding-of-CC.patch │ │ │ └── hiredis_0.14.0.bb │ │ ├── hplip │ │ │ ├── hplip │ │ │ │ ├── 030-replace_unsafe_memcpy_with_memmove.patch │ │ │ │ ├── 050-fix-glibcisms.patch │ │ │ │ ├── 600-fix.patch │ │ │ │ ├── 999-remove-lImageProcessor.patch │ │ │ │ ├── configure.patch │ │ │ │ ├── fix-libusb-paths.patch │ │ │ │ └── hplip-3.19.6-fix-return.patch │ │ │ └── hplip_3.19.12.bb │ │ ├── hwloc │ │ │ └── hwloc_1.11.13.bb │ │ ├── icewm │ │ │ ├── icewm │ │ │ │ └── 0001-configure.ac-skip-running-test-program-when-cross-co.patch │ │ │ └── icewm_1.6.5.bb │ │ ├── indent │ │ │ ├── indent │ │ │ │ ├── 0001-Fix-builds-with-recent-gettext.patch │ │ │ │ ├── 0001-Makefile.am-remove-regression-dir.patch │ │ │ │ └── 0001-src-indent.c-correct-the-check-for-locale.h.patch │ │ │ └── indent_2.2.12.bb │ │ ├── inputattach-config │ │ │ ├── inputattach-config.bb │ │ │ └── inputattach-config │ │ │ │ └── inputattach.conf │ │ ├── iotop │ │ │ └── iotop_0.6.bb │ │ ├── isomd5sum │ │ │ ├── files │ │ │ │ ├── 0001-tweak-install-prefix.patch │ │ │ │ └── 0002-fix-parallel-error.patch │ │ │ └── isomd5sum_1.2.3.bb │ │ ├── jansson │ │ │ └── jansson_2.13.1.bb │ │ ├── jpnevulator │ │ │ └── jpnevulator_git.bb │ │ ├── konkretcmpi │ │ │ ├── konkretcmpi │ │ │ │ ├── 0001-CMakeLists.txt-fix-lib64-can-not-be-shiped-in-64bit-.patch │ │ │ │ └── 0001-drop-including-rpath-cmake-module.patch │ │ │ └── konkretcmpi_0.9.2.bb │ │ ├── libbacktrace │ │ │ └── libbacktrace_git.bb │ │ ├── libblockdev │ │ │ └── libblockdev_2.25.bb │ │ ├── libcec │ │ │ ├── libcec │ │ │ │ ├── 0001-CheckPlatformSupport.cmake-Do-not-hardcode-lib-path.patch │ │ │ │ ├── 0001-Enhance-reproducibility.patch │ │ │ │ └── 0001-Remove-buggy-test-confusing-host-and-target.patch │ │ │ └── libcec_6.0.2.bb │ │ ├── libconfig │ │ │ └── libconfig_1.7.2.bb │ │ ├── libdivecomputer │ │ │ └── libdivecomputer_git.bb │ │ ├── libexecinfo │ │ │ ├── libexecinfo │ │ │ │ ├── 0001-makefile-Fix-build-on-linux.patch │ │ │ │ └── 0002-execinfo-Fix-compiler-errors-found-with-newer-gcc-cl.patch │ │ │ └── libexecinfo_1.1.bb │ │ ├── libgxim │ │ │ ├── libgxim │ │ │ │ ├── 0001-Use-AM_CPPFLAGS-instead-of-INCLUDES.patch │ │ │ │ ├── 0002-Update-autotools-macro.patch │ │ │ │ ├── 0003-Add-format-string-qualifier-to-fix-potential-securit.patch │ │ │ │ └── multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch │ │ │ └── libgxim_0.5.0.bb │ │ ├── libidn │ │ │ ├── libidn │ │ │ │ ├── 0001-idn-format-security-warnings.patch │ │ │ │ └── dont-depend-on-help2man.patch │ │ │ └── libidn_1.36.bb │ │ ├── libimobiledevice │ │ │ ├── libplist_2.2.0.bb │ │ │ └── libusbmuxd_2.0.2.bb │ │ ├── libleak │ │ │ ├── libleak │ │ │ │ └── 0001-respect-environment-variables.patch │ │ │ └── libleak_git.bb │ │ ├── liblightmodbus │ │ │ ├── liblightmodbus │ │ │ │ └── 0001-cmake-Use-GNUInstallDirs-instead-of-hardcoding-lib-p.patch │ │ │ └── liblightmodbus_2.0.2.bb │ │ ├── liblockfile │ │ │ ├── liblockfile │ │ │ │ ├── 0001-Makefile.in-add-DESTDIR.patch │ │ │ │ ├── 0001-Makefile.in-install-nfslock-libs.patch │ │ │ │ ├── configure.patch │ │ │ │ └── liblockfile-fix-install-so-to-man-dir.patch │ │ │ └── liblockfile_1.14.bb │ │ ├── liblogging │ │ │ └── liblogging_1.0.6.bb │ │ ├── liblognorm │ │ │ ├── liblognorm.inc │ │ │ └── liblognorm_1.0.1.bb │ │ ├── libmodbus │ │ │ ├── libmodbus.inc │ │ │ ├── libmodbus │ │ │ │ ├── Fix-float-endianness-issue-on-big-endian-arch.patch │ │ │ │ ├── Fix-typo.patch │ │ │ │ └── f1eb4bc7ccb09cd8d19ab641ee37637f8c34d16d.patch │ │ │ ├── libmodbus_3.0.6.bb │ │ │ └── libmodbus_3.1.6.bb │ │ ├── libnss-nisplus │ │ │ └── libnss-nisplus.bb │ │ ├── libpwquality │ │ │ ├── files │ │ │ │ └── add-missing-python-include-dir-for-cross.patch │ │ │ └── libpwquality_1.4.4.bb │ │ ├── libqb │ │ │ ├── libqb │ │ │ │ └── 0001-build-fix-configure-script-neglecting-re-enable-out-.patch │ │ │ └── libqb_1.0.5.bb │ │ ├── libreport │ │ │ ├── files │ │ │ │ ├── 0001-Makefile.am-remove-doc-and-apidoc.patch │ │ │ │ ├── 0002-configure.ac-remove-prog-test-of-xmlto-and-asciidoc.patch │ │ │ │ ├── 0003-without-build-plugins.patch │ │ │ │ └── 0004-configure.ac-remove-prog-test-of-augparse.patch │ │ │ └── libreport_2.10.0.bb │ │ ├── libserialport │ │ │ └── libserialport_0.1.1.bb │ │ ├── libstatgrab │ │ │ ├── libstatgrab │ │ │ │ └── 0001-configure.ac-Do-not-use-single-line-comment.patch │ │ │ └── libstatgrab_0.92.bb │ │ ├── libuio │ │ │ ├── libuio │ │ │ │ ├── 0001-include-fcntl.h-for-O_RDWR-define.patch │ │ │ │ └── replace_inline_with_static-inline.patch │ │ │ └── libuio_0.2.1.bb │ │ ├── libwmf │ │ │ ├── libwmf │ │ │ │ ├── 0001-configure-use-pkg-config-for-freetype.patch │ │ │ │ ├── libwmf-0.2.8.4-intoverflow.patch │ │ │ │ └── libwmf-0.2.8.4-useafterfree.patch │ │ │ └── libwmf_0.2.8.4.bb │ │ ├── libx86-1 │ │ │ ├── libx86-1.1 │ │ │ │ ├── 0001-assume-zero-is-valid-address.patch │ │ │ │ ├── libx86-mmap-offset.patch │ │ │ │ └── makefile-add-ldflags.patch │ │ │ └── libx86-1_1.1.bb │ │ ├── libzip │ │ │ └── libzip_1.7.3.bb │ │ ├── linuxconsole │ │ │ ├── linuxconsole │ │ │ │ ├── 51-these-are-not-joysticks-rm.rules │ │ │ │ ├── 60-joystick.rules │ │ │ │ ├── inputattach.service │ │ │ │ └── inputattachctl │ │ │ └── linuxconsole_1.7.0.bb │ │ ├── lockfile-progs │ │ │ └── lockfile-progs_0.1.18.bb │ │ ├── logwatch │ │ │ └── logwatch_7.5.3.bb │ │ ├── lprng │ │ │ ├── lprng │ │ │ │ └── 0001-checkpc-Do-not-define-Mail_fd-multiple-times.patch │ │ │ └── lprng_3.8.C.bb │ │ ├── mailx │ │ │ ├── files │ │ │ │ ├── 0001-Don-t-reuse-weak-symbol-optopt-to-fix-FTBFS-on-mips.patch │ │ │ │ ├── 0001-support-openssl-1.1.x.patch │ │ │ │ ├── 0002-Patched-out-SSL2-support-since-it-is-no-longer-suppo.patch │ │ │ │ ├── 0003-Fixed-Lintian-warning-warning-macro-N-not-defined.patch │ │ │ │ ├── 0011-outof-Introduce-expandaddr-flag.patch │ │ │ │ ├── 0012-unpack-Disable-option-processing-for-email-addresses.patch │ │ │ │ ├── 0013-fio.c-Unconditionally-require-wordexp-support.patch │ │ │ │ ├── 0014-globname-Invoke-wordexp-with-WRDE_NOCMD.patch │ │ │ │ ├── 0015-usr-sbin-sendmail.patch │ │ │ │ └── explicitly.disable.krb5.support.patch │ │ │ └── mailx_12.5-5.bb │ │ ├── md5deep │ │ │ ├── files │ │ │ │ ├── 0001-Fix-literal-and-identifier-spacing-as-dictated-by-C-.patch │ │ │ │ └── wrong-variable-expansion.patch │ │ │ └── md5deep_git.bb │ │ ├── minifi-cpp │ │ │ ├── files │ │ │ │ ├── 0001-Add-lxml2-to-linker-cmdline-of-xml-is-found.patch │ │ │ │ ├── 0001-CMakeLists.txt-use-curl-local-source-tarball.patch │ │ │ │ ├── 0001-civetweb-CMakeLists.txt-do-not-search-gcc-ar-and-gcc.patch │ │ │ │ ├── 0001-cxxopts-Add-limits-header.patch │ │ │ │ ├── 0002-cmake-LibreSSL.cmake-use-libressl-local-source-tarba.patch │ │ │ │ ├── 0003-cmake-BundledOSSPUUID.cmake-use-ossp-uuid-local-sour.patch │ │ │ │ ├── fix-libressl-avoid-BSWAP-assembly-for-ARM-v6.patch │ │ │ │ ├── fix-libressl-compile.patch │ │ │ │ ├── fix-minifi-compile.patch │ │ │ │ ├── fix-osspuuid-compile.patch │ │ │ │ ├── fix-osspuuid-cross-compile.patch │ │ │ │ ├── fix-osspuuid-musl-compile.patch │ │ │ │ ├── fix-rocksdb-cross-compile.patch │ │ │ │ ├── minifi.service │ │ │ │ ├── remove_const_due_to_std_lock_guard.patch │ │ │ │ ├── systemd-volatile.conf │ │ │ │ └── sysvinit-volatile.conf │ │ │ └── minifi-cpp_0.7.0.bb │ │ ├── mraa │ │ │ ├── mraa │ │ │ │ ├── 0001-cmake-Use-a-regular-expression-to-match-x86-architec.patch │ │ │ │ └── 0001-include-Declare-gVERSION-global-as-extern.patch │ │ │ └── mraa_git.bb │ │ ├── nana │ │ │ ├── nana │ │ │ │ ├── change-mandir-to-DESTDIR.patch │ │ │ │ └── modify-acinclude.m4-and-configure.in.patch │ │ │ └── nana_2.5.bb │ │ ├── nicstat │ │ │ ├── nicstat │ │ │ │ └── 0001-nicstat.c-Do-not-define-uint64_t-and-uint32_t.patch │ │ │ └── nicstat_1.95.bb │ │ ├── openlmi │ │ │ └── openlmi-tools_0.10.5.bb │ │ ├── openwsman │ │ │ ├── openwsman │ │ │ │ ├── 0001-lock.c-Define-PTHREAD_MUTEX_RECURSIVE_NP-if-undefine.patch │ │ │ │ ├── libssl-is-required-if-eventint-supported.patch │ │ │ │ └── openwsmand.service │ │ │ └── openwsman_2.6.11.bb │ │ ├── ostree │ │ │ ├── ostree │ │ │ │ └── run-ptest │ │ │ └── ostree_2021.1.bb │ │ ├── p7zip │ │ │ ├── files │ │ │ │ ├── 0001-Fix-narrowing-errors-Wc-11-narrowing.patch │ │ │ │ ├── CVE-2017-17969.patch │ │ │ │ └── do_not_override_compiler_and_do_not_strip.patch │ │ │ └── p7zip_16.02.bb │ │ ├── p8platform │ │ │ ├── files │ │ │ │ └── 0001-Make-resulting-cmake-config-relocatable.patch │ │ │ └── p8platform_git.bb │ │ ├── pam │ │ │ ├── pam-plugin-ccreds_11.bb │ │ │ ├── pam-plugin-ldapdb │ │ │ │ └── 0001-include-stdexcept-for-std-invalid_argument.patch │ │ │ ├── pam-plugin-ldapdb_1.3.bb │ │ │ ├── pam-ssh-agent-auth │ │ │ │ ├── 0001-Adapt-to-OpenSSL-1.1.1.patch │ │ │ │ └── 0002-Check-against-the-correct-OPENSSL_VERSION_NUMBER.patch │ │ │ └── pam-ssh-agent-auth_0.10.3.bb │ │ ├── pegtl │ │ │ └── pegtl_2.8.3.bb │ │ ├── perl │ │ │ └── libfile-fnmatch-perl_0.02.bb │ │ ├── pmdk │ │ │ └── pmdk_1.9.bb │ │ ├── polkit │ │ │ ├── files │ │ │ │ ├── 50-org.freedesktop.NetworkManager.rules │ │ │ │ └── 50-org.freedesktop.timedate1.rules │ │ │ ├── polkit-group-rule-datetime.bb │ │ │ ├── polkit-group-rule-network.bb │ │ │ ├── polkit-group-rule.inc │ │ │ ├── polkit │ │ │ │ ├── 0003-make-netgroup-support-optional.patch │ │ │ │ └── polkit-1_pam.patch │ │ │ └── polkit_0.116.bb │ │ ├── properties-cpp │ │ │ └── properties-cpp_git.bb │ │ ├── rarpd │ │ │ ├── rarpd │ │ │ │ ├── 0001-rarpd.8-add-man-file.patch │ │ │ │ ├── 0002-Makefile-modify-compile-parameters.patch │ │ │ │ ├── 0003-rarpd.c-bug-fix.patch │ │ │ │ ├── 0004-rarpd.init-add-new-init-file.patch │ │ │ │ ├── 0005-ethernet.c-remove-it.patch │ │ │ │ ├── ethers.sample │ │ │ │ └── rarpd.service │ │ │ └── rarpd_ss981107.bb │ │ ├── redis-plus-plus │ │ │ └── redis-plus-plus_1.2.2.bb │ │ ├── redis │ │ │ ├── redis │ │ │ │ ├── 0001-src-Do-not-reset-FINAL_LIBS.patch │ │ │ │ ├── 0006-Define-correct-gregs-for-RISCV32.patch │ │ │ │ ├── GNU_SOURCE.patch │ │ │ │ ├── hiredis-use-default-CC-if-it-is-set.patch │ │ │ │ ├── init-redis-server │ │ │ │ ├── lua-update-Makefile-to-use-environment-build-setting.patch │ │ │ │ ├── oe-use-libc-malloc.patch │ │ │ │ ├── redis.conf │ │ │ │ └── redis.service │ │ │ └── redis_6.2.1.bb │ │ ├── rrdtool │ │ │ └── rrdtool_1.7.2.bb │ │ ├── rsyslog │ │ │ ├── libfastjson_0.99.9.bb │ │ │ ├── librelp_1.10.0.bb │ │ │ ├── rsyslog │ │ │ │ ├── 0001-Include-sys-time-h.patch │ │ │ │ ├── 0001-tests-disable-the-check-for-inotify.patch │ │ │ │ ├── initscript │ │ │ │ ├── rsyslog.conf │ │ │ │ ├── rsyslog.logrotate │ │ │ │ ├── rsyslog.service │ │ │ │ ├── run-ptest │ │ │ │ └── use-pkgconfig-to-check-libgcrypt.patch │ │ │ └── rsyslog_8.2102.0.bb │ │ ├── sanlock │ │ │ ├── sanlock │ │ │ │ └── 0001-sanlock-Replace-cp-a-with-cp-R-no-dereference-preser.patch │ │ │ └── sanlock_3.8.3.bb │ │ ├── sblim-cmpi-devel │ │ │ ├── sblim-cmpi-devel │ │ │ │ └── sblim-cmpi-devel-2.0.3-docdir.patch │ │ │ └── sblim-cmpi-devel_2.0.3.bb │ │ ├── sblim-sfc-common │ │ │ └── sblim-sfc-common_1.0.1.bb │ │ ├── sblim-sfcb │ │ │ ├── sblim-sfcb │ │ │ │ ├── 0001-Avoid-variable-definition-in-header-files.patch │ │ │ │ ├── 0001-Replace-need-for-error.h-when-it-does-not-exist.patch │ │ │ │ ├── 0001-include-stdint.h-system-header-for-UINT16_MAX.patch │ │ │ │ ├── sblim-sfcb-1.3.15-fix-provider-debugging.patch │ │ │ │ ├── sblim-sfcb-1.3.16-maxMsgLen.patch │ │ │ │ ├── sblim-sfcb-1.3.16-multilib-man-cfg.patch │ │ │ │ ├── sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch │ │ │ │ ├── sblim-sfcb-1.4.5-service.patch │ │ │ │ ├── sblim-sfcb-1.4.8-default-ecdh-curve-name.patch │ │ │ │ ├── sblim-sfcb-1.4.9-fix-ftbfs.patch │ │ │ │ ├── sblim-sfcb-1.4.9-fix-sfcbinst2mof.patch │ │ │ │ └── sfcb.service │ │ │ └── sblim-sfcb_1.4.9.bb │ │ ├── sblim-sfcc │ │ │ ├── sblim-sfcc │ │ │ │ └── 0001-cimxml-Include-sys-select.h-for-fd_set.patch │ │ │ └── sblim-sfcc_2.2.8.bb │ │ ├── scsirastools │ │ │ ├── scsirastools │ │ │ │ ├── mdadm.patch │ │ │ │ └── print-format.patch │ │ │ └── scsirastools_1.6.6.bb │ │ ├── sedutil │ │ │ ├── files │ │ │ │ ├── 0001-DtaAnnotatedDump-Add-typedef-name-to-the-union.patch │ │ │ │ └── 0001-Fix-build-on-big-endian-architectures.patch │ │ │ └── sedutil_git.bb │ │ ├── sgpio │ │ │ ├── sgpio │ │ │ │ ├── 0001-makefile-Add-LDFLAGS-to-linking-rule.patch │ │ │ │ └── Makefile-error-fix.patch │ │ │ └── sgpio_1.2.0.10.bb │ │ ├── sigrok │ │ │ ├── libsigrok_0.5.2.bb │ │ │ ├── libsigrokdecode │ │ │ │ └── python39.patch │ │ │ ├── libsigrokdecode_0.5.3.bb │ │ │ └── sigrok-cli_0.7.2.bb │ │ ├── smartmontools │ │ │ ├── files │ │ │ │ ├── 0001-configure.ac-Define-SOURCE_DATE_EPOCH-in-CPPFLAGS.patch │ │ │ │ ├── initd.smartd │ │ │ │ ├── smartd.service │ │ │ │ └── smartmontools.default │ │ │ └── smartmontools_7.2.bb │ │ ├── snappy │ │ │ └── snappy_1.1.8.bb │ │ ├── socketcan │ │ │ ├── can-isotp_git.bb │ │ │ ├── can-utils_git.bb │ │ │ ├── canutils │ │ │ │ └── 0001-canutils-candump-Add-error-frame-s-handling.patch │ │ │ ├── canutils_4.0.6.bb │ │ │ └── libsocketcan_0.0.12.bb │ │ ├── sysdig │ │ │ ├── sysdig │ │ │ │ ├── 0001-fix-build-with-LuaJIT-2.1-betas.patch │ │ │ │ └── aarch64.patch │ │ │ └── sysdig_git.bb │ │ ├── tipcutils │ │ │ ├── tipcutils │ │ │ │ ├── 0001-include-sys-select.h-for-FD_-definitions.patch │ │ │ │ ├── 0001-multicast_blast-tipcc-Fix-struct-type-for-TIPC_GROUP.patch │ │ │ │ ├── 0001-test-ptts-Set-recv-buffer-size-too-max-to-receive-as.patch │ │ │ │ └── 0002-replace-non-standard-uint-with-unsigned-int.patch │ │ │ └── tipcutils_git.bb │ │ ├── tiptop │ │ │ ├── tiptop │ │ │ │ ├── 0001-Fix-build-when-S-B.patch │ │ │ │ ├── 0001-Fix-parallel-build-problems-by-Adrian-Bunk.patch │ │ │ │ └── 0002-fix-reproducibility-of-build-process.patch │ │ │ └── tiptop_2.3.1.bb │ │ ├── tmate │ │ │ └── tmate_2.4.0.bb │ │ ├── tmux │ │ │ └── tmux_3.1c.bb │ │ ├── triggerhappy │ │ │ └── triggerhappy_git.bb │ │ ├── uml-utilities │ │ │ ├── uml-utilities-20040406 │ │ │ │ ├── 0001-include-required-system-header-files-for-fd_set-and-.patch │ │ │ │ ├── fix-ldflags.patch │ │ │ │ └── unstrip.patch │ │ │ └── uml-utilities_20040406.bb │ │ ├── upm │ │ │ ├── upm │ │ │ │ ├── 0001-CMakeLists.txt-Use-SWIG_SUPPORT_FILES-to-find-the-li.patch │ │ │ │ ├── 0001-Use-stdint-types.patch │ │ │ │ ├── 0001-cmake-Disable-Wno-misleading-indentation-with-clang-.patch │ │ │ │ ├── 0001-cmake-Disable-using-Wno-maybe-uninitialized.patch │ │ │ │ ├── 0001-initialize-local-variables-before-use.patch │ │ │ │ └── 0001-nmea_gps-Link-with-latomic.patch │ │ │ └── upm_git.bb │ │ ├── vlock │ │ │ ├── vlock-2.2.3 │ │ │ │ ├── disable_vlockrc.patch │ │ │ │ ├── vlock-no_tally.patch │ │ │ │ ├── vlock_pam │ │ │ │ └── vlock_pam_tally2_reset.patch │ │ │ └── vlock_2.2.3.bb │ │ ├── volume_key │ │ │ └── volume-key_0.3.12.bb │ │ ├── wipe │ │ │ ├── files │ │ │ │ ├── makefile-add-ldflags.patch │ │ │ │ └── support-cross-compile-for-linux.patch │ │ │ └── wipe_0.24.bb │ │ ├── wxwidgets │ │ │ ├── wxwidgets │ │ │ │ └── 0001-wx-config.in-Disable-cross-magic-it-does-not-work-fo.patch │ │ │ └── wxwidgets_git.bb │ │ ├── zlog │ │ │ └── zlog_1.2.15.bb │ │ └── zram │ │ │ ├── zram │ │ │ ├── dev-zram0.swap │ │ │ ├── init │ │ │ ├── zram-swap-deinit │ │ │ ├── zram-swap-init │ │ │ ├── zram-swap.service │ │ │ └── zramstop │ │ │ └── zram_0.2.bb │ ├── recipes-gnome │ │ ├── atk │ │ │ └── atkmm_2.28.0.bb │ │ ├── gcab │ │ │ ├── gcab │ │ │ │ └── run-ptest │ │ │ └── gcab_1.4.bb │ │ ├── gmime │ │ │ ├── gmime │ │ │ │ ├── iconv-detect.h │ │ │ │ └── nodolt.patch │ │ │ └── gmime_3.2.6.bb │ │ ├── gnome-common │ │ │ └── gnome-common_3.18.0.bb │ │ ├── gnome-doc-utils-stub │ │ │ ├── files │ │ │ │ └── gnome-doc-utils.m4 │ │ │ └── gnome-doc-utils-stub_1.0.bb │ │ ├── gnome-themes │ │ │ └── gnome-themes-extra_3.28.bb │ │ ├── gtk+ │ │ │ ├── gtk+.inc │ │ │ ├── gtk+ │ │ │ │ ├── 0001-Do-not-look-into-HOME-when-looking-for-gtk-modules.patch │ │ │ │ ├── doc-fixes.patch │ │ │ │ ├── hardcoded_libtool.patch │ │ │ │ ├── strict-prototypes.patch │ │ │ │ ├── toggle-font.diff │ │ │ │ └── xsettings.patch │ │ │ ├── gtk+_2.24.33.bb │ │ │ ├── gtkmm │ │ │ │ └── 0001-meson.build-use-relative-path.patch │ │ │ ├── gtkmm3_3.24.3.bb │ │ │ └── gtkmm_2.24.5.bb │ │ ├── libjcat │ │ │ ├── libjcat │ │ │ │ └── run-ptest │ │ │ └── libjcat_0.1.6.bb │ │ ├── libpeas │ │ │ ├── libpeas │ │ │ │ ├── 0001-Do-not-build-tests-when-introspection-is-disabled-mi.patch │ │ │ │ └── add_missing_locale_include.patch │ │ │ └── libpeas_1.26.0.bb │ │ ├── libxmlb │ │ │ ├── libxmlb │ │ │ │ └── run-ptest │ │ │ └── libxmlb_0.3.0.bb │ │ ├── pyxdg │ │ │ └── pyxdg_0.26.bb │ │ └── vte9 │ │ │ ├── vte9.inc │ │ │ ├── vte9 │ │ │ ├── cve-2012-2738.patch │ │ │ └── obsolete_automake_macros.patch │ │ │ └── vte9_0.28.2.bb │ ├── recipes-graphics │ │ ├── cairo │ │ │ └── cairomm_1.12.0.bb │ │ ├── dietsplash │ │ │ ├── dietsplash │ │ │ │ └── 0001-configure.ac-Do-not-demand-linker-hash-style.patch │ │ │ └── dietsplash_git.bb │ │ ├── directfb │ │ │ ├── directfb-examples │ │ │ │ └── configure.in-Fix-string-argument-syntax.patch │ │ │ ├── directfb-examples_1.7.0.bb │ │ │ ├── directfb.inc │ │ │ ├── directfb │ │ │ │ ├── 0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch │ │ │ │ ├── 0001-gfx-direct-Aboid-usng-VLAs-and-printf-formats.patch │ │ │ │ ├── 0001-os-linux-Fix-build-when-__NR_futex-is-not-available.patch │ │ │ │ ├── bashism.patch │ │ │ │ ├── compar_fn_t.patch │ │ │ │ ├── configurefix.patch │ │ │ │ ├── fix-client-gfx_state-initialisation.patch │ │ │ │ ├── fix-tslib-version-check.patch │ │ │ │ ├── fusion.patch │ │ │ │ ├── union-sigval.patch │ │ │ │ └── use-PTHREAD_MUTEX_RECURSIVE.patch │ │ │ └── directfb_1.7.7.bb │ │ ├── dnfdragora │ │ │ ├── dnfdragora │ │ │ │ ├── 0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch │ │ │ │ ├── 0001-To-fix-error-when-do_package.patch │ │ │ │ └── 0001-disable-build-manpages.patch │ │ │ └── dnfdragora_git.bb │ │ ├── fbgrab │ │ │ └── fbgrab_1.5.bb │ │ ├── fbida │ │ │ ├── fbida_2.14.bb │ │ │ └── files │ │ │ │ ├── 0001-Avoid-using-host-path.patch │ │ │ │ ├── cairo-weak-detect.patch │ │ │ │ ├── fbida-gcc10.patch │ │ │ │ ├── fix-preprocessor.patch │ │ │ │ ├── support-jpeg-turbo.patch │ │ │ │ └── use-jpeg-turbo.patch │ │ ├── feh │ │ │ └── feh_3.6.1.bb │ │ ├── fontforge │ │ │ ├── fontforge │ │ │ │ └── 0001-include-sys-select-on-non-glibc-platforms.patch │ │ │ └── fontforge_20190801.bb │ │ ├── freeglut │ │ │ └── freeglut_3.2.1.bb │ │ ├── ftgl │ │ │ ├── ftgl │ │ │ │ ├── 0001-Explicit-typecast-to-avoid-implicit-double-to-float-.patch │ │ │ │ ├── 0001-use-pkg-config-to-find-freetype2.patch │ │ │ │ └── 0002-Makefile.am-remove-useless-and-breaking-code.patch │ │ │ └── ftgl_2.1.3-rc5.bb │ │ ├── fvwm │ │ │ ├── fvwm │ │ │ │ └── 0001-Fix-compilation-for-disabled-gnome.patch │ │ │ └── fvwm_2.6.9.bb │ │ ├── glm │ │ │ ├── glm │ │ │ │ ├── 0001-Silence-clang-warnings.patch │ │ │ │ ├── glm.pc.in │ │ │ │ ├── glmConfig.cmake.in │ │ │ │ ├── glmConfigVersion.cmake.in │ │ │ │ └── glmTargets.cmake │ │ │ └── glm_0.9.9.8.bb │ │ ├── gphoto2 │ │ │ ├── gphoto2 │ │ │ │ ├── 0001-configure.ac-remove-AM_PO_SUBDIRS.patch │ │ │ │ └── 0002-Look-for-popt-with-GP_CHECK_LIBRARY-function.patch │ │ │ ├── gphoto2_2.5.27.bb │ │ │ ├── libgphoto2 │ │ │ │ ├── 0001-configure.ac-remove-AM_PO_SUBDIRS.patch │ │ │ │ └── 40-libgphoto2.rules │ │ │ └── libgphoto2_2.5.27.bb │ │ ├── graphviz │ │ │ ├── graphviz │ │ │ │ ├── 0001-Set-use_tcl-to-be-empty-string-if-tcl-is-disabled.patch │ │ │ │ ├── 0001-Use-native-mkdefs.patch │ │ │ │ ├── 0001-plugin-pango-Include-freetype-headers-explicitly.patch │ │ │ │ └── graphviz-setup.sh │ │ │ └── graphviz_2.44.1.bb │ │ ├── gtkperf │ │ │ ├── gtkperf │ │ │ │ ├── 0001-Include-stdlib.h-for-exit-API.patch │ │ │ │ ├── 0002-timing.c-Fix-format-security-errors.patch │ │ │ │ ├── Makevars │ │ │ │ └── gettext.patch │ │ │ └── gtkperf_0.40.bb │ │ ├── gtkwave │ │ │ └── gtkwave_3.3.108.bb │ │ ├── imlib2 │ │ │ └── imlib2_git.bb │ │ ├── jasper │ │ │ └── jasper_2.0.26.bb │ │ ├── leptonica │ │ │ └── leptonica_1.80.0.bb │ │ ├── libforms │ │ │ ├── files │ │ │ │ ├── 0001-Make-extern-declarations-in-header-file.patch │ │ │ │ ├── add-absolute-path-for-include-dir.patch │ │ │ │ ├── fix-link-to-xforms-man.patch │ │ │ │ └── fix-path-fdesign_LDADD.patch │ │ │ └── libforms_1.2.3.bb │ │ ├── libmng │ │ │ └── libmng_2.0.3.bb │ │ ├── libsdl │ │ │ ├── libsdl-1.2.15 │ │ │ │ ├── 0001-build-Pass-tag-CC-explictly-when-using-libtool.patch │ │ │ │ ├── CVE-2019-7572.patch │ │ │ │ ├── CVE-2019-7574.patch │ │ │ │ ├── CVE-2019-7575.patch │ │ │ │ ├── CVE-2019-7576.patch │ │ │ │ ├── CVE-2019-7577.patch │ │ │ │ ├── CVE-2019-7578.patch │ │ │ │ ├── CVE-2019-7635.patch │ │ │ │ ├── CVE-2019-7637.patch │ │ │ │ ├── CVE-2019-7638.patch │ │ │ │ ├── libsdl-1.2.15-xdata32.patch │ │ │ │ └── pkgconfig.patch │ │ │ ├── libsdl-gfx_2.0.25.bb │ │ │ ├── libsdl-image │ │ │ │ └── configure.patch │ │ │ ├── libsdl-image_1.2.12.bb │ │ │ ├── libsdl-mixer │ │ │ │ └── configure.patch │ │ │ ├── libsdl-mixer_1.2.12.bb │ │ │ ├── libsdl-net │ │ │ │ ├── am_foreign.patch │ │ │ │ └── libtool2.patch │ │ │ ├── libsdl-net_1.2.8.bb │ │ │ ├── libsdl-ttf │ │ │ │ └── use.pkg-config.for.freetype2.patch │ │ │ ├── libsdl-ttf_2.0.11.bb │ │ │ ├── libsdl2-image_2.0.5.bb │ │ │ ├── libsdl2-mixer │ │ │ │ └── 0001-configure.in-Undefine-AC_CONFIG_AUX_DIR.patch │ │ │ ├── libsdl2-mixer_2.0.4.bb │ │ │ ├── libsdl2-net_2.0.1.bb │ │ │ ├── libsdl2-ttf │ │ │ │ └── automake_foreign.patch │ │ │ ├── libsdl2-ttf_2.0.15.bb │ │ │ └── libsdl_1.2.15.bb │ │ ├── libvncserver │ │ │ └── libvncserver_0.9.13.bb │ │ ├── libyui │ │ │ ├── libyui-ncurses │ │ │ │ └── 0001-Fix-the-error-of-can-t-find-header-file.patch │ │ │ ├── libyui-ncurses_4.1.1.bb │ │ │ ├── libyui │ │ │ │ ├── 0001-Fix-build-with-clang.patch │ │ │ │ └── 0001-Use-relative-install-paths-for-CMake.patch │ │ │ └── libyui_4.1.1.bb │ │ ├── lxdm │ │ │ ├── lxdm │ │ │ │ ├── 0001-greeter-set-visible-when-switch-to-input-user.patch │ │ │ │ ├── 0001-lxdm.conf.in-blacklist-root-for-release-images.patch │ │ │ │ ├── 0002-greeter-gdk.c-fix-typo.patch │ │ │ │ ├── 0002-let-autotools-create-lxdm.conf.patch │ │ │ │ ├── 0003-check-for-libexecinfo-providing-backtrace-APIs.patch │ │ │ │ ├── 0003-check-whether-password-expired-with-pam.patch │ │ │ │ ├── 0004-fix-css-under-gtk-3.20.patch │ │ │ │ ├── 0004-lxdm.c-add-function-to-change-password-with-pam.patch │ │ │ │ ├── 0005-ui.c-handle-password-expire-and-update-new-password.patch │ │ │ │ ├── 0006-themes-Industrial-add-info-label-in-ui.patch │ │ │ │ ├── 0007-greeter.c-support-to-update-expired-password.patch │ │ │ │ ├── 0008-greeter.c-show-information-on-gtk-label-info.patch │ │ │ │ ├── 0009-greeter.c-disallow-empty-new-password.patch │ │ │ │ ├── lxdm-pam │ │ │ │ ├── lxdm-pam-debug │ │ │ │ └── lxdm.conf │ │ │ └── lxdm_0.5.3.bb │ │ ├── numlockx │ │ │ └── numlockx_1.2.bb │ │ ├── openbox │ │ │ ├── files │ │ │ │ ├── 0001-Makefile.am-avoid-race-when-creating-autostart-direc.patch │ │ │ │ └── 0001-openbox-xdg-autostart-convert-to-python3.patch │ │ │ ├── obconf_git.bb │ │ │ └── openbox_3.6.1.bb │ │ ├── openjpeg │ │ │ ├── openjpeg │ │ │ │ ├── 0001-This-patch-fixed-include-dir-to-usr-include-.-Obviou.patch │ │ │ │ └── 0002-Do-not-ask-cmake-to-export-binaries-they-don-t-make-.patch │ │ │ └── openjpeg_2.4.0.bb │ │ ├── packagegroups │ │ │ └── packagegroup-fonts-truetype.bb │ │ ├── pango │ │ │ └── pangomm_2.42.1.bb │ │ ├── parallel-deqp-runner │ │ │ ├── parallel-deqp-runner │ │ │ │ └── 0001-meson.build-WORKAROUND-Remove-vulkan-dependency.patch │ │ │ └── parallel-deqp-runner_git.bb │ │ ├── qrencode │ │ │ └── qrencode_4.1.1.bb │ │ ├── renderdoc │ │ │ ├── renderdoc │ │ │ │ ├── 0001-Remove-glslang-pool_allocator-setAllocator.patch │ │ │ │ └── 0001-renderdoc-use-xxd-instead-of-cross-compiling-shim-bi.patch │ │ │ └── renderdoc_1.7.bb │ │ ├── spir │ │ │ ├── files │ │ │ │ ├── 0001-Add-install-PHONY-target-in-Makefile.patch │ │ │ │ ├── 0001-Avoid-pessimizing-std-move-3124.patch │ │ │ │ └── 0001-Respect-CMAKE_INSTALL_LIBDIR-in-installed-CMake-file.patch │ │ │ └── spirv-shader-generator_git.bb │ │ ├── stalonetray │ │ │ └── stalonetray_0.8.3.bb │ │ ├── suckless │ │ │ └── st_0.8.4.bb │ │ ├── surf │ │ │ ├── surf │ │ │ │ └── 0001-config.mk-Fix-compiler-and-linker.patch │ │ │ └── surf_2.0.bb │ │ ├── takao-fonts │ │ │ └── takao-fonts_003.03.01.bb │ │ ├── terminus-font │ │ │ └── terminus-font_4.49.1.bb │ │ ├── tesseract │ │ │ ├── tesseract-lang_4.1.0.bb │ │ │ ├── tesseract │ │ │ │ └── 0001-include-sys-time.h.patch │ │ │ └── tesseract_4.1.1.bb │ │ ├── tigervnc │ │ │ ├── files │ │ │ │ ├── 0001-tigervnc-remove-includedir.patch │ │ │ │ ├── 0002-do-not-build-tests-sub-directory.patch │ │ │ │ ├── 0003-add-missing-dynamic-library-to-FLTK_LIBRARIES.patch │ │ │ │ └── 0004-tigervnc-add-fPIC-option-to-COMPILE_FLAGS.patch │ │ │ └── tigervnc_1.10.1.bb │ │ ├── tslib │ │ │ ├── tslib │ │ │ │ ├── ts.conf │ │ │ │ └── tslib.sh │ │ │ └── tslib_1.22.bb │ │ ├── ttf-fonts │ │ │ ├── source-code-pro-fonts │ │ │ │ └── 44-source-code-pro-fonts-fontconfig.conf │ │ │ ├── source-code-pro-fonts_2.030_1.050.bb │ │ │ ├── source-han-sans-cn-fonts │ │ │ │ └── 44-source-han-sans-cn.conf │ │ │ ├── source-han-sans-cn-fonts_1.004.bb │ │ │ ├── source-han-sans-jp-fonts │ │ │ │ └── 44-source-han-sans-jp.conf │ │ │ ├── source-han-sans-jp-fonts_1.004.bb │ │ │ ├── source-han-sans-kr-fonts │ │ │ │ └── 44-source-han-sans-kr.conf │ │ │ ├── source-han-sans-kr-fonts_1.004.bb │ │ │ ├── source-han-sans-tw-fonts │ │ │ │ └── 44-source-han-sans-tw.conf │ │ │ ├── source-han-sans-tw-fonts_1.004.bb │ │ │ ├── ttf-abyssinica_2.000.bb │ │ │ ├── ttf-arphic-uming_20080216.bb │ │ │ ├── ttf-dejavu │ │ │ │ └── 30-dejavu-aliases.conf │ │ │ ├── ttf-dejavu_2.37.bb │ │ │ ├── ttf-droid_git.bb │ │ │ ├── ttf-gentium_1.02.bb │ │ │ ├── ttf-hunkyfonts_0.3.1.bb │ │ │ ├── ttf-inconsolata │ │ │ │ └── OFL.txt │ │ │ ├── ttf-inconsolata_20100526.bb │ │ │ ├── ttf-liberation-sans-narrow │ │ │ │ └── 30-0-liberation-sans-narrow.conf │ │ │ ├── ttf-liberation-sans-narrow_1.07.4.bb │ │ │ ├── ttf-liberation_0.2.bb │ │ │ ├── ttf-lklug_0.6-14.20090803cvs.fc24.bb │ │ │ ├── ttf-lohit_2.bb │ │ │ ├── ttf-mplus_027.bb │ │ │ ├── ttf-noto-emoji_20190815.bb │ │ │ ├── ttf-pt-sans_1.1.bb │ │ │ ├── ttf-roboto_2.138.bb │ │ │ ├── ttf-sazanami_20040629.bb │ │ │ ├── ttf-tlwg_0.6.1.bb │ │ │ ├── ttf-ubuntu-font-family_0.83.bb │ │ │ ├── ttf-vlgothic_20141206.bb │ │ │ ├── ttf-wqy-zenhei_0.9.45.bb │ │ │ └── ttf.inc │ │ ├── unclutter-xfixes │ │ │ ├── unclutter-xfixes │ │ │ │ └── 0001-build-use-autotools.patch │ │ │ └── unclutter-xfixes_1.5.bb │ │ ├── vdpau │ │ │ └── libvdpau_1.4.bb │ │ ├── vk-gl-cts │ │ │ ├── files │ │ │ │ ├── 0001-Do-not-error-on-uninitialized-warnings.patch │ │ │ │ ├── fix-clang-private-operator.patch │ │ │ │ └── fix-musl.patch │ │ │ ├── khronos-cts.inc │ │ │ ├── opengl-es-cts_3.2.6.1.bb │ │ │ └── vulkan-cts_1.2.3.2.bb │ │ ├── x11vnc │ │ │ ├── files │ │ │ │ └── starting-fix.patch │ │ │ └── x11vnc_0.9.16.bb │ │ ├── xcursorgen │ │ │ └── xcursorgen_1.0.7.bb │ │ ├── xdotool │ │ │ └── xdotool_1.20100416.2809.bb │ │ ├── xorg-app │ │ │ ├── bdftopcf_1.1.bb │ │ │ ├── iceauth_1.0.8.bb │ │ │ ├── sessreg │ │ │ │ └── 0001-Makefile.am-Error-Fix.patch │ │ │ ├── sessreg_1.1.2.bb │ │ │ ├── setxkbmap_1.3.2.bb │ │ │ ├── twm_1.0.11.bb │ │ │ ├── xclock_1.0.9.bb │ │ │ ├── xfontsel_1.0.6.bb │ │ │ ├── xgamma_1.0.6.bb │ │ │ ├── xkbevd_1.1.4.bb │ │ │ ├── xkbprint_1.0.5.bb │ │ │ ├── xkbutils_1.0.4.bb │ │ │ ├── xlsatoms_1.1.3.bb │ │ │ ├── xlsclients_1.1.4.bb │ │ │ ├── xlsfonts_1.0.6.bb │ │ │ ├── xmag_1.0.6.bb │ │ │ ├── xmessage_1.0.5.bb │ │ │ ├── xrdb_1.2.0.bb │ │ │ ├── xrefresh_1.0.6.bb │ │ │ ├── xsetmode_1.0.0.bb │ │ │ ├── xsetroot_1.1.2.bb │ │ │ ├── xstdcmap_1.0.4.bb │ │ │ ├── xterm │ │ │ │ └── 0001-Add-configure-time-check-for-setsid.patch │ │ │ ├── xterm_367.bb │ │ │ ├── xwd_1.0.7.bb │ │ │ └── xwud_1.0.5.bb │ │ ├── xorg-data │ │ │ ├── xbitmaps_1.1.2.bb │ │ │ └── xorg-data-common.inc │ │ ├── xorg-doc │ │ │ ├── xorg-doc-common.inc │ │ │ └── xorg-sgml-doctools_1.11.bb │ │ ├── xorg-driver │ │ │ ├── xf86-input-tslib │ │ │ │ └── 99-xf86-input-tslib.rules │ │ │ ├── xf86-input-tslib_0.0.7.bb │ │ │ ├── xf86-input-void_1.4.1.bb │ │ │ ├── xf86-video-armsoc_1.4.1.bb │ │ │ ├── xf86-video-ati │ │ │ │ └── 0001-Fix-link-failure-with-gcc-10.patch │ │ │ ├── xf86-video-ati_19.0.1.bb │ │ │ ├── xf86-video-mga │ │ │ │ └── checkfile.patch │ │ │ ├── xf86-video-mga_2.0.0.bb │ │ │ └── xf86-video-nouveau_1.0.16.bb │ │ ├── xorg-font │ │ │ ├── font-adobe-100dpi_1.0.3.bb │ │ │ ├── font-adobe-utopia-100dpi_1.0.4.bb │ │ │ ├── font-bh-100dpi_1.0.3.bb │ │ │ ├── font-bh-lucidatypewriter-100dpi_1.0.3.bb │ │ │ ├── font-bitstream-100dpi_1.0.3.bb │ │ │ ├── font-cursor-misc_1.0.3.bb │ │ │ ├── font-misc-misc_1.1.2.bb │ │ │ └── xorg-fonts-100dpi.bb │ │ ├── xorg-lib │ │ │ ├── liblbxutil-1.1.0 │ │ │ │ ├── 0001-lbx_zlib-Mark-declration-with-extern.patch │ │ │ │ └── mkg3states-1.1.patch │ │ │ ├── liblbxutil_1.1.0.bb │ │ │ ├── libxaw_1.0.14.bb │ │ │ ├── libxkbui_1.0.2.bb │ │ │ ├── libxpresent_1.0.0.bb │ │ │ └── xcb-util-cursor_0.1.3.bb │ │ ├── xscreensaver │ │ │ ├── files │ │ │ │ ├── fix-buildscripts.patch │ │ │ │ ├── tweak-app-defaults.patch │ │ │ │ └── xscreensaver.service │ │ │ └── xscreensaver_5.44.bb │ │ ├── xserver-common │ │ │ ├── xserver-common-1.34 │ │ │ │ ├── 0001-COPYING-add-GPLv2-license-file.patch │ │ │ │ ├── 0001-Don-t-install-Xsession-or-Xserver.patch │ │ │ │ ├── 0002-add-setdpi-Xinit.d-script.patch │ │ │ │ ├── 0006-add-support-for-etc-X11-xserver-system.patch │ │ │ │ ├── 0007-use-own-functions-file-instead-etc-init.d-functions.patch │ │ │ │ ├── 0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch │ │ │ │ ├── 0009-xserver-common-add-support-for-n900-alias-nokia_rx-5.patch │ │ │ │ ├── 0010-xserver-common-add-support-for-nexus-S-alias-herring.patch │ │ │ │ ├── 0011-xserver-common-add-support-for-nexus-one-alias-mahim.patch │ │ │ │ ├── 0012-xserver-common-add-support-for-gta04-alias-OpenPhoen.patch │ │ │ │ ├── 0013-xserver-common-add-support-for-tuna-alias-Galaxy-Nex.patch │ │ │ │ └── 0015-xserver-common-disable-TCP-connections.patch │ │ │ └── xserver-common_1.34.bb │ │ └── yad │ │ │ └── yad_6.0.bb │ ├── recipes-kernel │ │ ├── agent-proxy │ │ │ ├── agent-proxy_1.97.bb │ │ │ └── files │ │ │ │ └── 0001-Makefile-Add-LDFLAGS-variable.patch │ │ ├── bpftool │ │ │ └── bpftool.bb │ │ ├── broadcom-bt-firmware │ │ │ └── broadcom-bt-firmware_12.0.1.1105_p2.bb │ │ ├── cpupower │ │ │ └── cpupower.bb │ │ ├── crash │ │ │ ├── crash │ │ │ │ ├── 0001-cross_add_configure_option.patch │ │ │ │ ├── 0001-printk-add-support-for-lockless-ringbuffer.patch │ │ │ │ ├── 0002-crash-fix-build-error-unknown-type-name-gdb_fpregset.patch │ │ │ │ ├── 0002-printk-use-committed-finalized-state-values.patch │ │ │ │ ├── 0003-crash-detect-the-sysroot-s-glibc-header-file.patch │ │ │ │ ├── 7001force_define_architecture.patch │ │ │ │ ├── 7003cross_ranlib.patch │ │ │ │ ├── config-site.crash-7.0.9 │ │ │ │ ├── donnot-extract-gdb-during-do-compile.patch │ │ │ │ ├── gdb_build_jobs_and_not_write_crash_target.patch │ │ │ │ ├── remove-unrecognized-gcc-option-m32-for-mips.patch │ │ │ │ ├── sim-common-sim-arange-fix-extern-inline-handling.patch │ │ │ │ └── sim-ppc-drop-LIBS-from-psim-dependency.patch │ │ │ └── crash_7.2.9.bb │ │ ├── intel-speed-select │ │ │ └── intel-speed-select.bb │ │ ├── ipmitool │ │ │ ├── ipmitool │ │ │ │ ├── 0001-Migrate-to-openssl-1.1.patch │ │ │ │ ├── 0001-fru-Fix-buffer-overflow-in-ipmi_spd_print_fru.patch │ │ │ │ ├── 0001-fru-Fix-buffer-overflow-vulnerabilities.patch │ │ │ │ ├── 0001-hpmfwupg-move-variable-definition-to-.c-file.patch │ │ │ │ ├── 0002-session-Fix-buffer-overflow-in-ipmi_get_session_info.patch │ │ │ │ ├── 0003-channel-Fix-buffer-overflow.patch │ │ │ │ ├── 0004-lanp-Fix-buffer-overflows-in-get_lan_param_select.patch │ │ │ │ └── 0005-fru-sdr-Fix-id_string-buffer-overflows.patch │ │ │ └── ipmitool_1.8.18.bb │ │ ├── ipmiutil │ │ │ ├── ipmiutil │ │ │ │ ├── 0001-Prevent-access-times-from-changing-resulting-gzip-md.patch │ │ │ │ └── fix_systemd_path.patch │ │ │ └── ipmiutil_3.1.5.bb │ │ ├── kernel-selftest │ │ │ ├── kernel-selftest.bb │ │ │ └── kernel-selftest │ │ │ │ ├── COPYING │ │ │ │ ├── run-ptest │ │ │ │ └── userfaultfd.patch │ │ ├── kpatch │ │ │ ├── kpatch.inc │ │ │ ├── kpatch │ │ │ │ ├── 0001-kpatch-build-add-cross-compilation-support.patch │ │ │ │ └── 0002-kpatch-build-allow-overriding-of-distro-name.patch │ │ │ └── kpatch_git.bb │ │ ├── libbpf │ │ │ ├── libbpf │ │ │ │ └── 0001-install-don-t-preserve-file-owner.patch │ │ │ └── libbpf_0.3.bb │ │ ├── libpfm │ │ │ ├── libpfm4 │ │ │ │ └── 0001-Include-poll.h-instead-of-sys-poll.h.patch │ │ │ └── libpfm4_4.10.1.bb │ │ ├── linux │ │ │ └── linux.inc │ │ ├── makedumpfile │ │ │ ├── makedumpfile │ │ │ │ ├── 0001-makedumpfile-replace-hardcode-CFLAGS.patch │ │ │ │ └── 0002-mem_section-Support-only-46-bit-for-MAX_PHYSMEM_BITS.patch │ │ │ └── makedumpfile_1.6.8.bb │ │ ├── minicoredumper │ │ │ ├── files │ │ │ │ ├── 0001-minicoredumper-Initialize-pointer-to-config-struct-t.patch │ │ │ │ ├── minicoredumper.init │ │ │ │ └── minicoredumper.service │ │ │ └── minicoredumper_2.0.1.bb │ │ ├── oprofile │ │ │ ├── oprofile │ │ │ │ ├── 0001-Fix-build-with-musl.patch │ │ │ │ ├── 0002-Fix-configure-when-bin-sh-is-not-bash.patch │ │ │ │ ├── 0003-Define-the-C-preprocessor-variable-to-improve-reprod.patch │ │ │ │ ├── 0004-Use-BUILD_DATE-to-improve-reproducibility.patch │ │ │ │ ├── 0005-Add-rmb-definition-for-NIOS2-architecture.patch │ │ │ │ ├── 0006-replace-sym_iterator-0-with-sym_iterator.patch │ │ │ │ ├── 0007-oprofile-doesn-t-want-GNU-levels-of-automake-strictn.patch │ │ │ │ ├── 0008-include-linux-limits.h-for-MAX_INPUT.patch │ │ │ │ ├── 0009-Prevent-running-check-tests-on-host-if-cross-compili.patch │ │ │ │ ├── 0010-oprofile-Determine-the-root-home-directory-dynamical.patch │ │ │ │ ├── acinclude.m4 │ │ │ │ └── run-ptest │ │ │ └── oprofile_1.4.0.bb │ │ ├── pm-graph │ │ │ ├── pm-graph │ │ │ │ ├── 0001-Makefile-fix-multilib-build-failure.patch │ │ │ │ ├── 0001-sleepgraph-add-support-for-RT-kernel-ftrace-flags.patch │ │ │ │ └── 0001-sleepgraph.py-use-python3.patch │ │ │ └── pm-graph_5.5.bb │ │ ├── spidev-test │ │ │ └── spidev-test.bb │ │ ├── trace-cmd │ │ │ ├── files │ │ │ │ └── 0001-trace-cmd-make-it-build-with-musl.patch │ │ │ └── trace-cmd_2.9.1.bb │ │ └── turbostat │ │ │ ├── turbostat │ │ │ └── COPYING │ │ │ └── turbostat_3.4.bb │ ├── recipes-multimedia │ │ ├── alsa │ │ │ └── alsa-oss_1.1.8.bb │ │ ├── audiofile │ │ │ ├── audiofile_0.3.6.bb │ │ │ └── files │ │ │ │ ├── 0001-fix-negative-shift-constants.patch │ │ │ │ ├── 0002-fix-build-on-gcc6.patch │ │ │ │ └── 0003-fix-CVE-2015-7747.patch │ │ ├── cdrkit │ │ │ ├── cdrkit_1.1.11.bb │ │ │ └── files │ │ │ │ ├── 0001-define-__THROW-to-avoid-build-issue-with-musl.patch │ │ │ │ ├── 0001-do-not-create-a-run-test-to-determine-order-of-bitfi.patch │ │ │ │ ├── 0001-genisoimage-Add-missing-extern-definition.patch │ │ │ │ ├── 0001-genisoimage-Fix-fprintf-format-errors.patch │ │ │ │ └── 0002-Do-not-use-rcmd-on-build-with-musl.patch │ │ ├── faad2 │ │ │ └── faad2_2.8.8.bb │ │ ├── id3lib │ │ │ ├── id3lib │ │ │ │ └── acdefine.patch │ │ │ └── id3lib_3.8.3.bb │ │ ├── jack │ │ │ ├── a2jmidid │ │ │ │ └── riscv_ucontext.patch │ │ │ ├── a2jmidid_9.bb │ │ │ ├── jack │ │ │ │ └── 0001-example-clients-Use-c-compiler-for-jack_simdtests.patch │ │ │ └── jack_1.19.17.bb │ │ ├── libass │ │ │ └── libass_0.14.0.bb │ │ ├── libburn │ │ │ └── libburn_1.5.4.bb │ │ ├── libcdio │ │ │ ├── libcdio-paranoia_10.2+0.93+1.bb │ │ │ └── libcdio_2.1.0.bb │ │ ├── libdvdread │ │ │ └── libdvdread_6.1.1.bb │ │ ├── libmad │ │ │ ├── libmad │ │ │ │ ├── 0004-Remove-clang-unsupported-compiler-flags.patch │ │ │ │ ├── add-pkgconfig.patch │ │ │ │ ├── automake-foreign.patch │ │ │ │ ├── fix_for_mips_with_gcc-4.5.0.patch │ │ │ │ ├── no-force-mem.patch │ │ │ │ └── obsolete_automake_macros.patch │ │ │ └── libmad_0.15.1b.bb │ │ ├── libmms │ │ │ └── libmms_0.6.4.bb │ │ ├── libmodplug │ │ │ └── libmodplug_0.8.9.0.bb │ │ ├── libopus │ │ │ └── libopus_1.3.1.bb │ │ ├── libopusenc │ │ │ └── libopusenc_0.2.1.bb │ │ ├── live555 │ │ │ ├── live555 │ │ │ │ └── config.linux-cross │ │ │ └── live555_20210406.bb │ │ ├── mikmod │ │ │ └── libmikmod_3.3.11.1.bb │ │ ├── mplayer │ │ │ └── mpv_0.32.0.bb │ │ ├── opus-tools │ │ │ └── opus-tools_0.1.8.bb │ │ ├── pulseaudio │ │ │ └── pavucontrol_4.0.bb │ │ ├── sound-themes │ │ │ └── sound-theme-freedesktop_0.8.bb │ │ ├── v4l2apps │ │ │ ├── v4l-utils │ │ │ │ ├── 0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch │ │ │ │ ├── 0002-contrib-test-Link-mc_nextgen_test-with-libargp-if-ne.patch │ │ │ │ ├── 0007-Do-not-use-getsubopt.patch │ │ │ │ ├── export-mediactl-headers.patch │ │ │ │ └── mediactl-pkgconfig.patch │ │ │ ├── v4l-utils_1.20.0.bb │ │ │ ├── yavta │ │ │ │ └── 0001-Add-stdout-mode-to-allow-streaming-over-the-network-.patch │ │ │ └── yavta_git.bb │ │ ├── wavpack │ │ │ └── wavpack_4.60.1.bb │ │ ├── webm │ │ │ ├── libvpx │ │ │ │ └── libvpx-configure-support-blank-prefix.patch │ │ │ └── libvpx_1.8.2.bb │ │ ├── xpext │ │ │ ├── xpext │ │ │ │ └── auxdir.patch │ │ │ └── xpext_1.0-5.bb │ │ └── xsp │ │ │ ├── xsp │ │ │ └── xsp-fix-pc.patch │ │ │ └── xsp_1.0.0-8.bb │ ├── recipes-navigation │ │ ├── geoclue │ │ │ └── geoclue_2.5.7.bb │ │ ├── geos │ │ │ ├── files │ │ │ │ └── geos-config-Add-includedir-variable.patch │ │ │ ├── geos.inc │ │ │ └── geos_3.4.3.bb │ │ ├── gpsd │ │ │ ├── gpsd-machine-conf_1.0.bb │ │ │ ├── gpsd │ │ │ │ ├── 0001-Revert-SConstruct-Add-test-for-sizeof-time_t-result-.patch │ │ │ │ ├── 0001-SConstruct-prefix-includepy-with-sysroot-and-drop-sy.patch │ │ │ │ ├── 0001-gpsd-dbusexport.c-Fix-broken-d-bus-message-time.patch │ │ │ │ └── gpsd.init │ │ │ └── gpsd_3.20.bb │ │ ├── libspatialite │ │ │ ├── libspatialite │ │ │ │ └── geos-config.patch │ │ │ └── libspatialite_4.3.0a.bb │ │ ├── orrery │ │ │ ├── orrery │ │ │ │ ├── 0001-orrery-Fix-sprintf-format.patch │ │ │ │ ├── orrery.png │ │ │ │ └── use.GdkPixbuf.patch │ │ │ └── orrery_2.7.bb │ │ └── proj │ │ │ └── proj_7.0.1.bb │ ├── recipes-printing │ │ ├── cups │ │ │ ├── cups-filters.inc │ │ │ └── cups-filters_1.27.2.bb │ │ └── qpdf │ │ │ └── qpdf_10.2.0.bb │ ├── recipes-security │ │ ├── keyutils │ │ │ ├── files │ │ │ │ ├── fix_library_install_path.patch │ │ │ │ ├── keyutils-fix-error-report-by-adding-default-message.patch │ │ │ │ ├── keyutils-test-fix-output-format.patch │ │ │ │ └── run-ptest │ │ │ └── keyutils_1.6.1.bb │ │ ├── nmap │ │ │ ├── files │ │ │ │ ├── 0001-Include-time.h-header-to-pass-clang-compilation.patch │ │ │ │ ├── 0001-Make-ndiff-support-python3.patch │ │ │ │ ├── 0001-configure.ac-make-ndiff-depend-on-python3.patch │ │ │ │ ├── 0002-Fix-building-with-libc.patch │ │ │ │ ├── nmap-redefine-the-python-library-dir.patch │ │ │ │ └── nmap-replace-shtool-mkdir-with-coreutils-mkdir-command.patch │ │ │ └── nmap_7.80.bb │ │ ├── passwdqc │ │ │ ├── passwdqc │ │ │ │ └── makefile-add-ldflags.patch │ │ │ └── passwdqc_1.3.1.bb │ │ ├── softhsm │ │ │ └── softhsm_2.6.1.bb │ │ └── tomoyo-tools │ │ │ └── tomoyo-tools_2.5.0.bb │ ├── recipes-shells │ │ ├── dash │ │ │ └── dash_0.5.11.3.bb │ │ ├── mksh │ │ │ └── mksh_59.bb │ │ ├── tcsh │ │ │ ├── tcsh │ │ │ │ ├── 0001-Enable-system-malloc-on-all-linux.patch │ │ │ │ └── 0002-Add-debian-csh-scripts.patch │ │ │ └── tcsh_6.22.03.bb │ │ └── zsh │ │ │ └── zsh_5.4.2.bb │ ├── recipes-support │ │ ├── ace-cloud-editor │ │ │ └── ace-cloud-editor_git.bb │ │ ├── anthy │ │ │ ├── anthy │ │ │ │ ├── 2ch_t.patch │ │ │ │ ├── native-helpers.patch │ │ │ │ ├── not_build_elc.patch │ │ │ │ └── target-helpers.patch │ │ │ └── anthy_9100h.bb │ │ ├── asio │ │ │ └── asio_1.18.1.bb │ │ ├── atop │ │ │ ├── atop │ │ │ │ ├── 0001-atop.daily-atop.init-atop-pm.sh-Avoid-using-bash.patch │ │ │ │ ├── fix-permissions.patch │ │ │ │ ├── sysvinit-implement-status.patch │ │ │ │ ├── volatiles.99_atop │ │ │ │ └── volatiles.atop.conf │ │ │ └── atop_2.4.0.bb │ │ ├── augeas │ │ │ ├── augeas.inc │ │ │ ├── augeas │ │ │ │ └── sepbuildfix.patch │ │ │ └── augeas_1.12.0.bb │ │ ├── avro │ │ │ ├── avro-c │ │ │ │ └── 0001-cmake-Use-GNUInstallDirs-instead-of-hard-coded-paths.patch │ │ │ └── avro-c_1.9.2.bb │ │ ├── bdwgc │ │ │ └── bdwgc_8.0.4.bb │ │ ├── c-ares │ │ │ ├── c-ares │ │ │ │ ├── 0001-fix-configure-error-mv-libcares.pc.cmakein-to-libcar.patch │ │ │ │ └── cmake-install-libcares.pc.patch │ │ │ └── c-ares_1.16.1.bb │ │ ├── c-periphery │ │ │ └── c-periphery_2.3.1.bb │ │ ├── canonical-multitouch │ │ │ ├── frame │ │ │ │ └── pessimizing-move.patch │ │ │ ├── frame_2.5.0.bb │ │ │ ├── geis │ │ │ │ ├── 0001-libgeis-Compare-the-first-character-of-string-to-nul.patch │ │ │ │ └── fix-indentation-for-gcc6.patch │ │ │ ├── geis_2.2.17.bb │ │ │ └── grail_3.1.1.bb │ │ ├── ccid │ │ │ ├── ccid │ │ │ │ ├── 0001-Add-build-rule-for-README.patch │ │ │ │ └── no-dep-on-libfl.patch │ │ │ └── ccid_1.4.33.bb │ │ ├── ceres-solver │ │ │ └── ceres-solver_2.0.0.bb │ │ ├── ckermit │ │ │ └── ckermit_302.bb │ │ ├── cli11 │ │ │ └── cli11_1.9.1.bb │ │ ├── cmark │ │ │ └── cmark_git.bb │ │ ├── colord │ │ │ ├── colord-native.bb │ │ │ ├── colord-native │ │ │ │ ├── 0001-Move-the-function-cd_icc_create_from_edid-to-avoid-u.patch │ │ │ │ └── Makefile │ │ │ ├── colord.bb │ │ │ ├── colord.inc │ │ │ └── colord │ │ │ │ └── 0001-Run-native-cd_idt8-cd_create_profile.patch │ │ ├── consolation │ │ │ └── consolation_0.0.8.bb │ │ ├── cpp-netlib │ │ │ └── cpp-netlib_git.bb │ │ ├── cpprest │ │ │ ├── cpprest │ │ │ │ ├── disable-float-tests.patch │ │ │ │ └── disable-outside-tests.patch │ │ │ └── cpprest_2.10.18.bb │ │ ├── ctapi-common │ │ │ └── ctapi-common_1.1-14.bb │ │ ├── daemonize │ │ │ └── daemonize_git.bb │ │ ├── daemontools │ │ │ ├── daemontools │ │ │ │ ├── 0001-daemontools-Fix-QA-Issue.patch │ │ │ │ ├── 0001-error.h-include-errno.h-instead-of-extern-int.diff │ │ │ │ ├── 0002-supervise.c-.-supervise-may-be-a-symlink-if-it-s-da.diff │ │ │ │ └── cross-compile.patch │ │ │ └── daemontools_0.76.bb │ │ ├── devmem2 │ │ │ ├── devmem2.bb │ │ │ └── devmem2 │ │ │ │ ├── 0001-devmem.c-ensure-word-is-32-bit-and-add-support-for-6.patch │ │ │ │ └── devmem2-fixups-2.patch │ │ ├── dfu-util │ │ │ ├── dfu-util-native_0.10.bb │ │ │ └── dfu-util_0.10.bb │ │ ├── dhex │ │ │ └── dhex_0.69.bb │ │ ├── digitemp │ │ │ └── digitemp_3.7.2.bb │ │ ├── dstat │ │ │ ├── dstat │ │ │ │ └── 0001-change-dstat-to-python3.patch │ │ │ └── dstat_0.7.4.bb │ │ ├── eject │ │ │ ├── eject │ │ │ │ ├── 0001-eject-Include-sys-sysmacros.h-for-major-minor.patch │ │ │ │ ├── eject-2.1.1-verbose.patch │ │ │ │ ├── eject-2.1.5-error-return.patch │ │ │ │ ├── eject-2.1.5-spaces.patch │ │ │ │ └── eject-timeout.patch │ │ │ └── eject_2.1.5.bb │ │ ├── emacs │ │ │ ├── emacs_27.2.bb │ │ │ └── files │ │ │ │ └── usemake-docfile-native.patch │ │ ├── enca │ │ │ ├── enca │ │ │ │ ├── dont-run-tests.patch │ │ │ │ ├── libenca-003-iconv.patch │ │ │ │ └── makefile-remove-tools.patch │ │ │ └── enca_1.19.bb │ │ ├── epeg │ │ │ └── epeg_git.bb │ │ ├── espeak │ │ │ ├── espeak_1.48.04.bb │ │ │ └── files │ │ │ │ ├── 0001-Fix-build-of-shared-library-on-architectures-needing.patch │ │ │ │ └── 0002-tr_languages-cast-string_ordinal-init-values.patch │ │ ├── exiv2 │ │ │ ├── exiv2 │ │ │ │ └── 0001-Use-compiler-fcf-protection-only-if-compiler-arch-su.patch │ │ │ └── exiv2_0.27.3.bb │ │ ├── farsight │ │ │ └── libnice_0.1.18.bb │ │ ├── fbset │ │ │ ├── fbset-2.1 │ │ │ │ ├── fbset-2.1-fix-makefile-dep.patch │ │ │ │ └── makefile.patch │ │ │ ├── fbset-modes.bb │ │ │ ├── fbset-modes │ │ │ │ ├── fb.modes │ │ │ │ ├── om-gta01 │ │ │ │ │ └── fb.modes │ │ │ │ ├── omap3-pandora │ │ │ │ │ └── fb.modes │ │ │ │ ├── qemuarm │ │ │ │ │ └── fb.modes │ │ │ │ └── qemumips │ │ │ │ │ └── fb.modes │ │ │ ├── fbset │ │ │ │ └── 0001-fbset-including-asm-types.h-is-needed-on-all-linux-s.patch │ │ │ └── fbset_2.1.bb │ │ ├── fftw │ │ │ ├── fftw │ │ │ │ ├── 0001-NEON-autodetection-segfaults-assume-neon-present.patch │ │ │ │ ├── club-libtool.patch │ │ │ │ ├── install-bench.patch │ │ │ │ └── run-ptest │ │ │ └── fftw_3.3.8.bb │ │ ├── fltk │ │ │ ├── fltk-native.bb │ │ │ ├── fltk.bb │ │ │ ├── fltk.inc │ │ │ └── fltk │ │ │ │ ├── 0001-Fl_Preferences.cxx-do-not-use-dlopen-in-case-glibc-s.patch │ │ │ │ ├── 0002-always-build-fluid-and-export-pointers.patch │ │ │ │ ├── 0003-CMake-build-Force-shared-libs-with-unsuffixed-names.patch │ │ │ │ ├── 0004-Fix-build-error-when-enable-package-config-examples.patch │ │ │ │ └── disable_test.patch │ │ ├── fmt │ │ │ └── fmt_7.1.3.bb │ │ ├── freerdp │ │ │ ├── freerdp │ │ │ │ └── winpr-makecert-Build-with-install-RPATH.patch │ │ │ └── freerdp_2.3.0.bb │ │ ├── function2 │ │ │ └── function2_4.1.0.bb │ │ ├── gd │ │ │ └── gd_2.3.2.bb │ │ ├── gengetopt │ │ │ └── gengetopt_2.23.bb │ │ ├── gflags │ │ │ └── gflags_2.2.2.bb │ │ ├── glog │ │ │ ├── glog │ │ │ │ ├── 0001-Find-Libunwind-during-configure.patch │ │ │ │ └── libexecinfo.patch │ │ │ └── glog_0.4.0.bb │ │ ├── gnulib │ │ │ └── gnulib_2018-03-07.03.bb │ │ ├── gperftools │ │ │ ├── gperftools │ │ │ │ ├── 0001-Support-Atomic-ops-on-clang.patch │ │ │ │ ├── 0001-disbale-heap-checkers-and-debug-allocator-on-musl.patch │ │ │ │ ├── 0001-fix-build-with-musl-libc.patch │ │ │ │ ├── disable_libunwind_aarch64.patch │ │ │ │ ├── ppc-musl.patch │ │ │ │ └── sgidef.patch │ │ │ └── gperftools_2.9.1.bb │ │ ├── gpm │ │ │ ├── gpm │ │ │ │ ├── gpm.service.in │ │ │ │ └── init │ │ │ └── gpm_git.bb │ │ ├── gradm │ │ │ ├── gradm │ │ │ │ ├── 0001-Makefile-Append-instead-of-overriding-LDFLAGS.patch │ │ │ │ └── 0001-Makefile-remove-strip.patch │ │ │ └── gradm_3.1-201903191516.bb │ │ ├── gsl │ │ │ ├── gsl.inc │ │ │ └── gsl_2.6.bb │ │ ├── gsoap │ │ │ └── gsoap_2.8.106.bb │ │ ├── hddtemp │ │ │ ├── hddtemp │ │ │ │ ├── 0001-backtrace-Replace-struct-ucontext-with-ucontext_t.patch │ │ │ │ ├── 0001-configure.ac-Rename-to-configure.ac-and-use-external.patch │ │ │ │ ├── hddtemp-0.3-beta15-autodetect-717479.patch │ │ │ │ ├── hddtemp-no-nls-support.patch │ │ │ │ ├── hddtemp.db │ │ │ │ ├── hddtemp_0.3-beta15-52.diff │ │ │ │ └── init │ │ │ └── hddtemp_0.3-beta15.bb │ │ ├── hdf5 │ │ │ ├── files │ │ │ │ ├── 0001-cross-compiling-support.patch │ │ │ │ ├── 0002-Remove-suffix-shared-from-shared-library-name.patch │ │ │ │ ├── H5Tinit-32.c │ │ │ │ ├── H5Tinit-64.c │ │ │ │ └── H5lib_settings.c │ │ │ └── hdf5_1.8.21.bb │ │ ├── hidapi │ │ │ ├── hidapi │ │ │ │ └── 0001-configure.ac-remove-duplicate-AC_CONFIG_MACRO_DIR-22.patch │ │ │ └── hidapi_git.bb │ │ ├── htop │ │ │ ├── files │ │ │ │ └── 0001-Use-pkg-config.patch │ │ │ └── htop_3.0.5.bb │ │ ├── hunspell │ │ │ ├── hunspell-dictionaries.bb │ │ │ └── hunspell_1.7.0.bb │ │ ├── hwdata │ │ │ └── hwdata_git.bb │ │ ├── iksemel │ │ │ ├── iksemel │ │ │ │ ├── avoid-obsolete-gnutls-apis.patch │ │ │ │ └── fix-configure-option-parsing.patch │ │ │ └── iksemel_1.5.bb │ │ ├── imagemagick │ │ │ └── imagemagick_7.0.10.bb │ │ ├── imapfilter │ │ │ ├── imapfilter │ │ │ │ └── ldflags.patch │ │ │ └── imapfilter_2.7.5.bb │ │ ├── inih │ │ │ ├── files │ │ │ │ └── 0001-include-install-header-files-without-prefix-dir-inih.patch │ │ │ └── libinih_git.bb │ │ ├── iniparser │ │ │ ├── iniparser │ │ │ │ └── Add-CMake-support.patch │ │ │ └── iniparser_4.1.bb │ │ ├── inotify-tools │ │ │ └── inotify-tools_git.bb │ │ ├── joe │ │ │ └── joe_4.6.bb │ │ ├── lcms │ │ │ └── lcms_2.12.bb │ │ ├── lcov │ │ │ ├── files │ │ │ │ ├── 0001-geninfo-Add-intermediate-text-format-support.patch │ │ │ │ └── 0002-geninfo-Add-intermediate-JSON-format-support.patch │ │ │ └── lcov_1.14.bb │ │ ├── libatasmart │ │ │ ├── files │ │ │ │ └── 0001-Makefile.am-add-CFLAGS-and-LDFLAGS-definiton.patch │ │ │ └── libatasmart_0.19.bb │ │ ├── libb64 │ │ │ ├── libb64 │ │ │ │ ├── 0001-example-Do-not-run-the-tests.patch │ │ │ │ ├── 0002-use-BUFSIZ-as-buffer-size.patch │ │ │ │ ├── 0003-fix-integer-overflows.patch │ │ │ │ ├── 0004-Fix-off-by-one-error.patch │ │ │ │ ├── 0005-make-overriding-CFLAGS-possible.patch │ │ │ │ ├── 0006-do-not-export-the-CHARS_PER_LINE-variable.patch │ │ │ │ └── 0007-initialize-encoder-decoder-state-in-the-constructors.patch │ │ │ └── libb64_1.2.1.bb │ │ ├── libbytesize │ │ │ └── libbytesize_2.4.bb │ │ ├── libcanberra │ │ │ ├── files │ │ │ │ ├── 0001-build-gtk-and-gtk3-version-for-canberra_gtk_play.patch │ │ │ │ └── 0001-gtk-Don-t-assume-all-GdkDisplays-are-GdkX11Displays-.patch │ │ │ └── libcanberra_0.30.bb │ │ ├── libcereal │ │ │ └── libcereal_1.3.0.bb │ │ ├── libcppkafka │ │ │ └── libcppkafka_git.bb │ │ ├── libcyusbserial │ │ │ └── libcyusbserial_git.bb │ │ ├── libee │ │ │ ├── libee.inc │ │ │ ├── libee │ │ │ │ ├── ezapi1.sh │ │ │ │ ├── libee-parallel-make.patch │ │ │ │ └── run-ptest │ │ │ └── libee_0.4.1.bb │ │ ├── libeigen │ │ │ └── libeigen_3.3.7.bb │ │ ├── libestr │ │ │ └── libestr_0.1.11.bb │ │ ├── libfann │ │ │ └── libfann_git.bb │ │ ├── libftdi │ │ │ └── libftdi_1.4.bb │ │ ├── libgpiod │ │ │ ├── files │ │ │ │ └── run-ptest │ │ │ └── libgpiod_1.6.3.bb │ │ ├── libgusb │ │ │ └── libgusb_0.3.5.bb │ │ ├── libharu │ │ │ ├── libharu │ │ │ │ ├── 0001-Install-static-lib-into-var-libdir-rather-than-hardc.patch │ │ │ │ └── libharu-RELEASE_2_3_0_cmake.patch │ │ │ └── libharu_2.3.0.bb │ │ ├── libiio │ │ │ └── libiio_git.bb │ │ ├── libjs │ │ │ ├── libjs-jquery_1.7.2.bb │ │ │ └── libjs-sizzle_1.10.18.bb │ │ ├── liblinebreak │ │ │ └── liblinebreak_1.2.bb │ │ ├── libmanette │ │ │ └── libmanette_0.2.6.bb │ │ ├── libmicrohttpd │ │ │ └── libmicrohttpd_0.9.72.bb │ │ ├── libmimetic │ │ │ ├── libmimetic │ │ │ │ ├── 0001-libmimetic-Removing-test-directory-from-the-Makefile.patch │ │ │ │ └── 0001-mimetic-Check-for-MMAP_FAILED-return-from-mmap.patch │ │ │ └── libmimetic_0.9.8.bb │ │ ├── libmxml │ │ │ └── libmxml_3.1.bb │ │ ├── liboauth │ │ │ ├── liboauth │ │ │ │ └── 0001-Support-OpenSSL-1.1.0.patch │ │ │ └── liboauth_1.0.3.bb │ │ ├── libol │ │ │ ├── libol │ │ │ │ └── configure.patch │ │ │ └── libol_0.3.18.bb │ │ ├── liboop │ │ │ ├── liboop │ │ │ │ └── tcl_dev.patch │ │ │ └── liboop_1.0.1.bb │ │ ├── libp11 │ │ │ └── libp11_0.4.11.bb │ │ ├── libraw1394 │ │ │ └── libraw1394_2.1.2.bb │ │ ├── librdkafka │ │ │ ├── librdkafka │ │ │ │ └── 0001_fix_absolute_path_usage.patch │ │ │ └── librdkafka_1.6.1.bb │ │ ├── librsync │ │ │ └── librsync_2.3.1.bb │ │ ├── libsmi │ │ │ ├── libsmi │ │ │ │ ├── libsmi-fix-the-test-dump-files.patch │ │ │ │ └── smi.conf │ │ │ └── libsmi_0.5.0.bb │ │ ├── libsoc │ │ │ └── libsoc_0.8.2.bb │ │ ├── libssh │ │ │ └── libssh_0.8.9.bb │ │ ├── libtar │ │ │ ├── files │ │ │ │ ├── 0002-Do-not-strip-libtar.patch │ │ │ │ └── fix_libtool_sysroot.patch │ │ │ └── libtar_1.2.20.bb │ │ ├── libteam │ │ │ ├── libteam │ │ │ │ ├── 0001-include-sys-select.h-for-fd_set-definition.patch │ │ │ │ ├── 0001-team_basic_test.py-disable-RedHat-specific-test.patch │ │ │ │ ├── 0001-team_basic_test.py-use-python3-interpreter.patch │ │ │ │ ├── 0002-teamd-Re-adjust-include-header-order.patch │ │ │ │ └── run-ptest │ │ │ └── libteam_1.31.bb │ │ ├── libtinyxml │ │ │ ├── libtinyxml │ │ │ │ ├── enforce-use-stl.patch │ │ │ │ └── entity-encoding.patch │ │ │ └── libtinyxml_2.6.2.bb │ │ ├── libtinyxml2 │ │ │ └── libtinyxml2_8.0.0.bb │ │ ├── liburing │ │ │ ├── liburing │ │ │ │ ├── 0001-do-not-build-examples.patch │ │ │ │ └── 0001-test-Fix-build-on-32bit-architectures-with-6bit-time.patch │ │ │ └── liburing_0.7.bb │ │ ├── libusb │ │ │ ├── libusb-compat │ │ │ │ └── 0001-usb.h-Include-sys-types.h.patch │ │ │ └── libusb-compat_0.1.7.bb │ │ ├── libusbg │ │ │ ├── libusbg │ │ │ │ └── 0001-Fix-out-of-tree-builds.patch │ │ │ └── libusbg_git.bb │ │ ├── libusbgx │ │ │ ├── libusbgx-config.bb │ │ │ ├── libusbgx-config │ │ │ │ └── usbgx.default │ │ │ ├── libusbgx │ │ │ │ ├── gadget-start │ │ │ │ ├── usbgx.initd │ │ │ │ └── usbgx.service │ │ │ └── libusbgx_git.bb │ │ ├── libutempter │ │ │ ├── libutempter.bb │ │ │ └── libutempter │ │ │ │ ├── 0001-Fix-macro-error.patch │ │ │ │ ├── 0002-Proper-macro-path-generation.patch │ │ │ │ └── libutempter-remove-glibc-assumption.patch │ │ ├── links │ │ │ ├── files │ │ │ │ ├── ac-prog-cxx.patch │ │ │ │ └── links2.desktop │ │ │ ├── links-x11_2.22.bb │ │ │ ├── links.inc │ │ │ └── links_2.22.bb │ │ ├── lio-utils │ │ │ ├── lio-utils │ │ │ │ └── 0001-Makefiles-Respect-environment-variables-and-add-LDFL.patch │ │ │ └── lio-utils_4.1.bb │ │ ├── lockdev │ │ │ ├── lockdev │ │ │ │ ├── build.patch │ │ │ │ └── cross_compile.patch │ │ │ └── lockdev_1.0.3.bb │ │ ├── log4c │ │ │ ├── log4c │ │ │ │ ├── 0001-Use-the-API-properly-in-the-example-format-security-.patch │ │ │ │ └── fix_configure_with-expat.patch │ │ │ └── log4c_1.2.4.bb │ │ ├── log4cpp │ │ │ ├── files │ │ │ │ └── fix-pc.patch │ │ │ └── log4cpp_1.1.3.bb │ │ ├── logwarn │ │ │ └── logwarn_1.0.14.bb │ │ ├── lvm2 │ │ │ ├── files │ │ │ │ ├── 0001-Avoid-bashisms-in-init-scripts.patch │ │ │ │ ├── 0001-implement-libc-specific-reopen_stream.patch │ │ │ │ ├── 0002-Guard-use-of-mallinfo-with-__GLIBC__.patch │ │ │ │ ├── 0004-tweak-MODPROBE_CMD-for-cross-compile.patch │ │ │ │ ├── 0005-do-not-build-manual.patch │ │ │ │ ├── 0006-start-lvm2-monitor.service-after-tmp.mount.patch │ │ │ │ ├── lvm.conf │ │ │ │ └── reproducible-build.patch │ │ │ ├── libdevmapper_2.03.11.bb │ │ │ ├── lvm2.inc │ │ │ ├── lvm2 │ │ │ │ └── 0001-fix-command-bin-findmnt-bin-lsblk-bin-sort-not-found.patch │ │ │ └── lvm2_2.03.11.bb │ │ ├── mailcap │ │ │ └── mailcap_2.1.52.bb │ │ ├── mbuffer │ │ │ └── mbuffer_20140310.bb │ │ ├── mcelog │ │ │ ├── mce-inject_git.bb │ │ │ ├── mce-test │ │ │ │ ├── 0001-gcov_merge.py-scov_merge.py-switch-to-python3.patch │ │ │ │ └── makefile-remove-ldflags.patch │ │ │ ├── mce-test_git.bb │ │ │ ├── mcelog │ │ │ │ ├── 0001-test-avoid-the-pfa-test-hang.patch │ │ │ │ └── run-ptest │ │ │ └── mcelog_175.bb │ │ ├── mg │ │ │ ├── mg │ │ │ │ ├── 0001-Undefine-REGEX-for-musl-based-systems.patch │ │ │ │ ├── 0001-fileio-Include-sys-param.h-for-MAXNAMLEN.patch │ │ │ │ └── 0002-fileio-Define-DEFFILEMODE-if-platform-is-missing.patch │ │ │ └── mg_20210314.bb │ │ ├── mime-support │ │ │ └── mime-support_3.48.bb │ │ ├── minini │ │ │ └── minini_1.2.b.bb │ │ ├── monit │ │ │ ├── monit │ │ │ │ ├── monit │ │ │ │ └── monitrc │ │ │ └── monit_5.27.2.bb │ │ ├── mscgen │ │ │ └── mscgen_0.20.bb │ │ ├── multipath-tools │ │ │ ├── files │ │ │ │ ├── 0001-add-explicit-dependency-on-libraries.patch │ │ │ │ ├── 0001-fix-boolean-value-with-json-c-0.14.patch │ │ │ │ ├── 0001-fix-bug-of-do_compile-and-do_install.patch │ │ │ │ ├── 0001-libmultipath-uevent.c-fix-error-handling-for-udev_mo.patch │ │ │ │ ├── 0021-RH-fixup-udev-rules-for-redhat.patch │ │ │ │ ├── 0022-RH-Remove-the-property-blacklist-exception-builtin.patch │ │ │ │ ├── 0023-RH-don-t-start-without-a-config-file.patch │ │ │ │ ├── 0024-RH-use-rpm-optflags-if-present.patch │ │ │ │ ├── 0025-RH-add-mpathconf.patch │ │ │ │ ├── 0026-RH-add-wwids-from-kernel-cmdline-mpath.wwids-with-A.patch │ │ │ │ ├── 0027-RH-warn-on-invalid-regex-instead-of-failing.patch │ │ │ │ ├── 0028-RH-reset-default-find_mutipaths-value-to-off.patch │ │ │ │ ├── 0029-multipath-tools-modify-Makefile.inc-for-cross-compil.patch │ │ │ │ ├── 0030-Always-use-devmapper.patch │ │ │ │ ├── 0031-Always-use-devmapper-for-kpartx.patch │ │ │ │ ├── 0032-libdmmp-Makefile-replace-perl-with-sed-in-install-ta.patch │ │ │ │ ├── multipath.conf.example │ │ │ │ └── multipathd.oe │ │ │ └── multipath-tools_0.8.4.bb │ │ ├── nano │ │ │ └── nano_5.6.bb │ │ ├── ne10 │ │ │ ├── ne10 │ │ │ │ ├── 0001-CMakeLists.txt-Remove-mthumb-interwork.patch │ │ │ │ └── 0001-Dont-specify-march-explicitly.patch │ │ │ └── ne10_1.2.1.bb │ │ ├── neon │ │ │ ├── neon │ │ │ │ ├── fix-package-check-for-libxml2.patch │ │ │ │ ├── pkgconfig.patch │ │ │ │ └── run-ptest │ │ │ └── neon_0.30.2.bb │ │ ├── nmon │ │ │ ├── nmon │ │ │ │ └── 0001-lmon16g.c-Adjust-system-headers.patch │ │ │ └── nmon_16g.bb │ │ ├── nspr │ │ │ ├── nspr │ │ │ │ ├── 0001-md-Fix-build-with-musl.patch │ │ │ │ ├── 0002-Add-nios2-support.patch │ │ │ │ ├── Makefile.in-remove-_BUILD_STRING-and-_BUILD_TIME.patch │ │ │ │ ├── fix-build-on-x86_64.patch │ │ │ │ ├── nspr.pc.in │ │ │ │ ├── remove-rpath-from-tests.patch │ │ │ │ └── remove-srcdir-from-configure-in.patch │ │ │ └── nspr_4.29.bb │ │ ├── nss │ │ │ ├── nss │ │ │ │ ├── 0001-freebl-add-a-configure-option-to-disable-ARM-HW-cryp.patch │ │ │ │ ├── 0001-nss-fix-support-cross-compiling.patch │ │ │ │ ├── blank-cert9.db │ │ │ │ ├── blank-key4.db │ │ │ │ ├── disable-Wvarargs-with-clang.patch │ │ │ │ ├── nss-fix-incorrect-shebang-of-perl.patch │ │ │ │ ├── nss-fix-nsinstall-build.patch │ │ │ │ ├── nss-no-rpath-for-cross-compiling.patch │ │ │ │ ├── nss.pc.in │ │ │ │ ├── pqg.c-ULL_addend.patch │ │ │ │ └── system-pkcs11.txt │ │ │ └── nss_3.63.bb │ │ ├── onig │ │ │ ├── onig │ │ │ │ ├── 0001-build-don-t-link-against-host-system-libraries.patch │ │ │ │ ├── 0001-build-enable-serial-tests-automake-option-for-ptest.patch │ │ │ │ └── run-ptest │ │ │ └── onig_6.9.4.bb │ │ ├── opencl │ │ │ └── clinfo_2.2.18.04.06.bb │ │ ├── openct │ │ │ ├── openct │ │ │ │ ├── etc-openct.udev.in-disablePROGRAM.patch │ │ │ │ ├── etc-openct_usb.in-modify-UDEVINFO.patch │ │ │ │ ├── openct.init │ │ │ │ ├── openct.service │ │ │ │ └── openct.sysconfig │ │ │ └── openct_0.6.20.bb │ │ ├── opencv │ │ │ ├── ade │ │ │ │ └── 0001-use-GNUInstallDirs-for-detecting-install-paths.patch │ │ │ ├── ade_0.1.1f.bb │ │ │ ├── opencv │ │ │ │ ├── 0001-3rdparty-ippicv-Use-pre-downloaded-ipp.patch │ │ │ │ ├── 0001-Dont-use-isystem.patch │ │ │ │ ├── 0001-Make-ts-module-external.patch │ │ │ │ ├── 0001-Temporarliy-work-around-deprecated-ffmpeg-RAW-functi.patch │ │ │ │ ├── 0001-Use-Os-to-compile-tinyxml2.cpp.patch │ │ │ │ ├── 0001-sfm-link-with-Glog_LIBS.patch │ │ │ │ ├── 0003-To-fix-errors-as-following.patch │ │ │ │ └── download.patch │ │ │ └── opencv_4.5.2.bb │ │ ├── openldap │ │ │ ├── openldap │ │ │ │ ├── initscript │ │ │ │ ├── install-strip.patch │ │ │ │ ├── openldap-2.4.28-gnutls-gcrypt.patch │ │ │ │ ├── openldap-CVE-2015-3276.patch │ │ │ │ ├── openldap-m4-pthread.patch │ │ │ │ ├── remove-user-host-pwd-from-version.patch │ │ │ │ ├── slapd.service │ │ │ │ ├── thread_stub.patch │ │ │ │ └── use-urandom.patch │ │ │ └── openldap_2.4.58.bb │ │ ├── opensc │ │ │ └── opensc_0.21.0.bb │ │ ├── opensync │ │ │ └── wbxml2_0.10.8.bb │ │ ├── p910nd │ │ │ ├── p910nd │ │ │ │ └── fix-var-lock.patch │ │ │ └── p910nd_0.97.bb │ │ ├── pcsc-lite │ │ │ ├── pcsc-lite │ │ │ │ └── 0001-pcsc-spy-use-python3-only.patch │ │ │ └── pcsc-lite_1.9.0.bb │ │ ├── pcsc-tools │ │ │ └── pcsc-tools_1.5.7.bb │ │ ├── picocom │ │ │ ├── picocom │ │ │ │ └── 0001-Fix-building-with-musl.patch │ │ │ └── picocom_git.bb │ │ ├── pidgin │ │ │ ├── funyahoo-plusplus_git.bb │ │ │ ├── icyque_git.bb │ │ │ ├── libgnt │ │ │ │ └── 0001-meson-import-changes-from-3.0.-version.patch │ │ │ ├── libgnt_2.14.1.bb │ │ │ ├── libotr │ │ │ │ ├── fix_qa-issue_include.patch │ │ │ │ └── sepbuild.patch │ │ │ ├── libotr_4.1.1.bb │ │ │ ├── pidgin-otr_4.0.2.bb │ │ │ ├── pidgin-sipe │ │ │ │ ├── 0001-Align-structs-casts-with-time_t-elements-to-8byte-bo.patch │ │ │ │ ├── 0001-Migrate-to-use-g_memdup2.patch │ │ │ │ ├── 0001-configure-Do-not-add-native-paths-to-pkgconfig-searc.patch │ │ │ │ └── 0001-sipe-consider-64bit-time_t-when-printing.patch │ │ │ ├── pidgin-sipe_1.25.0.bb │ │ │ ├── pidgin │ │ │ │ ├── purple-OE-branding-25.patch │ │ │ │ └── sanitize-configure.ac.patch │ │ │ ├── pidgin_2.14.2.bb │ │ │ └── purple-skypeweb_git.bb │ │ ├── pngcheck │ │ │ ├── pngcheck │ │ │ │ ├── 0001-make-Respect-variables-from-environement.patch │ │ │ │ ├── 0001-png-fix-IDAT-windowsize-Fix-format-string-errors-in-.patch │ │ │ │ └── 10-pngsplit-format-strings.patch │ │ │ └── pngcheck_2.3.0.bb │ │ ├── poco │ │ │ ├── poco │ │ │ │ ├── 0001-Add-support-of-arch-riscv32.patch │ │ │ │ └── run-ptest │ │ │ └── poco_1.10.1.bb │ │ ├── poppler │ │ │ ├── poppler-data_0.4.10.bb │ │ │ ├── poppler │ │ │ │ ├── 0001-Do-not-overwrite-all-our-build-flags.patch │ │ │ │ └── basename-include.patch │ │ │ └── poppler_21.04.0.bb │ │ ├── portaudio │ │ │ ├── files │ │ │ │ └── ldflags.patch │ │ │ └── portaudio-v19_20161030.bb │ │ ├── pps-tools │ │ │ └── pps-tools_1.0.2.bb │ │ ├── procmail │ │ │ ├── procmail │ │ │ │ ├── from-debian-to-fix-compile-errors.patch │ │ │ │ ├── from-debian-to-fix-man-file.patch │ │ │ │ ├── from-debian-to-modify-parameters.patch │ │ │ │ └── man-file-mailstat.1-from-debian.patch │ │ │ └── procmail_3.22.bb │ │ ├── pv │ │ │ └── pv_1.6.6.bb │ │ ├── pxaregs │ │ │ ├── pxaregs-1.14 │ │ │ │ ├── Makefile │ │ │ │ ├── i2c.patch │ │ │ │ ├── munmap.patch │ │ │ │ ├── pxaregs.c │ │ │ │ ├── serial.patch │ │ │ │ └── usb.patch │ │ │ └── pxaregs_1.14.bb │ │ ├── raptor2 │ │ │ ├── files │ │ │ │ └── 0001-configure.ac-do-additional-checks-on-libxml2-also-wh.patch │ │ │ └── raptor2_2.0.15.bb │ │ ├── rdfind │ │ │ └── rdfind_1.4.1.bb │ │ ├── re2 │ │ │ └── re2_2020.11.01.bb │ │ ├── read-edid │ │ │ ├── read-edid │ │ │ │ ├── 0001-Do-not-install-license-file.patch │ │ │ │ └── 0001-get-edid-define-quiet-once.patch │ │ │ └── read-edid_3.0.2.bb │ │ ├── remmina │ │ │ └── remmina_1.4.11.bb │ │ ├── rsnapshot │ │ │ ├── rsnapshot │ │ │ │ └── configure-fix-cmd_rsync.patch │ │ │ └── rsnapshot_git.bb │ │ ├── sass │ │ │ ├── libsass_git.bb │ │ │ └── sassc_git.bb │ │ ├── satyr │ │ │ ├── files │ │ │ │ └── 0002-fix-compile-failure-against-musl-C-library.patch │ │ │ └── satyr_0.37.bb │ │ ├── sdparm │ │ │ ├── files │ │ │ │ └── make-sysroot-work.patch │ │ │ └── sdparm_1.11.bb │ │ ├── serial-utils │ │ │ ├── pty-forward-native.bb │ │ │ ├── serial-forward │ │ │ │ └── 0001-serial_forward-Disable-default-static-linking.patch │ │ │ └── serial-forward_git.bb │ │ ├── sg3-utils │ │ │ └── sg3-utils_1.45.bb │ │ ├── sharutils │ │ │ ├── sharutils │ │ │ │ ├── 0001-Fix-build-with-clang.patch │ │ │ │ ├── 0001-Fix-build-with-recent-gettext.patch │ │ │ │ ├── 0001-Fix-building-with-GCC-10.patch │ │ │ │ ├── 0002-Do-not-include-lib-md5.c-into-src-shar.c.patch │ │ │ │ └── CVE-2018-1000097.patch │ │ │ └── sharutils_4.15.2.bb │ │ ├── span-lite │ │ │ └── span-lite_0.8.1.bb │ │ ├── spdlog │ │ │ ├── files │ │ │ │ └── 0001-Enable-use-of-external-fmt-library.patch │ │ │ └── spdlog_1.8.2.bb │ │ ├── spitools │ │ │ └── spitools_git.bb │ │ ├── srecord │ │ │ ├── files │ │ │ │ └── add-option-to-remove-docs.patch │ │ │ └── srecord_1.64.bb │ │ ├── ssiapi │ │ │ ├── ssiapi │ │ │ │ ├── 0001-Don-t-use-__GNUC_PREREQ.patch │ │ │ │ ├── 0001-Include-libgen.h.patch │ │ │ │ ├── 0001-log-Avoid-shadowing-functions-from-std-lib.patch │ │ │ │ ├── 0002-Use-stangard-int-types.patch │ │ │ │ ├── 0002-boost-Backport-clang-support.patch │ │ │ │ ├── 0003-engine-Define-discover-const-String-path-in-base-cla.patch │ │ │ │ ├── 0003-replace-canonicalize_file_name-with-realpath.patch │ │ │ │ ├── 0004-Do-not-override-flags-coming-from-build-environment.patch │ │ │ │ ├── 0004-include-limits.h.patch │ │ │ │ └── 0005-enable-out-of-source-tree-builds.patch │ │ │ └── ssiapi_1.3.0.bb │ │ ├── stm32flash │ │ │ └── stm32flash_0.6.bb │ │ ├── synergy │ │ │ └── synergy_git.bb │ │ ├── syslog-ng │ │ │ ├── files │ │ │ │ ├── 0001-syslog-ng-fix-segment-fault-during-service-start.patch │ │ │ │ ├── configure.ac-add-option-enable-thread-tls-to-manage-.patch │ │ │ │ ├── fix-config-libnet.patch │ │ │ │ ├── fix-invalid-ownership.patch │ │ │ │ ├── initscript │ │ │ │ ├── shebang.patch │ │ │ │ ├── syslog-ng-tmp.conf │ │ │ │ ├── syslog-ng.conf.systemd │ │ │ │ ├── syslog-ng.conf.sysvinit │ │ │ │ ├── syslog-ng.service-the-syslog-ng-service.patch │ │ │ │ └── volatiles.03_syslog-ng │ │ │ ├── syslog-ng.inc │ │ │ └── syslog-ng_3.24.1.bb │ │ ├── system-config-keyboard │ │ │ └── system-config-keyboard_1.4.0.bb │ │ ├── tbb │ │ │ ├── tbb │ │ │ │ ├── 0001-CMakeLists.txt-exclude-riscv64-riscv32.patch │ │ │ │ ├── 0001-Disable-use-of-_tpause-instruction.patch │ │ │ │ ├── 0001-mallinfo-is-glibc-specific-API-mark-it-so.patch │ │ │ │ └── GLIBC-PREREQ-is-not-defined-on-musl.patch │ │ │ └── tbb_2021.2.0.bb │ │ ├── thin-provisioning-tools │ │ │ ├── files │ │ │ │ ├── 0001-do-not-strip-pdata_tools-at-do_install.patch │ │ │ │ └── use-sh-on-path.patch │ │ │ └── thin-provisioning-tools_0.8.5.bb │ │ ├── tokyocabinet │ │ │ ├── tokyocabinet │ │ │ │ └── remove-hard-coded-include-and-lib-paths.patch │ │ │ └── tokyocabinet_1.4.48.bb │ │ ├── toscoterm │ │ │ └── toscoterm_git.bb │ │ ├── tree │ │ │ └── tree_1.8.0.bb │ │ ├── uchardet │ │ │ └── uchardet_0.0.7.bb │ │ ├── udisks │ │ │ └── udisks2_2.9.2.bb │ │ ├── uhubctl │ │ │ └── uhubctl_2.3.0.bb │ │ ├── uim │ │ │ ├── uim │ │ │ │ ├── 0001-Fix-to-set-libedit-path-from-configure-option-proper.patch │ │ │ │ ├── JMP_BUF_GC_jmp_buf.patch │ │ │ │ └── uim-module-manager.patch │ │ │ └── uim_1.8.8.bb │ │ ├── unicode-ucd │ │ │ ├── files │ │ │ │ └── license.html │ │ │ └── unicode-ucd_12.1.0.bb │ │ ├── unixodbc │ │ │ ├── files │ │ │ │ └── do-not-use-libltdl-source-directory.patch │ │ │ └── unixodbc_2.3.7.bb │ │ ├── upower │ │ │ └── upower_0.99.11.bb │ │ ├── uriparser │ │ │ └── uriparser_0.9.5.bb │ │ ├── usb-modeswitch │ │ │ ├── usb-modeswitch-data_20191128.bb │ │ │ └── usb-modeswitch_2.6.0.bb │ │ ├── uthash │ │ │ ├── uthash │ │ │ │ └── run-ptest │ │ │ └── uthash_2.3.0.bb │ │ ├── utouch │ │ │ ├── utouch-evemu │ │ │ │ └── 0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch │ │ │ ├── utouch-evemu_git.bb │ │ │ ├── utouch-frame │ │ │ │ ├── 0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch │ │ │ │ ├── 0001-include-sys-stat.h-for-fixing-build-issue-on-musl.patch │ │ │ │ └── remove-man-page-creation.patch │ │ │ ├── utouch-frame_git.bb │ │ │ └── utouch-mtview_git.bb │ │ ├── vboxguestdrivers │ │ │ ├── vboxguestdrivers │ │ │ │ ├── Makefile.utils │ │ │ │ ├── add__divmoddi4.patch │ │ │ │ └── kernel-5.10.patch │ │ │ └── vboxguestdrivers_6.1.18.bb │ │ ├── websocketpp │ │ │ ├── websocketpp-0.8.2 │ │ │ │ ├── 0001-Correct-clang-compiler-flags.patch │ │ │ │ ├── 0001-cmake-Use-GNUInstallDirs.patch │ │ │ │ ├── 855.patch │ │ │ │ └── 857.patch │ │ │ └── websocketpp_0.8.2.bb │ │ ├── xdelta │ │ │ └── xdelta3_3.1.0.bb │ │ ├── xdg-user-dirs │ │ │ └── xdg-user-dirs_0.17.bb │ │ ├── xmlsec1 │ │ │ ├── xmlsec1 │ │ │ │ ├── 0001-nss-nspr-fix-for-multilib.patch │ │ │ │ ├── change-finding-path-of-nss.patch │ │ │ │ ├── ensure-search-path-non-host.patch │ │ │ │ ├── fix-ltmain.sh.patch │ │ │ │ ├── makefile-ptest.patch │ │ │ │ ├── run-ptest │ │ │ │ └── xmlsec1-examples-allow-build-in-separate-dir.patch │ │ │ └── xmlsec1_1.2.31.bb │ │ ├── xmlstarlet │ │ │ ├── files │ │ │ │ ├── 0001-usage2c.awk-fix-wrong-basename-regexp.patch │ │ │ │ └── configure.ac.patch │ │ │ └── xmlstarlet_1.6.1.bb │ │ ├── xorg-xrdp │ │ │ └── xorgxrdp_0.2.5.bb │ │ ├── xrdp │ │ │ ├── xrdp │ │ │ │ ├── 0001-Added-req_distinguished_name-in-etc-xrdp-openssl.con.patch │ │ │ │ ├── 0001-Fix-the-compile-error.patch │ │ │ │ ├── 0001-arch-Define-NO_NEED_ALIGN-on-ppc64.patch │ │ │ │ └── xrdp.sysconfig │ │ │ └── xrdp_0.9.15.bb │ │ ├── xserver-xorg-cvt │ │ │ └── xserver-xorg-cvt-native_1.20.10.bb │ │ ├── yaml-cpp │ │ │ └── yaml-cpp_0.6.3.bb │ │ ├── zbar │ │ │ ├── zbar │ │ │ │ ├── 0001-qt-Create-subdir-in-Makefile.patch │ │ │ │ └── 0002-zbarcam-Create-subdir-in-Makefile.patch │ │ │ └── zbar_git.bb │ │ ├── zchunk │ │ │ └── zchunk_1.1.9.bb │ │ └── zile │ │ │ ├── files │ │ │ └── remove-help2man.patch │ │ │ └── zile_2.4.15.bb │ └── recipes-test │ │ ├── bats │ │ └── bats_1.3.0.bb │ │ ├── catch2 │ │ └── catch2_2.13.4.bb │ │ ├── cmocka │ │ ├── cmocka_1.1.5.bb │ │ └── files │ │ │ └── run-ptest │ │ ├── cppunit │ │ ├── cppunit_1.15.1.bb │ │ └── files │ │ │ └── 0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch │ │ ├── cukinia │ │ └── cukinia_0.5.1.bb │ │ ├── cunit │ │ ├── cunit_2.1-3.bb │ │ └── files │ │ │ ├── fixup-install-docdir.patch │ │ │ └── run-ptest │ │ ├── cxxtest │ │ └── cxxtest_4.4.bb │ │ ├── evtest │ │ ├── evtest │ │ │ ├── 0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch │ │ │ └── add_missing_limits_h_include.patch │ │ └── evtest_1.34.bb │ │ ├── fbtest │ │ └── fb-test_git.bb │ │ ├── fwts │ │ ├── fwts │ │ │ ├── 0001-Add-correct-printf-qualifier-for-off_t.patch │ │ │ ├── 0002-Include-poll.h-instead-of-deprecated-sys-poll.h.patch │ │ │ ├── 0003-Remove-Werror-from-build.patch │ │ │ ├── 0004-Define-__SWORD_TYPE-if-not-defined-by-libc.patch │ │ │ ├── 0005-Undefine-PAGE_SIZE.patch │ │ │ └── 0006-use-intptr_t-to-fix-pointer-to-int-cast-issues.patch │ │ └── fwts_21.03.00.bb │ │ ├── googletest │ │ └── googletest_git.bb │ │ ├── pm-qa │ │ └── pm-qa_git.bb │ │ └── testfloat │ │ ├── files │ │ ├── 0001-Makefile-for-cross-compile-SoftFloat.patch │ │ └── 0002-Makefile-for-cross-compile-TestFloat.patch │ │ └── testfloat_3e.bb ├── meta-perl │ ├── COPYING.MIT │ ├── README │ ├── conf │ │ └── layer.conf │ ├── recipes-extended │ │ ├── logcheck │ │ │ ├── files │ │ │ │ └── 99_logcheck │ │ │ └── logcheck_1.3.20.bb │ │ └── mime-construct │ │ │ ├── files │ │ │ └── fix-mime-construct-help-return-value.patch │ │ │ └── mime-construct_1.11.bb │ └── recipes-perl │ │ ├── adduser │ │ ├── adduser_3.118.bb │ │ └── files │ │ │ ├── 0001-adduser-set-default-shell-with-sbin-nologin.patch │ │ │ └── adduser-add-M-option-for-useradd.patch │ │ ├── images │ │ ├── meta-perl-base.bb │ │ ├── meta-perl-image.bb │ │ └── meta-perl-ptest-image.bb │ │ ├── libalgorithm │ │ └── libalgorithm-diff-perl_1.15.bb │ │ ├── libauthen │ │ ├── files │ │ │ └── run-ptest │ │ ├── libauthen-radius-perl │ │ │ ├── run-ptest │ │ │ └── test.pl-adjust-for-ptest.patch │ │ ├── libauthen-radius-perl_0.22.bb │ │ └── libauthen-sasl-perl_2.16.bb │ │ ├── libcapture │ │ └── libcapture-tiny-perl_0.48.bb │ │ ├── libcgi │ │ └── libcgi-perl_4.51.bb │ │ ├── libclass │ │ └── libclass-method-modifiers-perl_2.13.bb │ │ ├── libconfig │ │ └── libconfig-autoconf-perl_0.319.bb │ │ ├── libcrypt │ │ ├── libcrypt-openssl-guess-perl_0.12.bb │ │ ├── libcrypt-openssl-random-perl_0.15.bb │ │ └── libcrypt-openssl-rsa-perl_0.31.bb │ │ ├── libcurses │ │ └── libcurses-perl_1.37.bb │ │ ├── libdata │ │ ├── files │ │ │ └── run-ptest │ │ └── libdata-hexdump-perl_0.02.bb │ │ ├── libdb │ │ ├── libdbd-sqlite-perl │ │ │ └── sqlite-perl-test.pl │ │ └── libdbd-sqlite-perl_1.66.bb │ │ ├── libdevel │ │ └── libdevel-globaldestruction-perl_0.14.bb │ │ ├── libdigest │ │ ├── files │ │ │ └── run-ptest │ │ ├── libdigest-hmac-perl_1.03.bb │ │ └── libdigest-sha1-perl_2.13.bb │ │ ├── libencode │ │ ├── libencode-locale-perl_1.05.bb │ │ └── libencode-perl_3.08.bb │ │ ├── libenv │ │ └── libenv-perl_1.04.bb │ │ ├── libextutils │ │ ├── libextutils-config-perl_0.008.bb │ │ ├── libextutils-cppguess-perl_0.21.bb │ │ ├── libextutils-helpers-perl_0.026.bb │ │ ├── libextutils-installpaths-perl_0.012.bb │ │ └── libextutils-parsexs-perl_3.35.bb │ │ ├── libfile │ │ ├── libfile-slurp-perl_9999.19.bb │ │ └── libfile-slurper-perl_0.012.bb │ │ ├── libhtml │ │ ├── files │ │ │ └── bin-htmltree-fix-shebang.patch │ │ ├── libhtml-parser-perl_3.72.bb │ │ ├── libhtml-tagset-perl_3.20.bb │ │ └── libhtml-tree-perl_5.03.bb │ │ ├── libimport │ │ └── libimport-into-perl_1.002004.bb │ │ ├── libio │ │ ├── files │ │ │ └── run-ptest │ │ ├── libio-socket-ssl-perl_2.068.bb │ │ └── libio-stringy-perl_2.111.bb │ │ ├── libipc │ │ └── libipc-signal-perl_1.00.bb │ │ ├── liblocale │ │ └── liblocale-gettext-perl_1.07.bb │ │ ├── libmime │ │ ├── files │ │ │ └── run-ptest │ │ ├── libmime-charset-perl_1.012.2.bb │ │ └── libmime-types-perl_2.17.bb │ │ ├── libmodule │ │ ├── libmodule-build-tiny-perl_0.039.bb │ │ ├── libmodule-pluggable-perl_5.2.bb │ │ └── libmodule-runtime-perl_0.016.bb │ │ ├── libmoo │ │ └── libmoo-perl_2.004000.bb │ │ ├── libnet │ │ ├── files │ │ │ └── run-ptest │ │ ├── libnet-dns-perl_1.26.bb │ │ ├── libnet-dns-sec-perl_1.10.bb │ │ ├── libnet-ldap-perl_0.68.bb │ │ ├── libnet-libidn-perl-0.12 │ │ │ └── libidn-wr-cross-compile.patch │ │ ├── libnet-libidn-perl_0.12.bb │ │ ├── libnet-ssleay-perl │ │ │ └── no-exec-on-configure.patch │ │ ├── libnet-ssleay-perl_1.85.bb │ │ └── libnet-telnet-perl_3.04.bb │ │ ├── libproc │ │ └── libproc-waitstat-perl_1.00.bb │ │ ├── librole │ │ └── librole-tiny-perl_2.002004.bb │ │ ├── libstatgrab │ │ └── libunix-statgrab_0.112.bb │ │ ├── libstrictures │ │ └── libstrictures-perl_2.000006.bb │ │ ├── libsub │ │ ├── libsub-exporter-progressive-perl_0.001013.bb │ │ └── libsub-uplevel-perl_0.2800.bb │ │ ├── libterm │ │ └── libterm-readkey-perl_2.38.bb │ │ ├── libtest │ │ ├── libtest-deep-perl_1.130.bb │ │ ├── libtest-harness-perl_3.42.bb │ │ ├── libtest-nowarnings-perl_1.04.bb │ │ ├── libtest-warn-perl_0.36.bb │ │ └── libtest-warnings-perl_0.028.bb │ │ ├── libtext │ │ ├── libtext-charwidth-perl_0.04.bb │ │ ├── libtext-diff-perl_1.41.bb │ │ ├── libtext-iconv-perl_1.7.bb │ │ └── libtext-wrapi18n-perl_0.06.bb │ │ ├── libunicode │ │ └── libunicode-linebreak-perl_2019.001.bb │ │ ├── libxml │ │ ├── libxml-filter-buffertext-perl_1.01.bb │ │ ├── libxml-libxml-perl │ │ │ ├── disable-libxml2-check.patch │ │ │ ├── fix-CATALOG-conditional-compile.patch │ │ │ └── using-DOCB-conditional.patch │ │ ├── libxml-libxml-perl_2.0134.bb │ │ └── libxml-sax-writer-perl_0.57.bb │ │ ├── packagegroups │ │ └── packagegroup-meta-perl.bb │ │ └── po4a │ │ └── po4a_0.49.bb ├── meta-python │ ├── COPYING.MIT │ ├── README │ ├── classes │ │ └── bandit.bbclass │ ├── conf │ │ └── layer.conf │ ├── licenses │ │ ├── LLNL │ │ ├── Unicode │ │ └── WTFPL │ ├── recipes-connectivity │ │ ├── python-gsocketpool │ │ │ └── python3-gsocketpool_0.1.6.bb │ │ ├── python-h2 │ │ │ └── python3-h2_4.0.0.bb │ │ ├── python-hpack │ │ │ └── python3-hpack_4.0.0.bb │ │ ├── python-hyperframe │ │ │ └── python3-hyperframe_6.0.0.bb │ │ ├── python-priority │ │ │ └── python3-priority_1.3.0.bb │ │ ├── python-pyconnman │ │ │ └── python3-pyconnman_0.2.0.bb │ │ ├── python-pyro4 │ │ │ └── python3-pyro4_4.80.bb │ │ ├── python-thrift │ │ │ └── python3-thrift_0.13.0.bb │ │ ├── python-txws │ │ │ └── python3-txws_0.9.1.bb │ │ ├── python3-pytun │ │ │ └── python3-pytun_2.3.0.bb │ │ └── telepathy │ │ │ ├── telepathy-python3-0.15.19 │ │ │ ├── parallel_make.patch │ │ │ ├── remove_duplicate_install.patch │ │ │ └── telepathy-python_fix_for_automake_1.12.patch │ │ │ └── telepathy-python3_0.15.19.bb │ ├── recipes-core │ │ ├── images │ │ │ ├── meta-python-image-base.bb │ │ │ ├── meta-python-image.bb │ │ │ └── meta-python-ptest-image.bb │ │ └── packagegroups │ │ │ └── packagegroup-meta-python.bb │ ├── recipes-devtools │ │ ├── gyp │ │ │ └── gyp_git.bb │ │ ├── python-jsonref │ │ │ └── python3-jsonref_0.2.bb │ │ └── python │ │ │ ├── pamela_1.0.0.bb │ │ │ ├── pyrtm_0.4.2.bb │ │ │ ├── python-daemon │ │ │ └── 0001-Workaround-for-issue-2-1.patch │ │ │ ├── python-django-south.inc │ │ │ ├── python-django.inc │ │ │ ├── python-flask-bootstrap.inc │ │ │ ├── python-flask-script.inc │ │ │ ├── python-flask-sijax.inc │ │ │ ├── python-flask-xstatic.inc │ │ │ ├── python-flask-xstatic │ │ │ └── remove-pip-requires.patch │ │ │ ├── python-gevent │ │ │ └── libev-conf.patch │ │ │ ├── python-idna-ssl.inc │ │ │ ├── python-imaging │ │ │ ├── 0001-python-imaging-setup.py-force-paths-for-zlib-freetyp.patch │ │ │ ├── allow.to.disable.some.features.patch │ │ │ ├── fix-freetype-includes.patch │ │ │ ├── python-imaging-CVE-2016-2533.patch │ │ │ └── remove-host-libdir.patch │ │ │ ├── python-m2crypto.inc │ │ │ ├── python-m2crypto │ │ │ ├── 0001-setup.py-link-in-sysroot-not-in-host-directories.patch │ │ │ ├── cross-compile-platform.patch │ │ │ └── m2crypto-0.26.4-gcc_macros.patch │ │ │ ├── python-mccabe │ │ │ └── 0001-python-mccabe-remove-unnecessary-setup_requires-pyte.patch │ │ │ ├── python-numeric │ │ │ └── 0001-it-tries-to-define-this-function-differently-than-it.patch │ │ │ ├── python-pyasn1.inc │ │ │ ├── python-pygpgme │ │ │ ├── 0001-reflect-2.1-reporting-for-key-imports.patch │ │ │ ├── 0002-passphrase_cb-is-deprecated.patch │ │ │ ├── 0003-handle-generic-error-when-no-passphrase-callback-pre.patch │ │ │ └── run-ptest │ │ │ ├── python-pyrex │ │ │ └── pyrex-fix-optimized-mode.patch │ │ │ ├── python-pyzmq │ │ │ └── club-rpath-out.patch │ │ │ ├── python-rfc3986-validator │ │ │ └── 0001-setup.py-move-pytest-runner-to-test_requirements.patch │ │ │ ├── python-systemd │ │ │ ├── 0001-Provide-implementation-of-strndupa-for-musl.patch │ │ │ └── endian.patch │ │ │ ├── python3-absl_0.12.0.bb │ │ │ ├── python3-aenum_3.0.0.bb │ │ │ ├── python3-aiofiles_0.6.0.bb │ │ │ ├── python3-aiohttp-jinja2_1.4.2.bb │ │ │ ├── python3-aiohttp_3.7.4.post0.bb │ │ │ ├── python3-aiohue_2.2.0.bb │ │ │ ├── python3-alembic_1.5.8.bb │ │ │ ├── python3-ansi2html_1.6.0.bb │ │ │ ├── python3-ansicolors │ │ │ └── run-ptest │ │ │ ├── python3-ansicolors_1.1.8.bb │ │ │ ├── python3-anyjson │ │ │ └── run-ptest │ │ │ ├── python3-anyjson_0.3.3.bb │ │ │ ├── python3-appdirs │ │ │ └── run-ptest │ │ │ ├── python3-appdirs_1.4.4.bb │ │ │ ├── python3-apply-defaults_0.1.4.bb │ │ │ ├── python3-argcomplete_1.12.2.bb │ │ │ ├── python3-argexec_1.0.3.bb │ │ │ ├── python3-argh_0.26.2.bb │ │ │ ├── python3-arpeggio_1.10.1.bb │ │ │ ├── python3-asciitree_0.3.3.bb │ │ │ ├── python3-asn1crypto_1.4.0.bb │ │ │ ├── python3-astor │ │ │ └── 0001-rtrip.py-convert-to-python3.patch │ │ │ ├── python3-astor_0.8.1.bb │ │ │ ├── python3-astroid_2.5.3.bb │ │ │ ├── python3-asttokens_2.0.4.bb │ │ │ ├── python3-async-timeout_3.0.1.bb │ │ │ ├── python3-attr_0.3.1.bb │ │ │ ├── python3-autobahn_21.3.1.bb │ │ │ ├── python3-automat │ │ │ └── 0001-setup.py-remove-the-dependency-on-m2r.patch │ │ │ ├── python3-automat_20.2.0.bb │ │ │ ├── python3-aws-iot-device-sdk-python_1.4.9.bb │ │ │ ├── python3-babel_2.9.0.bb │ │ │ ├── python3-backcall_0.2.0.bb │ │ │ ├── python3-backports-functools-lru-cache │ │ │ └── run-ptest │ │ │ ├── python3-backports-functools-lru-cache_1.6.4.bb │ │ │ ├── python3-bandit_1.7.0.bb │ │ │ ├── python3-bcrypt │ │ │ └── run-ptest │ │ │ ├── python3-bcrypt_3.2.0.bb │ │ │ ├── python3-beautifulsoup4_4.9.3.bb │ │ │ ├── python3-behave_1.2.6.bb │ │ │ ├── python3-betamax │ │ │ └── run-ptest │ │ │ ├── python3-betamax_0.8.1.bb │ │ │ ├── python3-bitarray_1.9.2.bb │ │ │ ├── python3-bitstring_3.1.7.bb │ │ │ ├── python3-bitstruct_8.11.1.bb │ │ │ ├── python3-blinker │ │ │ └── run-ptest │ │ │ ├── python3-blinker_1.4.bb │ │ │ ├── python3-booleanpy_3.8.bb │ │ │ ├── python3-cachecontrol_0.12.6.bb │ │ │ ├── python3-cachetools │ │ │ └── run-ptest │ │ │ ├── python3-cachetools_4.2.1.bb │ │ │ ├── python3-can_3.3.3.bb │ │ │ ├── python3-cantools_36.2.0.bb │ │ │ ├── python3-cassandra-driver_3.25.0.bb │ │ │ ├── python3-cbor2 │ │ │ └── run-ptest │ │ │ ├── python3-cbor2_5.2.0.bb │ │ │ ├── python3-cerberus_1.3.3.bb │ │ │ ├── python3-certifi_2020.12.5.bb │ │ │ ├── python3-cffi_1.14.5.bb │ │ │ ├── python3-chardet_4.0.0.bb │ │ │ ├── python3-cheetah_3.2.6.post1.bb │ │ │ ├── python3-click-repl_0.1.6.bb │ │ │ ├── python3-click-spinner_0.1.10.bb │ │ │ ├── python3-click │ │ │ └── run-ptest │ │ │ ├── python3-click_7.1.2.bb │ │ │ ├── python3-cmd2_1.5.0.bb │ │ │ ├── python3-colorama_0.4.4.bb │ │ │ ├── python3-coloredlogs_15.0.bb │ │ │ ├── python3-colorlog_5.0.1.bb │ │ │ ├── python3-configargparse_1.4.bb │ │ │ ├── python3-configobj_5.0.6.bb │ │ │ ├── python3-configparser_5.0.2.bb │ │ │ ├── python3-configshell-fb_1.1.29.bb │ │ │ ├── python3-constantly_15.1.0.bb │ │ │ ├── python3-contextlib2_0.6.0.post1.bb │ │ │ ├── python3-coverage_5.5.bb │ │ │ ├── python3-cppy_1.1.0.bb │ │ │ ├── python3-crcmod_1.7.bb │ │ │ ├── python3-croniter_1.0.12.bb │ │ │ ├── python3-cryptography-vectors_3.4.6.bb │ │ │ ├── python3-cryptography │ │ │ ├── h-test.patch │ │ │ └── run-ptest │ │ │ ├── python3-cryptography_3.3.1.bb │ │ │ ├── python3-custom-inherit_2.3.1.bb │ │ │ ├── python3-cvxopt_1.2.6.bb │ │ │ ├── python3-cycler_0.10.0.bb │ │ │ ├── python3-dateparser_1.0.0.bb │ │ │ ├── python3-dateutil_2.8.1.bb │ │ │ ├── python3-dbus-next_0.2.2.bb │ │ │ ├── python3-dbussy_1.3.bb │ │ │ ├── python3-decorator_5.0.7.bb │ │ │ ├── python3-defusedxml_0.7.1.bb │ │ │ ├── python3-dill_0.3.3.bb │ │ │ ├── python3-diskcache_5.2.1.bb │ │ │ ├── python3-distro_1.5.0.bb │ │ │ ├── python3-django-south_1.0.2.bb │ │ │ ├── python3-django_2.2.16.bb │ │ │ ├── python3-django_3.2.bb │ │ │ ├── python3-djangorestframework_3.12.4.bb │ │ │ ├── python3-dnspython │ │ │ └── run-ptest │ │ │ ├── python3-dnspython_2.1.0.bb │ │ │ ├── python3-docopt_0.6.2.bb │ │ │ ├── python3-docutils_0.17.bb │ │ │ ├── python3-dominate │ │ │ └── run-ptest │ │ │ ├── python3-dominate_2.6.0.bb │ │ │ ├── python3-dt-schema_git.bb │ │ │ ├── python3-dynamic-dispatch_1.0.3.bb │ │ │ ├── python3-ecdsa_0.16.1.bb │ │ │ ├── python3-editor_1.0.4.bb │ │ │ ├── python3-elementpath_2.2.1.bb │ │ │ ├── python3-engineio_3.13.0.bb │ │ │ ├── python3-et-xmlfile_1.0.1.bb │ │ │ ├── python3-evdev_1.4.0.bb │ │ │ ├── python3-fann2 │ │ │ └── 0001-setup.py-Don-t-hardcode-swig-and-fann2-binary-locati.patch │ │ │ ├── python3-fann2_1.1.2.bb │ │ │ ├── python3-fasteners_0.16.bb │ │ │ ├── python3-fastnumbers_3.1.0.bb │ │ │ ├── python3-feedformatter_0.4.bb │ │ │ ├── python3-flask-babel_2.0.0.bb │ │ │ ├── python3-flask-bootstrap_3.3.7.1.bb │ │ │ ├── python3-flask-jsonpify_1.5.0.bb │ │ │ ├── python3-flask-jwt_0.3.2.bb │ │ │ ├── python3-flask-login_0.5.0.bb │ │ │ ├── python3-flask-mail_0.9.1.bb │ │ │ ├── python3-flask-migrate_2.7.0.bb │ │ │ ├── python3-flask-nav_0.6.bb │ │ │ ├── python3-flask-pymongo_2.3.0.bb │ │ │ ├── python3-flask-restful_0.3.8.bb │ │ │ ├── python3-flask-script_2.0.6.bb │ │ │ ├── python3-flask-sijax_0.4.1.bb │ │ │ ├── python3-flask-socketio_5.0.1.bb │ │ │ ├── python3-flask-sqlalchemy_2.5.1.bb │ │ │ ├── python3-flask-uploads_0.2.1.bb │ │ │ ├── python3-flask-user_0.6.19.bb │ │ │ ├── python3-flask-versioned_0.9.4-20101221.bb │ │ │ ├── python3-flask-wtf_0.14.3.bb │ │ │ ├── python3-flask-xstatic_0.0.1.bb │ │ │ ├── python3-flask_1.1.2.bb │ │ │ ├── python3-future_0.18.2.bb │ │ │ ├── python3-gast_0.4.0.bb │ │ │ ├── python3-geojson │ │ │ └── run-ptest │ │ │ ├── python3-geojson_2.5.0.bb │ │ │ ├── python3-gevent_21.1.2.bb │ │ │ ├── python3-gmpy2_2.0.8.bb │ │ │ ├── python3-gmqtt_0.6.9.bb │ │ │ ├── python3-gnupg_0.4.6.bb │ │ │ ├── python3-google-api-python-client_2.2.0.bb │ │ │ ├── python3-gpsd-py3_0.3.0.bb │ │ │ ├── python3-graphviz_0.16.bb │ │ │ ├── python3-greenlet_1.0.0.bb │ │ │ ├── python3-greenstalk_2.0.0.bb │ │ │ ├── python3-grpcio-tools │ │ │ └── 0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch │ │ │ ├── python3-grpcio-tools_1.37.0.bb │ │ │ ├── python3-grpcio │ │ │ ├── 0001-absl-always-use-asm-sgidefs.h.patch │ │ │ ├── 0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch │ │ │ ├── boring_ssl.patch │ │ │ ├── mips_bigendian.patch │ │ │ ├── ppc-boringssl-support.patch │ │ │ └── riscv64_support.patch │ │ │ ├── python3-grpcio_1.37.0.bb │ │ │ ├── python3-gunicorn │ │ │ └── run-ptest │ │ │ ├── python3-gunicorn_20.1.0.bb │ │ │ ├── python3-h11_0.12.0.bb │ │ │ ├── python3-h5py │ │ │ ├── 0001-setup.py-Fix-numpy-version.patch │ │ │ └── 0001-setup_build.py-avoid-absolute-path.patch │ │ │ ├── python3-h5py_3.2.1.bb │ │ │ ├── python3-haversine_2.3.0.bb │ │ │ ├── python3-hexdump_3.3.bb │ │ │ ├── python3-html2text │ │ │ └── run-ptest │ │ │ ├── python3-html2text_2020.1.16.bb │ │ │ ├── python3-html5lib_1.1.bb │ │ │ ├── python3-httplib2_0.19.1.bb │ │ │ ├── python3-huey_2.3.1.bb │ │ │ ├── python3-humanfriendly_9.1.bb │ │ │ ├── python3-humanize_3.4.1.bb │ │ │ ├── python3-hyperlink_21.0.0.bb │ │ │ ├── python3-icu │ │ │ └── fix_host_include.patch │ │ │ ├── python3-icu_2.6.bb │ │ │ ├── python3-idna-ssl_1.1.0.bb │ │ │ ├── python3-idna_3.1.bb │ │ │ ├── python3-ifaddr_0.1.7.bb │ │ │ ├── python3-imageio_2.9.0.bb │ │ │ ├── python3-incremental_21.3.0.bb │ │ │ ├── python3-inflection │ │ │ └── run-ptest │ │ │ ├── python3-inflection_0.5.1.bb │ │ │ ├── python3-intelhex_2.3.0.bb │ │ │ ├── python3-intervals │ │ │ └── run-ptest │ │ │ ├── python3-intervals_1.10.0.post1.bb │ │ │ ├── python3-ipaddress_1.0.23.bb │ │ │ ├── python3-ipy │ │ │ └── run-ptest │ │ │ ├── python3-ipy_1.01.bb │ │ │ ├── python3-ipython-genutils_0.2.0.bb │ │ │ ├── python3-ipython_7.22.0.bb │ │ │ ├── python3-iso3166 │ │ │ └── run-ptest │ │ │ ├── python3-iso3166_1.0.1.bb │ │ │ ├── python3-iso8601_0.1.14.bb │ │ │ ├── python3-isodate_0.6.0.bb │ │ │ ├── python3-isort_5.8.0.bb │ │ │ ├── python3-itsdangerous_1.1.0.bb │ │ │ ├── python3-javaobj-py3_0.4.2.bb │ │ │ ├── python3-jdatetime_3.6.2.bb │ │ │ ├── python3-jdcal │ │ │ └── run-ptest │ │ │ ├── python3-jdcal_1.4.1.bb │ │ │ ├── python3-jedi_0.18.0.bb │ │ │ ├── python3-jinja2_2.%.bbappend │ │ │ ├── python3-jmespath_0.10.0.bb │ │ │ ├── python3-jsmin │ │ │ └── run-ptest │ │ │ ├── python3-jsmin_2.2.2.bb │ │ │ ├── python3-jsonpatch_1.32.bb │ │ │ ├── python3-jsonpath-rw_1.4.0.bb │ │ │ ├── python3-jsonpointer │ │ │ └── run-ptest │ │ │ ├── python3-jsonpointer_2.1.bb │ │ │ ├── python3-jsonrpcserver_4.2.0.bb │ │ │ ├── python3-jsonschema_3.2.0.bb │ │ │ ├── python3-jstyleson │ │ │ └── LICENSE │ │ │ ├── python3-jstyleson_0.0.2.bb │ │ │ ├── python3-kconfiglib_14.1.0.bb │ │ │ ├── python3-keras-applications_1.0.8.bb │ │ │ ├── python3-keras-preprocessing_1.1.2.bb │ │ │ ├── python3-kiwisolver_1.3.1.bb │ │ │ ├── python3-langtable_0.0.54.bb │ │ │ ├── python3-lazy-object-proxy_1.6.0.bb │ │ │ ├── python3-libconf_2.0.1.bb │ │ │ ├── python3-license-expression │ │ │ └── run-ptest │ │ │ ├── python3-license-expression_1.2.bb │ │ │ ├── python3-lockfile_0.12.2.bb │ │ │ ├── python3-lorem_0.1.1.bb │ │ │ ├── python3-lrparsing_1.0.16.bb │ │ │ ├── python3-luma-core_2.3.1.bb │ │ │ ├── python3-luma-oled_3.8.1.bb │ │ │ ├── python3-lxml_4.6.3.bb │ │ │ ├── python3-lz4_3.1.3.bb │ │ │ ├── python3-m2crypto_0.30.1.bb │ │ │ ├── python3-markdown_3.3.4.bb │ │ │ ├── python3-markupsafe_1.%.bbappend │ │ │ ├── python3-matplotlib_3.4.1.bb │ │ │ ├── python3-mccabe_0.6.1.bb │ │ │ ├── python3-meld3_2.0.1.bb │ │ │ ├── python3-mock_4.0.3.bb │ │ │ ├── python3-monotonic_1.6.bb │ │ │ ├── python3-mpmath_1.2.1.bb │ │ │ ├── python3-msgpack │ │ │ └── run-ptest │ │ │ ├── python3-msgpack_1.0.2.bb │ │ │ ├── python3-msk_0.3.16.bb │ │ │ ├── python3-msm_0.8.8.bb │ │ │ ├── python3-multidict │ │ │ └── run-ptest │ │ │ ├── python3-multidict_5.1.0.bb │ │ │ ├── python3-mypy-extensions_0.4.3.bb │ │ │ ├── python3-mypy_0.812.bb │ │ │ ├── python3-natsort_7.1.1.bb │ │ │ ├── python3-ndg-httpsclient_0.5.1.bb │ │ │ ├── python3-netaddr_0.8.0.bb │ │ │ ├── python3-netifaces_0.10.9.bb │ │ │ ├── python3-networkx_2.5.1.bb │ │ │ ├── python3-nmap_1.5.0.bb │ │ │ ├── python3-nocasedict_1.0.2.bb │ │ │ ├── python3-nocaselist_1.0.4.bb │ │ │ ├── python3-ntplib_0.3.4.bb │ │ │ ├── python3-oauthlib_3.1.0.bb │ │ │ ├── python3-obd_0.7.1.bb │ │ │ ├── python3-openpyxl_3.0.7.bb │ │ │ ├── python3-ordered-set │ │ │ └── run-ptest │ │ │ ├── python3-ordered-set_4.0.2.bb │ │ │ ├── python3-padaos_0.1.10.bb │ │ │ ├── python3-padatious_0.4.8.bb │ │ │ ├── python3-paho-mqtt_1.5.1.bb │ │ │ ├── python3-pako_0.3.1.bb │ │ │ ├── python3-pandas_1.2.4.bb │ │ │ ├── python3-parallax_1.0.6.bb │ │ │ ├── python3-paramiko_2.7.2.bb │ │ │ ├── python3-parse-type │ │ │ └── run-ptest │ │ │ ├── python3-parse-type_0.5.2.bb │ │ │ ├── python3-parse │ │ │ └── run-ptest │ │ │ ├── python3-parse_1.19.0.bb │ │ │ ├── python3-parso_0.8.2.bb │ │ │ ├── python3-passlib_1.7.4.bb │ │ │ ├── python3-pastedeploy_2.1.1.bb │ │ │ ├── python3-pathtools3_0.2.1.bb │ │ │ ├── python3-pep8_1.7.1.bb │ │ │ ├── python3-periphery_2.3.0.bb │ │ │ ├── python3-petact_0.1.2.bb │ │ │ ├── python3-pexpect │ │ │ └── 0001-FSM.py-change-shebang-from-python-to-python3.patch │ │ │ ├── python3-pexpect_4.8.0.bb │ │ │ ├── python3-pickleshare_0.7.5.bb │ │ │ ├── python3-pid_3.0.4.bb │ │ │ ├── python3-pika_1.2.0.bb │ │ │ ├── python3-pillow │ │ │ ├── 0001-explicitly-set-compile-options.patch │ │ │ └── 0001-support-cross-compiling.patch │ │ │ ├── python3-pillow_8.2.0.bb │ │ │ ├── python3-pint │ │ │ └── run-ptest │ │ │ ├── python3-pint_0.17.bb │ │ │ ├── python3-pkgconfig_1.5.2.bb │ │ │ ├── python3-ply_3.11.bb │ │ │ ├── python3-pocketsphinx_0.1.15.bb │ │ │ ├── python3-polyline │ │ │ └── run-ptest │ │ │ ├── python3-polyline_1.4.0.bb │ │ │ ├── python3-portion_2.1.5.bb │ │ │ ├── python3-prctl │ │ │ └── 0001-support-cross-complication.patch │ │ │ ├── python3-prctl_1.8.1.bb │ │ │ ├── python3-precise-runner │ │ │ └── run-ptest │ │ │ ├── python3-precise-runner_0.3.1.bb │ │ │ ├── python3-pretend_1.0.9.bb │ │ │ ├── python3-prettytable │ │ │ └── run-ptest │ │ │ ├── python3-prettytable_2.1.0.bb │ │ │ ├── python3-progress_1.5.bb │ │ │ ├── python3-prompt-toolkit_3.0.18.bb │ │ │ ├── python3-protobuf_3.14.0.bb │ │ │ ├── python3-psutil_5.8.0.bb │ │ │ ├── python3-ptyprocess │ │ │ └── run-ptest │ │ │ ├── python3-ptyprocess_0.7.0.bb │ │ │ ├── python3-pulsectl_21.3.4.bb │ │ │ ├── python3-py-ubjson_0.16.1.bb │ │ │ ├── python3-pyalsaaudio_0.9.0.bb │ │ │ ├── python3-pyasn1-modules │ │ │ └── run-ptest │ │ │ ├── python3-pyasn1-modules_0.2.8.bb │ │ │ ├── python3-pyasn1 │ │ │ └── run-ptest │ │ │ ├── python3-pyasn1_0.4.8.bb │ │ │ ├── python3-pyatspi_2.34.0.bb │ │ │ ├── python3-pyaudio_0.2.11.bb │ │ │ ├── python3-pybind11-json_0.2.6.bb │ │ │ ├── python3-pybind11 │ │ │ ├── 0001-Do-not-check-pointer-size-when-cross-compiling.patch │ │ │ └── 0001-Do-not-strip-binaries.patch │ │ │ ├── python3-pybind11_2.6.2.bb │ │ │ ├── python3-pybluez_0.23.bb │ │ │ ├── python3-pychromecast_9.1.2.bb │ │ │ ├── python3-pycodestyle_2.7.0.bb │ │ │ ├── python3-pycparser_2.20.bb │ │ │ ├── python3-pycrypto │ │ │ ├── 0001-Replace-time.clock-with-time.process_time.patch │ │ │ ├── CVE-2013-7459.patch │ │ │ └── cross-compiling.patch │ │ │ ├── python3-pycrypto_2.6.1.bb │ │ │ ├── python3-pycurl_7.43.0.6.bb │ │ │ ├── python3-pydbus-manager_git.bb │ │ │ ├── python3-pydbus │ │ │ ├── 0001-Support-asynchronous-calls-58.patch │ │ │ └── 0002-Support-transformation-between-D-Bus-errors-and-exce.patch │ │ │ ├── python3-pydbus_0.6.0.bb │ │ │ ├── python3-pydicti_1.1.4.bb │ │ │ ├── python3-pyexpect_1.0.21.bb │ │ │ ├── python3-pyfirmata_1.1.0.bb │ │ │ ├── python3-pyflakes_2.3.1.bb │ │ │ ├── python3-pyhamcrest_2.0.2.bb │ │ │ ├── python3-pyiface_0.0.11.bb │ │ │ ├── python3-pyinotify_0.9.6.bb │ │ │ ├── python3-pyjks_20.0.0.bb │ │ │ ├── python3-pyjwt_2.0.1.bb │ │ │ ├── python3-pykwalify_1.8.0.bb │ │ │ ├── python3-pylint_1.8.3.bb │ │ │ ├── python3-pylyrics_1.1.0.bb │ │ │ ├── python3-pymisp_2.4.141.1.bb │ │ │ ├── python3-pymongo_3.11.3.bb │ │ │ ├── python3-pymysql_1.0.2.bb │ │ │ ├── python3-pynacl_1.4.0.bb │ │ │ ├── python3-pynetlinux_1.1.bb │ │ │ ├── python3-pyopenssl_20.0.1.bb │ │ │ ├── python3-pyperclip_1.8.2.bb │ │ │ ├── python3-pyperf_2.2.0.bb │ │ │ ├── python3-pyrad_2.4.bb │ │ │ ├── python3-pyroute2 │ │ │ └── run-ptest │ │ │ ├── python3-pyroute2_0.5.18.bb │ │ │ ├── python3-pyrsistent_0.17.3.bb │ │ │ ├── python3-pyscaffold_4.0.1.bb │ │ │ ├── python3-pyserial │ │ │ └── run-ptest │ │ │ ├── python3-pyserial_3.5.bb │ │ │ ├── python3-pysocks_1.7.1.bb │ │ │ ├── python3-pysonos_0.0.42.bb │ │ │ ├── python3-pystache_0.5.4.bb │ │ │ ├── python3-pystemd_0.8.0.bb │ │ │ ├── python3-pytest-asyncio_0.14.0.bb │ │ │ ├── python3-pytest-helpers-namespace_2021.3.24.bb │ │ │ ├── python3-pytest-html_3.1.1.bb │ │ │ ├── python3-pytest-metadata_1.11.0.bb │ │ │ ├── python3-pytest-runner_5.3.0.bb │ │ │ ├── python3-pytest-tempdir_2019.10.12.bb │ │ │ ├── python3-pytest-timeout_1.4.2.bb │ │ │ ├── python3-python-vlc_3.0.12117.bb │ │ │ ├── python3-pythonping_1.0.16.bb │ │ │ ├── python3-pytoml │ │ │ └── run-ptest │ │ │ ├── python3-pytoml_0.1.21.bb │ │ │ ├── python3-pytz │ │ │ └── run-ptest │ │ │ ├── python3-pytz_2021.1.bb │ │ │ ├── python3-pyudev_0.22.0.bb │ │ │ ├── python3-pyusb_1.1.1.bb │ │ │ ├── python3-pyyaml_5.4.1.bb │ │ │ ├── python3-pyzmq_22.0.3.bb │ │ │ ├── python3-qrcode_6.1.bb │ │ │ ├── python3-raven_6.10.0.bb │ │ │ ├── python3-rdflib_5.0.0.bb │ │ │ ├── python3-redis_3.5.3.bb │ │ │ ├── python3-regex_2021.4.4.bb │ │ │ ├── python3-requests-file │ │ │ └── run-ptest │ │ │ ├── python3-requests-file_1.5.1.bb │ │ │ ├── python3-requests-ftp_0.3.1.bb │ │ │ ├── python3-requests-futures_1.0.0.bb │ │ │ ├── python3-requests-oauthlib_1.3.0.bb │ │ │ ├── python3-requests-toolbelt │ │ │ └── run-ptest │ │ │ ├── python3-requests-toolbelt_0.9.1.bb │ │ │ ├── python3-requests │ │ │ └── setup.py-Support-idna-version-3.1.patch │ │ │ ├── python3-requests_2.25.1.bb │ │ │ ├── python3-rfc3339-validator_0.1.3.bb │ │ │ ├── python3-rfc3986-validator_0.1.1.bb │ │ │ ├── python3-rfc3987_1.3.8.bb │ │ │ ├── python3-robotframework-seriallibrary │ │ │ └── e31d5fdf2ea00ac6349e64580a20816783064dd4.patch │ │ │ ├── python3-robotframework-seriallibrary_0.3.1.bb │ │ │ ├── python3-robotframework_4.0.1.bb │ │ │ ├── python3-rsa_4.7.2.bb │ │ │ ├── python3-ruamel-yaml_0.17.4.bb │ │ │ ├── python3-scapy_0.26.bb │ │ │ ├── python3-scrypt │ │ │ ├── 0001-py-scrypt-remove-the-hard-coded-include-paths.patch │ │ │ └── run-ptest │ │ │ ├── python3-scrypt_0.8.17.bb │ │ │ ├── python3-sdnotify_0.3.2.bb │ │ │ ├── python3-semantic-version_2.8.5.bb │ │ │ ├── python3-semver │ │ │ └── run-ptest │ │ │ ├── python3-semver_2.13.0.bb │ │ │ ├── python3-sentry-sdk_1.0.0.bb │ │ │ ├── python3-serpent │ │ │ └── run-ptest │ │ │ ├── python3-serpent_1.30.2.bb │ │ │ ├── python3-sh_1.14.1.bb │ │ │ ├── python3-sijax_0.3.2.bb │ │ │ ├── python3-simpleeval │ │ │ └── run-ptest │ │ │ ├── python3-simpleeval_0.9.10.bb │ │ │ ├── python3-simplejson_3.17.2.bb │ │ │ ├── python3-slip-dbus_0.6.5.bb │ │ │ ├── python3-smbus2_0.4.1.bb │ │ │ ├── python3-smbus_4.2.bb │ │ │ ├── python3-smpplib │ │ │ └── run-ptest │ │ │ ├── python3-smpplib_2.1.0.bb │ │ │ ├── python3-snappy_0.6.0.bb │ │ │ ├── python3-socketio_5.1.0.bb │ │ │ ├── python3-soupsieve │ │ │ └── run-ptest │ │ │ ├── python3-soupsieve_2.2.1.bb │ │ │ ├── python3-speaklater_1.3.bb │ │ │ ├── python3-speedtest-cli_2.1.3.bb │ │ │ ├── python3-spidev_3.5.bb │ │ │ ├── python3-sqlalchemy_1.4.7.bb │ │ │ ├── python3-sqlparse │ │ │ ├── 0001-sqlparse-change-shebang-to-python3.patch │ │ │ └── run-ptest │ │ │ ├── python3-sqlparse_0.4.1.bb │ │ │ ├── python3-sqlsoup_0.9.1.bb │ │ │ ├── python3-stevedore_3.3.0.bb │ │ │ ├── python3-strict-rfc3339_0.7.bb │ │ │ ├── python3-supervisor │ │ │ ├── supervisor.service │ │ │ └── supervisord.conf │ │ │ ├── python3-supervisor_4.2.1.bb │ │ │ ├── python3-sympy_1.8.bb │ │ │ ├── python3-systemd_234.bb │ │ │ ├── python3-tabulate_0.8.9.bb │ │ │ ├── python3-term_2.3.bb │ │ │ ├── python3-termcolor_1.1.0.bb │ │ │ ├── python3-test-generator │ │ │ └── run-ptest │ │ │ ├── python3-test-generator_0.1.2.bb │ │ │ ├── python3-textparser_0.23.0.bb │ │ │ ├── python3-texttable_1.6.3.bb │ │ │ ├── python3-tinyrecord_0.2.0.bb │ │ │ ├── python3-tornado_6.1.bb │ │ │ ├── python3-tqdm_4.60.0.bb │ │ │ ├── python3-trafaret-config_2.0.2.bb │ │ │ ├── python3-trafaret_2.1.0.bb │ │ │ ├── python3-traitlets_5.0.5.bb │ │ │ ├── python3-transitions_0.8.8.bb │ │ │ ├── python3-twine_3.4.1.bb │ │ │ ├── python3-twisted_21.2.0.bb │ │ │ ├── python3-twitter_3.10.0.bb │ │ │ ├── python3-twofish │ │ │ └── 0001-Fix-missing-return-statements-in-module-stubs.patch │ │ │ ├── python3-twofish_0.3.0.bb │ │ │ ├── python3-txaio_21.2.1.bb │ │ │ ├── python3-txdbus_1.1.2.bb │ │ │ ├── python3-typed-ast_1.4.3.bb │ │ │ ├── python3-typeguard │ │ │ └── run-ptest │ │ │ ├── python3-typeguard_2.12.0.bb │ │ │ ├── python3-typing-extensions_3.7.4.3.bb │ │ │ ├── python3-tzlocal_2.1.bb │ │ │ ├── python3-u-msgpack-python │ │ │ └── run-ptest │ │ │ ├── python3-u-msgpack-python_2.7.1.bb │ │ │ ├── python3-ujson │ │ │ └── run-ptest │ │ │ ├── python3-ujson_4.0.2.bb │ │ │ ├── python3-unidiff │ │ │ └── run-ptest │ │ │ ├── python3-unidiff_0.6.0.bb │ │ │ ├── python3-uritemplate │ │ │ └── run-ptest │ │ │ ├── python3-uritemplate_3.0.1.bb │ │ │ ├── python3-urllib3_1.26.4.bb │ │ │ ├── python3-vcversioner_2.16.0.0.bb │ │ │ ├── python3-versiontools_1.9.1.bb │ │ │ ├── python3-visitor_0.1.3.bb │ │ │ ├── python3-waitress_2.0.0.bb │ │ │ ├── python3-watchdog_2.0.2.bb │ │ │ ├── python3-webcolors │ │ │ └── run-ptest │ │ │ ├── python3-webcolors_1.11.1.bb │ │ │ ├── python3-webencodings_0.5.1.bb │ │ │ ├── python3-websocket-client_0.58.0.bb │ │ │ ├── python3-websockets_8.1.bb │ │ │ ├── python3-werkzeug_1.0.1.bb │ │ │ ├── python3-wheel_0.36.2.bb │ │ │ ├── python3-whoosh │ │ │ └── run-ptest │ │ │ ├── python3-whoosh_2.7.4.bb │ │ │ ├── python3-wpa-supplicant │ │ │ └── 0001-cli-drop-the-second-argument-from-click.argument-dec.patch │ │ │ ├── python3-wpa-supplicant_0.2.bb │ │ │ ├── python3-wrapt_1.12.1.bb │ │ │ ├── python3-wtforms_2.3.3.bb │ │ │ ├── python3-xlrd │ │ │ └── run-ptest │ │ │ ├── python3-xlrd_2.0.1.bb │ │ │ ├── python3-xlsxwriter_1.3.8.bb │ │ │ ├── python3-xmlrunner_1.7.7.bb │ │ │ ├── python3-xmlschema_1.6.1.bb │ │ │ ├── python3-xmltodict │ │ │ └── run-ptest │ │ │ ├── python3-xmltodict_0.12.0.bb │ │ │ ├── python3-xmodem_0.4.6.bb │ │ │ ├── python3-xstatic-font-awesome_4.7.0.0.bb │ │ │ ├── python3-xstatic_1.0.2.bb │ │ │ ├── python3-xxhash │ │ │ └── run-ptest │ │ │ ├── python3-xxhash_2.0.0.bb │ │ │ ├── python3-yamlloader_1.0.0.bb │ │ │ ├── python3-yappi │ │ │ └── run-ptest │ │ │ ├── python3-yappi_1.3.2.bb │ │ │ ├── python3-yarl │ │ │ └── run-ptest │ │ │ ├── python3-yarl_1.6.3.bb │ │ │ └── python3-zopeinterface_5.3.0.bb │ └── recipes-extended │ │ ├── python-blivet │ │ ├── python3-blivet │ │ │ ├── 0001-comment-out-selinux.patch │ │ │ ├── 0002-run_program-support-timeout.patch │ │ │ ├── 0003-support-infinit-timeout.patch │ │ │ ├── 0004-fix-new.roots-object-is-not-iterable.patch │ │ │ ├── 0005-fix-incorrect-timeout-while-system-time-changed.patch │ │ │ ├── 0006-tweak-btrfs-packages.patch │ │ │ ├── 0007-invoking-mount-with-infinite-timeout.patch │ │ │ ├── 0008-use-oe-variable-to-replace-hardcoded-dir.patch │ │ │ ├── 0009-invoking-fsck-with-infinite-timeout.patch │ │ │ ├── 0010-invoking-mkfs-with-infinite-timeout.patch │ │ │ └── 0011-invoking-dd-with-infinite-timeout.patch │ │ ├── python3-blivet_3.1.4.bb │ │ ├── python3-blivetgui │ │ │ └── 0001-Fix-return-type-of-BlivetUtils.get_disks-1658893.patch │ │ └── python3-blivetgui_2.1.10.bb │ │ ├── python-cson │ │ └── python3-cson_git.bb │ │ ├── python-meh │ │ └── python3-meh_0.50.bb │ │ ├── python-pyephem │ │ └── python3-pyephem_3.7.7.1.bb │ │ ├── python-pykickstart │ │ ├── files │ │ │ ├── 0001-support-authentication-for-kickstart.patch │ │ │ ├── 0002-pykickstart-parser.py-add-lock-for-readKickstart-and.patch │ │ │ ├── 0003-comment-out-sections-shutdown-and-environment-in-gen.patch │ │ │ └── 0004-load.py-retry-to-invoke-request-with-timeout.patch │ │ └── python3-pykickstart_3.32.bb │ │ ├── python-pyparted │ │ └── python3-pyparted_3.11.7.bb │ │ ├── pywbem │ │ └── python3-pywbem_1.1.3.bb │ │ ├── pywbemtools │ │ └── python3-pywbemtools_0.8.1.bb │ │ └── send2trash │ │ └── python3-send2trash_1.5.0.bb ├── meta-webserver │ ├── COPYING.MIT │ ├── README │ ├── conf │ │ └── layer.conf │ ├── licenses │ │ ├── OML │ │ └── Xdebug │ ├── recipes-core │ │ ├── images │ │ │ ├── meta-webserver-image-base.bb │ │ │ └── meta-webserver-image.bb │ │ └── packagesgroups │ │ │ └── packagegroup-meta-webserver.bb │ ├── recipes-httpd │ │ ├── apache-mod │ │ │ └── apache-websocket_git.bb │ │ ├── apache2 │ │ │ ├── apache2 │ │ │ │ ├── 0001-configure-use-pkg-config-for-PCRE-detection.patch │ │ │ │ ├── 0001-support-apxs.in-force-destdir-to-be-empty-string.patch │ │ │ │ ├── 0002-apache2-bump-up-the-core-size-limit-if-CoreDumpDirec.patch │ │ │ │ ├── 0003-apache2-do-not-export-apr-apr-util-symbols-when-usin.patch │ │ │ │ ├── 0004-apache2-log-the-SELinux-context-at-startup.patch │ │ │ │ ├── 0005-replace-lynx-to-curl-in-apachectl-script.patch │ │ │ │ ├── 0006-apache2-fix-the-race-issue-of-parallel-installation.patch │ │ │ │ ├── 0007-apache2-allow-to-disable-selinux-support.patch │ │ │ │ ├── 0008-apache2-do-not-use-relative-path-for-gen_test_char.patch │ │ │ │ └── apache-configure_perlbin.patch │ │ │ ├── apache2_2.4.46.bb │ │ │ └── files │ │ │ │ ├── apache2-volatile.conf │ │ │ │ ├── apache2.service │ │ │ │ ├── init │ │ │ │ └── volatiles.04_apache2 │ │ ├── cherokee │ │ │ ├── cherokee │ │ │ │ ├── 0001-common-internal.h-Define-LLONG_MAX-if-undefined.patch │ │ │ │ ├── 0001-configure.ac-Add-foreign-to-AM_INIT_AUTOMAKE.patch │ │ │ │ ├── 0001-make-Do-not-build-po-files.patch │ │ │ │ ├── cherokee-install-configured.py-once.patch │ │ │ │ ├── cherokee.init │ │ │ │ └── cherokee.service │ │ │ └── cherokee_git.bb │ │ ├── hiawatha │ │ │ ├── files │ │ │ │ ├── hiawatha-init │ │ │ │ └── hiawatha.service │ │ │ └── hiawatha_10.11.bb │ │ ├── monkey │ │ │ ├── files │ │ │ │ ├── 0001-configure-Respect-LIBS-variable-from-env.patch │ │ │ │ ├── monkey.init │ │ │ │ └── monkey.service │ │ │ └── monkey_1.6.9.bb │ │ ├── nginx │ │ │ ├── files │ │ │ │ ├── 0001-Allow-the-overriding-of-the-endianness-via-the-confi.patch │ │ │ │ ├── default_server.site │ │ │ │ ├── nginx-cross.patch │ │ │ │ ├── nginx-fix-pidfile.patch │ │ │ │ ├── nginx-volatile.conf │ │ │ │ ├── nginx.conf │ │ │ │ ├── nginx.init │ │ │ │ ├── nginx.service │ │ │ │ └── proxy_params │ │ │ ├── nginx.inc │ │ │ ├── nginx_1.18.0.bb │ │ │ └── nginx_1.19.6.bb │ │ ├── nostromo │ │ │ ├── files │ │ │ │ ├── 0001-GNUmakefile-add-possibility-to-override-variables.patch │ │ │ │ ├── nhttpd.conf │ │ │ │ ├── nostromo │ │ │ │ ├── tmpfiles.conf │ │ │ │ └── volatiles │ │ │ └── nostromo_1.9.9.bb │ │ └── sthttpd │ │ │ ├── sthttpd │ │ │ ├── init │ │ │ ├── thttpd.conf │ │ │ └── thttpd.service │ │ │ └── sthttpd_2.27.1.bb │ ├── recipes-php │ │ ├── phpmyadmin │ │ │ ├── phpmyadmin │ │ │ │ └── apache.conf │ │ │ └── phpmyadmin_5.1.0.bb │ │ └── xdebug │ │ │ └── xdebug_2.9.5.bb │ ├── recipes-support │ │ ├── fcgi │ │ │ └── fcgi_git.bb │ │ ├── fcgiwrap │ │ │ ├── fcgiwrap │ │ │ │ └── 0001-Fix-implicit-fallthrough-warning.patch │ │ │ └── fcgiwrap_git.bb │ │ └── spawn-fcgi │ │ │ ├── spawn-fcgi-1.6.4 │ │ │ └── fix_configure_ipv6_test.patch │ │ │ └── spawn-fcgi_1.6.4.bb │ └── recipes-webadmin │ │ ├── cockpit │ │ ├── cockpit_220.bb │ │ └── files │ │ │ ├── 0001-remove-tests-dep-on-gobject-intro.patch │ │ │ ├── 0002-fix-makefile-use-copy-rule-for-unmodified-files.patch │ │ │ └── cockpit.pam │ │ ├── netdata │ │ ├── netdata │ │ │ ├── netdata.conf │ │ │ └── netdata.service │ │ └── netdata_git.bb │ │ └── webmin │ │ ├── files │ │ ├── disable-version-check.patch │ │ ├── exports-lib.pl.patch │ │ ├── init-exclude.patch │ │ ├── media-tomb.patch │ │ ├── mount-excludefs.patch │ │ ├── mysql-config-fix.patch │ │ ├── net-generic.patch │ │ ├── net-lib.pl.patch │ │ ├── nfs-export.patch │ │ ├── proftpd-config-fix.patch │ │ ├── remove-python2.3.patch │ │ ├── remove-startup-option.patch │ │ ├── samba-config-fix.patch │ │ ├── setup.sh │ │ └── webmin.service │ │ └── webmin_1.850.bb └── meta-xfce │ ├── README │ ├── classes │ ├── thunar-plugin.bbclass │ ├── xfce-app.bbclass │ ├── xfce-git.bbclass │ ├── xfce-panel-plugin.bbclass │ └── xfce.bbclass │ ├── conf │ └── layer.conf │ ├── recipes-apps │ ├── catfish │ │ └── catfish_4.16.0.bb │ ├── gigolo │ │ └── gigolo_0.5.2.bb │ ├── menulibre │ │ └── menulibre_2.2.1.bb │ ├── mousepad │ │ └── mousepad_0.5.4.bb │ ├── orage │ │ ├── orage │ │ │ └── 0001-drop-setting-is_utc-member-of-icaltimetype.patch │ │ └── orage_4.12.1.bb │ ├── ristretto │ │ └── ristretto_0.10.0.bb │ ├── xarchiver │ │ └── xarchiver_git.bb │ ├── xfce-polkit │ │ └── xfce-polkit_0.3.bb │ ├── xfce4-datetime-setter │ │ ├── files │ │ │ └── fix-inner-dependency.patch │ │ └── xfce4-datetime-setter_3.32.2.bb │ ├── xfce4-notifyd │ │ └── xfce4-notifyd_0.6.2.bb │ ├── xfce4-panel-profiles │ │ ├── xfce4-panel-profiles │ │ │ └── not-create-link-to-locale.patch │ │ └── xfce4-panel-profiles_1.0.13.bb │ ├── xfce4-screensaver │ │ ├── xfce4-screensaver │ │ │ └── fix-cross-compile.patch │ │ └── xfce4-screensaver_4.16.0.bb │ ├── xfce4-screenshooter │ │ └── xfce4-screenshooter_1.9.8.bb │ ├── xfce4-taskmanager │ │ └── xfce4-taskmanager_1.5.2.bb │ └── xfce4-terminal │ │ └── xfce4-terminal_0.8.10.bb │ ├── recipes-art │ ├── cursor-themes │ │ └── openzone_1.2.3.bb │ ├── rodent-icon-theme │ │ └── rodent-icon-theme_5.0.bb │ ├── xfce-dusk-gtk3 │ │ └── xfce-dusk-gtk3_1.3.bb │ └── xfwm4-themes │ │ └── xfwm4-themes_4.10.0.bb │ ├── recipes-bindings │ └── vala │ │ ├── xfce4-vala │ │ └── 0001-configure.ac-Detect-vapidir-if-not-set-explicitly.patch │ │ └── xfce4-vala_4.10.3.bb │ ├── recipes-core │ └── images │ │ └── core-image-minimal-xfce.bb │ ├── recipes-extended │ └── imsettings │ │ ├── imsettings │ │ └── imsettings-gcc10.patch │ │ └── imsettings_1.8.2.bb │ ├── recipes-multimedia │ ├── packagegroups │ │ └── packagegroup-xfce-multimedia.bb │ ├── parole │ │ └── parole_4.16.0.bb │ ├── xfce4-mpc-plugin │ │ └── xfce4-mpc-plugin_0.5.2.bb │ └── xfmpc │ │ └── xfmpc_0.3.0.bb │ ├── recipes-panel-plugins │ ├── battery │ │ └── xfce4-battery-plugin_1.1.4.bb │ ├── calculator │ │ └── xfce4-calculator-plugin_0.7.1.bb │ ├── clipman │ │ └── xfce4-clipman-plugin_1.6.1.bb │ ├── closebutton │ │ └── xfce4-closebutton-plugin_git.bb │ ├── cpufreq │ │ └── xfce4-cpufreq-plugin_1.2.5.bb │ ├── cpugraph │ │ └── xfce4-cpugraph-plugin_1.2.3.bb │ ├── datetime │ │ └── xfce4-datetime-plugin_0.8.1.bb │ ├── diskperf │ │ └── xfce4-diskperf-plugin_2.6.3.bb │ ├── eyes │ │ └── xfce4-eyes-plugin_4.5.1.bb │ ├── fsguard │ │ └── xfce4-fsguard-plugin_1.1.2.bb │ ├── genmon │ │ └── xfce4-genmon-plugin_4.1.1.bb │ ├── mailwatch │ │ └── xfce4-mailwatch-plugin_1.3.0.bb │ ├── mount │ │ ├── xfce4-mount-plugin │ │ │ └── 0001-check-for-fstab.h-during-configure.patch │ │ └── xfce4-mount-plugin_1.1.5.bb │ ├── netload │ │ └── xfce4-netload-plugin_1.4.0.bb │ ├── notes │ │ └── xfce4-notes-plugin_1.9.0.bb │ ├── places │ │ └── xfce4-places-plugin_1.8.1.bb │ ├── pulseaudio │ │ └── xfce4-pulseaudio-plugin_0.4.3.bb │ ├── sensors │ │ ├── xfce4-sensors-plugin │ │ │ └── 0001-Do-not-check-for-sys-class-power_supply-we-are-cross.patch │ │ └── xfce4-sensors-plugin_1.3.95.bb │ ├── smartbookmark │ │ └── xfce4-smartbookmark-plugin_0.5.2.bb │ ├── systemload │ │ └── xfce4-systemload-plugin_1.3.0.bb │ ├── time-out │ │ └── xfce4-time-out-plugin_1.1.2.bb │ ├── timer │ │ └── xfce4-timer-plugin_1.7.1.bb │ ├── verve │ │ └── xfce4-verve-plugin_2.0.1.bb │ ├── wavelan │ │ └── xfce4-wavelan-plugin_0.6.2.bb │ ├── weather │ │ └── xfce4-weather-plugin_0.11.0.bb │ ├── whiskermenu │ │ └── xfce4-whiskermenu-plugin_2.5.3.bb │ └── xkb │ │ └── xfce4-xkb-plugin_0.8.2.bb │ ├── recipes-thunar-plugins │ ├── archive │ │ └── thunar-archive-plugin_0.4.0.bb │ ├── media-tags │ │ └── thunar-media-tags-plugin_0.3.0.bb │ └── shares │ │ └── thunar-shares-plugin_0.3.1.bb │ └── recipes-xfce │ ├── exo │ ├── exo │ │ ├── configure.patch │ │ ├── exo-no-tests-0.8.patch │ │ └── reduce-build-to-exo-csource-only.patch │ └── exo_4.16.1.bb │ ├── garcon │ ├── files │ │ └── 0001-xfce-applications.menu-don-t-bloat-settings-menu-by-.patch │ └── garcon_4.16.1.bb │ ├── libxfce4ui │ ├── libxfce4ui │ │ ├── 0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch │ │ └── 0002-Remove-GTK2-leftovers.patch │ └── libxfce4ui_4.16.0.bb │ ├── libxfce4util │ └── libxfce4util_4.16.0.bb │ ├── packagegroups │ ├── packagegroup-xfce-base.bb │ └── packagegroup-xfce-extended.bb │ ├── thunar-volman │ └── thunar-volman_4.16.0.bb │ ├── thunar │ └── thunar_4.16.6.bb │ ├── tumbler │ └── tumbler_4.16.0.bb │ ├── xfce4-appfinder │ └── xfce4-appfinder_4.16.1.bb │ ├── xfce4-dev-tools │ ├── xfce4-dev-tools │ │ └── 0001-Run-native-xdt-csource-on-tests.patch │ └── xfce4-dev-tools_4.16.0.bb │ ├── xfce4-panel │ ├── files │ │ ├── 0001-windowmenu-do-not-display-desktop-icon-when-no-windo.patch │ │ └── 0002-use-lxdm-to-replace-dm-tool.patch │ └── xfce4-panel_4.16.2.bb │ ├── xfce4-power-manager │ └── xfce4-power-manager_4.16.0.bb │ ├── xfce4-session │ ├── xfce4-session │ │ └── 0001-configure.in-hard-code-path-to-iceauth.patch │ └── xfce4-session_4.16.0.bb │ ├── xfce4-settings │ ├── files │ │ └── 0001-xsettings.xml-Set-default-themes.patch │ └── xfce4-settings_4.16.0.bb │ ├── xfconf │ └── xfconf_4.16.0.bb │ ├── xfdesktop │ └── xfdesktop_4.16.0.bb │ └── xfwm4 │ └── xfwm4_4.16.1.bb ├── meta-openpower ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── classes │ ├── openpower-fru-vpd.bbclass │ ├── openpower-occ-control.bbclass │ ├── openpower-software-manager-mmc.bbclass │ ├── openpower-software-manager-static.bbclass │ ├── openpower-software-manager-ubi.bbclass │ └── openpower-software-manager-virtual-pnor.bbclass ├── conf │ ├── distro │ │ ├── include │ │ │ ├── openpower-distrovars.inc │ │ │ ├── openpower-mrw.inc │ │ │ ├── openpower-ubi.inc │ │ │ └── openpower-virtual-pnor.inc │ │ └── openbmc-openpower.conf │ ├── layer.conf │ └── machine │ │ └── include │ │ ├── openpower.inc │ │ ├── p8.inc │ │ └── p9.inc ├── recipes-bsp │ ├── ecmd │ │ ├── croserver_git.bb │ │ ├── files │ │ │ └── croserver.service │ │ └── libecmd_git.bb │ ├── ffs │ │ ├── ffs.inc │ │ └── ffs_git.bb │ ├── fsidbg │ │ └── fsidbg_git.bb │ ├── pdbg │ │ └── pdbg_3.2.bb │ └── skiboot │ │ ├── gard_git.bb │ │ ├── pflash_git.bb │ │ └── skiboot.inc ├── recipes-devtools │ └── hostboot │ │ └── hostboot-debug-tools.bb └── recipes-phosphor │ ├── configuration │ ├── openpower-yaml-config.bb │ └── openpower-yaml-config │ │ ├── ipmi-fru-properties-mrw.yaml │ │ ├── ipmi-hostboot-fru-mrw.yaml │ │ ├── ipmi-hostboot-volatile-sensor-mrw.yaml │ │ └── ipmi-occ-active-sensor-mrw.yaml │ ├── dbus │ ├── openpower-dbus-interfaces-mapper-config-native.bb │ └── phosphor-mapper-config-native%.bbappend │ ├── debug │ ├── openpower-debug-collector-systemd-links.inc │ ├── openpower-debug-collector-yaml-provider_git.bb │ ├── openpower-debug-collector.inc │ ├── openpower-debug-collector │ │ ├── openpower-debug-collector-checkstop@.service │ │ ├── openpower-debug-collector-watchdog-timeout@.service │ │ └── openpower-debug-collector-watchdog@.service │ └── openpower-debug-collector_git.bb │ ├── dump │ ├── phosphor-debug-collector │ │ └── plugins.d │ │ │ └── guard │ ├── phosphor-debug-collector_%.bbappend │ ├── phosphor-debug-errors-native.bbappend │ └── phosphor-debug-errors-native │ │ └── errors_watch.yaml │ ├── flash │ ├── openpower-software-manager_git.bb │ ├── phosphor-software-manager │ │ └── software-bmc-updater.conf │ └── phosphor-software-manager_%.bbappend │ ├── fsi │ ├── op-fsi.bb │ └── op-fsi │ │ ├── fsi-disable.service │ │ ├── fsi-enable.service │ │ └── fsi-scan@.service │ ├── host │ ├── aspeed-lpc-ctrl │ │ └── pnorboot.service │ ├── aspeed-lpc-ctrl_git.bb │ ├── checkstop-monitor.bb │ ├── checkstop-monitor │ │ ├── checkstop.conf │ │ └── obmc │ │ │ └── gpio │ │ │ └── checkstop │ ├── op-host-control │ │ ├── cfam_override@.service │ │ └── start_host@.service │ ├── op-proc-control-systemd-links.bb │ ├── op-proc-control_git.bb │ ├── p9-cfam-override.bb │ └── p9-host-start.bb │ ├── initfs │ └── obmc-phosphor-initfs.bbappend │ ├── interfaces │ └── bmcweb_%.bbappend │ ├── ipmi │ ├── hostboot-inventory-config-native.bb │ ├── hostboot-inventory-config │ │ └── config.yaml │ ├── openpower-host-ipmi-flash_git.bb │ ├── openpower-ipmi-oem-error-native_git.bb │ ├── openpower-ipmi-oem-sensor-inventory-mrw-native.bb │ ├── openpower-ipmi-oem-sensor-inventory-mrw │ │ └── openpower-config.yaml │ ├── openpower-ipmi-oem-whitelist-native.bb │ ├── openpower-ipmi-oem-whitelist │ │ └── openpower-ipmi-oem-whitelist-native.conf │ ├── openpower-ipmi-oem-yaml-provider_git.bb │ ├── openpower-ipmi-oem.inc │ ├── openpower-ipmi-oem_git.bb │ └── phosphor-ipmi-sensor-config-native.bbappend │ ├── logging │ ├── openpower-hw-diags_git.bb │ └── openpower-libhei_git.bb │ ├── network │ ├── first-boot-set-hostname │ │ ├── first-boot-set-hostname.service │ │ └── first-boot-set-hostname.sh │ ├── first-boot-set-hostname_1.0.bb │ ├── first-boot-set-mac │ │ ├── first-boot-set-mac.sh │ │ └── first-boot-set-mac@.service │ └── first-boot-set-mac_1.0.bb │ ├── occ │ ├── openpower-occ-control-config-example-native_git.bb │ ├── openpower-occ-control-config-mrw-native.bb │ ├── openpower-occ-control-yaml-provider_git.bb │ ├── openpower-occ-control.inc │ ├── openpower-occ-control │ │ ├── occ-active.sh │ │ ├── op-occ-disable@.service │ │ ├── op-occ-enable@.service │ │ └── org.open_power.OCC.Control.service │ └── openpower-occ-control_git.bb │ ├── packagegroups │ ├── nativesdk-packagegroup-sdk-host.bbappend │ ├── packagegroup-obmc-apps.bbappend │ ├── packagegroup-obmc-ipmid-providers.bbappend │ ├── packagegroup-obmc-phosphor-debugtools.bbappend │ ├── packagegroup-obmc-yaml-providers.bbappend │ └── packagegroup-op-apps.bb │ ├── vpd │ ├── openpower-fru-inventory-example-native.bb │ ├── openpower-fru-inventory-example │ │ └── inventory │ ├── openpower-fru-inventory-mrw-native.bb │ ├── openpower-fru-properties-example-native.bb │ ├── openpower-fru-properties-example │ │ └── example.yaml │ ├── openpower-fru-properties-mrw-native.bb │ ├── openpower-fru-properties-mrw │ │ └── config.yaml │ ├── openpower-fru-vpd-layout-native.bb │ ├── openpower-fru-vpd-layout │ │ └── layout.yaml │ ├── openpower-fru-vpd.inc │ ├── openpower-fru-vpd │ │ ├── 70-op-vpd.rules │ │ └── op-vpd-parser.service │ └── openpower-fru-vpd_git.bb │ └── webui │ ├── phosphor-webui │ └── df-openpower │ │ └── config.json │ └── phosphor-webui_%.bbappend ├── meta-phosphor ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── aspeed-layer │ ├── recipes-bsp │ │ └── u-boot │ │ │ ├── files │ │ │ ├── 0001-aspeed-Disable-unnecessary-features.patch │ │ │ ├── 0001-configs-ast-Add-redundnant-env.patch │ │ │ ├── 0002-board-aspeed-aspeednic-Use-MAC2-for-networking.patch │ │ │ ├── 0002-config-ast-common-hack-bootopts.patch │ │ │ ├── 0003-config-ast-common-Add-bootopts-to-support-ubi-and-mt.patch │ │ │ ├── 0004-config-ast-common-Add-conditional-factory-reset-comm.patch │ │ │ └── 0005-config-ast-common-Fall-back-to-secondary-flash-on-fa.patch │ │ │ ├── u-boot-aspeed-sdk_%.bbappend │ │ │ ├── u-boot-aspeed.inc │ │ │ ├── u-boot-aspeed_%.bbappend │ │ │ └── u-boot-fw-utils-aspeed_%.bbappend │ ├── recipes-connectivity │ │ └── jsnbd │ │ │ ├── jsnbd │ │ │ └── state_hook │ │ │ └── jsnbd_git.bbappend │ └── recipes-kernel │ │ └── cf-fsi-firmware │ │ └── cf-fsi-firmware_git.bb ├── classes │ ├── dbus-dir.bbclass │ ├── image_types_phosphor.bbclass │ ├── image_types_phosphor_nuvoton.bbclass │ ├── image_version.bbclass │ ├── mrw-rev.bbclass │ ├── mrw-xml.bbclass │ ├── obmc-phosphor-dbus-service.bbclass │ ├── obmc-phosphor-debug-tarball.bbclass │ ├── obmc-phosphor-discovery-service.bbclass │ ├── obmc-phosphor-image.bbclass │ ├── obmc-phosphor-ipmiprovider-symlink.bbclass │ ├── obmc-phosphor-kernel-version.bbclass │ ├── obmc-phosphor-py-daemon.bbclass │ ├── obmc-phosphor-pydbus-service.bbclass │ ├── obmc-phosphor-sdbus-service.bbclass │ ├── obmc-phosphor-systemd.bbclass │ ├── obmc-phosphor-utils.bbclass │ ├── obmc-xmlpatch.bbclass │ ├── phosphor-dbus-monitor.bbclass │ ├── phosphor-dbus-yaml.bbclass │ ├── phosphor-debug-collector.bbclass │ ├── phosphor-deploy-ssh-keys.bbclass │ ├── phosphor-fan.bbclass │ ├── phosphor-inventory-manager.bbclass │ ├── phosphor-ipmi-fru.bbclass │ ├── phosphor-ipmi-host-whitelist.bbclass │ ├── phosphor-ipmi-host.bbclass │ ├── phosphor-logging-yaml-provider.bbclass │ ├── phosphor-logging.bbclass │ ├── phosphor-mapper.bbclass │ ├── phosphor-mapperdir.bbclass │ ├── phosphor-rootfs-postcommands.bbclass │ ├── phosphor-settings-manager.bbclass │ ├── phosphor-software-manager-mmc.bbclass │ ├── phosphor-software-manager-ubi-fs.bbclass │ ├── skeleton-gdbus.bbclass │ ├── skeleton-python.bbclass │ ├── skeleton-rev.bbclass │ ├── skeleton-sdbus.bbclass │ └── skeleton.bbclass ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── distro │ │ ├── include │ │ │ ├── phosphor-aspeednic-use-mac2.inc │ │ │ ├── phosphor-base.inc │ │ │ ├── phosphor-defaults.inc │ │ │ ├── phosphor-isolation.inc │ │ │ ├── phosphor-mmc.inc │ │ │ ├── phosphor-mrw.inc │ │ │ └── phosphor-ubi.inc │ │ └── openbmc-phosphor.conf │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── include │ │ ├── ibm-power-cpu.inc │ │ ├── ibm-power10-cpu.inc │ │ ├── ibm-power8-cpu.inc │ │ ├── ibm-power9-cpu.inc │ │ └── obmc-bsp-common.inc ├── nuvoton-layer │ ├── recipes-connectivity │ │ └── jsnbd │ │ │ ├── jsnbd │ │ │ └── state_hook │ │ │ └── jsnbd_git.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ └── linux-nuvoton_%.bbappend │ └── recipes-phosphor │ │ └── host │ │ └── phosphor-host-postd_%.bbappend ├── raspberrypi │ └── recipes-kernel │ │ └── linux │ │ └── linux-raspberrypi_%.bbappend ├── recipes-connectivity │ ├── avahi │ │ ├── avahi-daemon │ │ │ └── avahi-daemon-override.conf │ │ └── avahi_%.bbappend │ ├── jsnbd │ │ └── jsnbd_git.bb │ └── openssl │ │ └── openssl_%.bbappend ├── recipes-core │ ├── base-files │ │ ├── base-files │ │ │ ├── 50-rp_filter.conf │ │ │ ├── df-mmc │ │ │ │ └── fstab │ │ │ └── df-ubi │ │ │ │ └── fstab │ │ └── base-files_%.bbappend │ ├── busybox │ │ ├── busybox │ │ │ ├── busybox.cfg │ │ │ ├── flash.cfg │ │ │ ├── less.cfg │ │ │ ├── mountpoint.cfg │ │ │ └── reboot.cfg │ │ └── busybox_%.bbappend │ ├── dropbear │ │ ├── dropbear │ │ │ ├── dropbear.default │ │ │ ├── dropbearkey.service │ │ │ ├── localoptions.h │ │ │ └── options.patch │ │ └── dropbear_%.bbappend │ ├── glib-2.0 │ │ └── glib-2.0%.bbappend │ ├── os-release │ │ └── os-release.bbappend │ ├── packagegroups │ │ ├── nativesdk-packagegroup-sdk-host.bbappend │ │ ├── packagegroup-core-standalone-sdk-target.bbappend │ │ └── packagegroup-core-tools-profile.bbappend │ └── systemd │ │ ├── obmc-targets.bb │ │ ├── phosphor-systemd-policy.bb │ │ ├── phosphor-systemd-policy │ │ ├── journald-maxlevel-policy.conf │ │ └── service-restart-policy.conf │ │ ├── systemd │ │ └── 0001-sd-bus-Don-t-automatically-add-ObjectManager.patch │ │ └── systemd_%.bbappend ├── recipes-devtools │ ├── i2c-tools │ │ ├── i2c-tools │ │ │ ├── 0001-4-byte-read-support-466.patch │ │ │ └── 0001-i2cget-Add-support-for-i2c-block-data.patch │ │ └── i2c-tools_%.bbappend │ ├── iotools │ │ ├── iotools │ │ │ └── iotools-setup.service │ │ └── iotools_1.6.bb │ ├── perl │ │ └── yaml-tiny_1.73.bb │ ├── python │ │ ├── pyphosphor_git.bb │ │ └── python3_%.bbappend │ └── rsync │ │ └── rsync_%.bbappend ├── recipes-extended │ ├── gpioplus │ │ └── gpioplus_git.bb │ ├── pam │ │ ├── libpam │ │ │ └── pam.d │ │ │ │ ├── common-account │ │ │ │ ├── common-auth │ │ │ │ ├── common-password │ │ │ │ └── common-session │ │ ├── libpam_%.bbappend │ │ └── pam-ipmi_git.bb │ ├── rsyslog │ │ ├── rsyslog │ │ │ ├── rsyslog.conf │ │ │ └── server.conf │ │ └── rsyslog_%.bbappend │ ├── sdbusplus │ │ ├── python3-sdbus++_git.bb │ │ ├── sdbusplus-rev.inc │ │ └── sdbusplus_git.bb │ ├── sdeventplus │ │ └── sdeventplus_git.bb │ └── stdplus │ │ └── stdplus_git.bb ├── recipes-graphics │ ├── libvncserver │ │ └── libvncserver_%.bbappend │ └── obmc-ikvm │ │ └── obmc-ikvm_git.bb ├── recipes-phosphor │ ├── bios │ │ └── biosconfig-manager_git.bb │ ├── certificate │ │ ├── phosphor-bmcweb-cert-config.bb │ │ ├── phosphor-bmcweb-cert-config │ │ │ └── env │ │ ├── phosphor-certificate-manager │ │ │ └── phosphor-certificate-manager@.service │ │ ├── phosphor-certificate-manager_git.bb │ │ ├── phosphor-nslcd-authority-cert-config.bb │ │ ├── phosphor-nslcd-authority-cert-config │ │ │ └── env │ │ ├── phosphor-nslcd-cert-config.bb │ │ └── phosphor-nslcd-cert-config │ │ │ └── env │ ├── chassis │ │ ├── obmc-control-chassis │ │ │ └── org.openbmc.control.Chassis@.service │ │ ├── obmc-control-chassis_git.bb │ │ ├── obmc-host-failure-reboots.bb │ │ ├── obmc-host-failure-reboots │ │ │ └── host-failure-reboots@.service │ │ ├── obmc-op-control-power │ │ │ ├── obmc │ │ │ │ └── power_control │ │ │ ├── op-power-start@.service │ │ │ ├── op-power-stop@.service │ │ │ ├── op-powered-off@.service │ │ │ ├── op-reset-chassis-on@.service │ │ │ ├── op-reset-chassis-running@.service │ │ │ ├── op-wait-power-off@.service │ │ │ ├── op-wait-power-on@.service │ │ │ └── org.openbmc.control.Power@.service │ │ ├── obmc-op-control-power_git.bb │ │ ├── obmc-phosphor-buttons_git.bb │ │ └── obmc-phosphor-power_git.bb │ ├── clear-once │ │ ├── clear-once.bb │ │ └── clear-once │ │ │ └── clear-once.service │ ├── configuration │ │ ├── entity-manager │ │ │ ├── blocklist.json │ │ │ ├── ibm-power10-cpu │ │ │ │ └── blocklist.json │ │ │ └── ibm-power9-cpu │ │ │ │ └── blocklist.json │ │ └── entity-manager_git.bb │ ├── console │ │ ├── obmc-console │ │ │ └── obmc-console.conf │ │ └── obmc-console_git.bb │ ├── datetime │ │ └── phosphor-time-manager_git.bb │ ├── dbus │ │ ├── dbus-perms.bb │ │ ├── dbus-perms │ │ │ └── org.openbmc.conf │ │ ├── phosphor-dbus-interfaces-mapper-config-native.bb │ │ ├── phosphor-dbus-interfaces_git.bb │ │ ├── phosphor-dbus-monitor-config.bb │ │ ├── phosphor-dbus-monitor │ │ │ ├── phosphor-dbus-monitor.service │ │ │ └── phosphor-msl-verify.service │ │ ├── phosphor-dbus-monitor_git.bb │ │ ├── phosphor-legacy-namespace-mapper-config-native.bb │ │ ├── phosphor-mapper-config-native.bb │ │ ├── phosphor-mapper │ │ │ ├── mapper-subtree-remove@.service │ │ │ ├── mapper-wait@.service │ │ │ ├── xyz.openbmc_project.ObjectMapper.conf │ │ │ └── xyz.openbmc_project.ObjectMapper.service │ │ └── phosphor-mapper_git.bb │ ├── dump │ │ ├── phosphor-debug-collector.inc │ │ ├── phosphor-debug-collector │ │ │ ├── coretemp.conf │ │ │ ├── obmc-dump-monitor.service │ │ │ └── xyz.openbmc_project.Dump.Manager.service │ │ ├── phosphor-debug-collector_git.bb │ │ ├── phosphor-debug-errors-native.bb │ │ └── phosphor-debug-errors │ │ │ └── errors_watch.yaml │ ├── ecc │ │ └── phosphor-ecc_git.bb │ ├── fans │ │ ├── obmc-control-fan │ │ │ ├── obmc-max-fans.service │ │ │ └── org.openbmc.control.Fans.service │ │ ├── obmc-control-fan_git.bb │ │ ├── phosphor-fan-control-events-config.bb │ │ ├── phosphor-fan-control-events-config │ │ │ └── events.yaml │ │ ├── phosphor-fan-control-fan-config-mrw.bb │ │ ├── phosphor-fan-control-fan-config.bb │ │ ├── phosphor-fan-control-fan-config │ │ │ └── fans.yaml │ │ ├── phosphor-fan-control-zone-conditions-config.bb │ │ ├── phosphor-fan-control-zone-conditions-config │ │ │ └── zone_conditions.yaml │ │ ├── phosphor-fan-control-zone-config.bb │ │ ├── phosphor-fan-control-zone-config │ │ │ └── zones.yaml │ │ ├── phosphor-fan-monitor-config.bb │ │ ├── phosphor-fan-monitor-config │ │ │ └── monitor.yaml │ │ ├── phosphor-fan-presence-config.bb │ │ ├── phosphor-fan-presence-config │ │ │ └── config.yaml │ │ ├── phosphor-fan-presence-mrw.bb │ │ ├── phosphor-fan.inc │ │ ├── phosphor-fan │ │ │ ├── phosphor-fan-control-init@.service │ │ │ └── phosphor-fan-control@.service │ │ ├── phosphor-fan_git.bb │ │ └── phosphor-pid-control_git.bb │ ├── flash │ │ ├── files │ │ │ └── OpenBMC.priv │ │ ├── noverify-bmc-update.bb │ │ ├── noverify-bmc-update │ │ │ ├── config-bmc.json │ │ │ ├── noverify-bmc-update.service │ │ │ └── noverify-bmc-verify.service │ │ ├── obmc-flash-bios │ │ │ ├── obmc-flash-init.service │ │ │ └── org.openbmc.control.Flash.service │ │ ├── obmc-flash-bios_git.bb │ │ ├── obmc-flash-bmc │ │ │ └── org.openbmc.control.BmcFlash.service │ │ ├── obmc-flash-bmc_git.bb │ │ ├── obmc-flash-bp-fw │ │ │ ├── obmc-flash-init.service │ │ │ └── org.openbmc.control.Flash.service │ │ ├── obmc-flash-bp-fw_git.bb │ │ ├── obmc-flash-hpm-fpga │ │ │ ├── obmc-flash-init.service │ │ │ └── org.openbmc.control.Flash.service │ │ ├── obmc-flash-hpm-fpga_git.bb │ │ ├── obmc-flash-retimer-bundle │ │ │ ├── obmc-flash-init.service │ │ │ └── org.openbmc.control.Flash.service │ │ ├── obmc-flash-retimer-bundle_git.bb │ │ ├── obmc-flash-retimer │ │ │ ├── obmc-flash-init.service │ │ │ └── org.openbmc.control.Flash.service │ │ ├── obmc-flash-retimer_git.bb │ │ ├── obmc-flash-scm-fpga │ │ │ ├── obmc-flash-init.service │ │ │ └── org.openbmc.control.Flash.service │ │ ├── obmc-flash-scm-fpga_git.bb │ │ ├── obmc-flash-vr-bundle │ │ │ ├── obmc-flash-init.service │ │ │ └── org.openbmc.control.Flash.service │ │ ├── obmc-flash-vr-bundle_git.bb │ │ ├── obmc-mgr-download │ │ │ └── org.openbmc.managers.Download.service │ │ ├── obmc-mgr-download_git.bb │ │ ├── obmc-op-flasher_git.bb │ │ ├── phosphor-hostfw-image.bb │ │ ├── phosphor-image-signing.bb │ │ ├── phosphor-insecure-signing-key-native.bb │ │ ├── phosphor-software-manager-error-native_git.bb │ │ ├── phosphor-software-manager-yaml-provider_git.bb │ │ ├── phosphor-software-manager.inc │ │ └── phosphor-software-manager_git.bb │ ├── gpio │ │ └── phosphor-gpio-monitor_git.bb │ ├── health │ │ └── phosphor-health-monitor_git.bb │ ├── host │ │ ├── obmc-op-control-host │ │ │ ├── op-start-host@.service │ │ │ └── org.openbmc.control.Host@.service │ │ ├── obmc-op-control-host_git.bb │ │ └── phosphor-host-postd_git.bb │ ├── images │ │ ├── obmc-phosphor-debug-tarball.bb │ │ ├── obmc-phosphor-image-base.bb │ │ ├── obmc-phosphor-image.bb │ │ └── obmc-phosphor-initramfs.bb │ ├── initrdscripts │ │ ├── files │ │ │ ├── obmc-init.sh │ │ │ ├── obmc-shutdown.sh │ │ │ ├── obmc-update.sh │ │ │ └── whitelist │ │ ├── obmc-phosphor-initfs.bb │ │ ├── phosphor-mmc-init.bb │ │ └── phosphor-mmc-init │ │ │ └── mmc-init.sh │ ├── interfaces │ │ ├── bmcweb │ │ │ └── run-ptest │ │ ├── bmcweb_git.bb │ │ ├── rest-dbus │ │ │ ├── rest-dbus.service │ │ │ └── rest-dbus.socket │ │ ├── rest-dbus_git.bb │ │ ├── slpd-lite │ │ │ └── slpd-lite.service │ │ └── slpd-lite_git.bb │ ├── inventory │ │ ├── phosphor-inventory-manager-assettag.bb │ │ ├── phosphor-inventory-manager-assettag │ │ │ └── assettag.yaml │ │ ├── phosphor-inventory-manager.inc │ │ ├── phosphor-inventory-manager │ │ │ └── xyz.openbmc_project.Inventory.Manager.service │ │ └── phosphor-inventory-manager_git.bb │ ├── ipmi │ │ ├── ipmi-blob-tool_git.bb │ │ ├── ipmitool │ │ │ └── enterprise-numbers │ │ ├── ipmitool_%.bbappend │ │ ├── phosphor-ipmi-blobs-binarystore_git.bb │ │ ├── phosphor-ipmi-blobs_git.bb │ │ ├── phosphor-ipmi-bt │ │ │ └── org.openbmc.HostIpmi.service │ │ ├── phosphor-ipmi-bt_git.bb │ │ ├── phosphor-ipmi-config.bb │ │ ├── phosphor-ipmi-config │ │ │ ├── channel_access.json │ │ │ ├── channel_config.json │ │ │ ├── cipher_list.json │ │ │ ├── cs_privilege_levels.json │ │ │ ├── dcmi_cap.json │ │ │ ├── dcmi_sensors.json │ │ │ ├── dev_id.json │ │ │ ├── entity-map.json │ │ │ └── power_reading.json │ │ ├── phosphor-ipmi-ethstats_git.bb │ │ ├── phosphor-ipmi-flash_git.bb │ │ ├── phosphor-ipmi-fru-hostfw-config-example-native_git.bb │ │ ├── phosphor-ipmi-fru-inventory-example-native_git.bb │ │ ├── phosphor-ipmi-fru-inventory-mrw-native_git.bb │ │ ├── phosphor-ipmi-fru-merge-config-native.bb │ │ ├── phosphor-ipmi-fru-properties-mrw-native.bb │ │ ├── phosphor-ipmi-fru-properties-mrw │ │ │ └── config.yaml │ │ ├── phosphor-ipmi-fru-properties-native.bb │ │ ├── phosphor-ipmi-fru-properties │ │ │ └── extra-properties.yaml │ │ ├── phosphor-ipmi-fru-read-bmc-inventory-native.bb │ │ ├── phosphor-ipmi-fru-read-bmc-inventory │ │ │ └── bmc-fru-config.yaml │ │ ├── phosphor-ipmi-fru-read-inventory-example-native_git.bb │ │ ├── phosphor-ipmi-fru-read-inventory-mrw-native_git.bb │ │ ├── phosphor-ipmi-fru-read-not-sent-by-host-inventory-native.bb │ │ ├── phosphor-ipmi-fru-read-not-sent-by-host-inventory │ │ │ └── fru-config-not-sent-by-host.yaml │ │ ├── phosphor-ipmi-fru-whitelist-native.bb │ │ ├── phosphor-ipmi-fru-whitelist │ │ │ └── phosphor-ipmi-fru-whitelist-native.conf │ │ ├── phosphor-ipmi-fru.inc │ │ ├── phosphor-ipmi-fru │ │ │ ├── obmc-read-eeprom@.service │ │ │ └── of-name-to-eeprom.sh │ │ ├── phosphor-ipmi-fru_git.bb │ │ ├── phosphor-ipmi-host.inc │ │ ├── phosphor-ipmi-host │ │ │ ├── merge_yamls.py │ │ │ ├── phosphor-ipmi-host.service │ │ │ └── xyz.openbmc_project.Ipmi.Internal.SoftPowerOff.service │ │ ├── phosphor-ipmi-host_git.bb │ │ ├── phosphor-ipmi-inventory-sel-mrw-native.bb │ │ ├── phosphor-ipmi-inventory-sel-mrw │ │ │ └── config.yaml │ │ ├── phosphor-ipmi-inventory-sel-native.bb │ │ ├── phosphor-ipmi-inventory-sel │ │ │ └── config.yaml │ │ ├── phosphor-ipmi-ipmb_git.bb │ │ ├── phosphor-ipmi-kcs_git.bb │ │ ├── phosphor-ipmi-net_git.bb │ │ ├── phosphor-ipmi-sensor-config-native.bb │ │ ├── phosphor-ipmi-sensor-inventory-mrw-config-native.bb │ │ ├── phosphor-ipmi-sensor-inventory-mrw-config │ │ │ └── config.yaml │ │ ├── phosphor-ipmi-sensor-inventory-mrw-native.bb │ │ ├── phosphor-ipmi-sensor-inventory-mrw │ │ │ └── merge_sensor_config.py │ │ ├── phosphor-ipmi-sensor-inventory-native.bb │ │ ├── phosphor-ipmi-sensor-inventory │ │ │ └── config.yaml │ │ └── phosphor-ipmi-ssif_git.bb │ ├── leds │ │ ├── phosphor-led-manager-config-example-native_git.bb │ │ ├── phosphor-led-manager-config-mrw-native.bb │ │ ├── phosphor-led-manager-error-native_git.bb │ │ ├── phosphor-led-manager-yaml-provider_git.bb │ │ ├── phosphor-led-manager.inc │ │ ├── phosphor-led-manager │ │ │ ├── bmc_booted.conf │ │ │ ├── obmc-fru-fault-monitor.service │ │ │ ├── obmc-led-group-start@.service │ │ │ ├── obmc-led-group-stop@.service │ │ │ └── xyz.openbmc_project.LED.GroupManager.service │ │ ├── phosphor-led-manager_git.bb │ │ ├── phosphor-led-sysfs │ │ │ ├── 70-leds.rules │ │ │ └── xyz.openbmc_project.led.controller@.service │ │ └── phosphor-led-sysfs_git.bb │ ├── logging │ │ ├── ffdc_git.bb │ │ ├── phosphor-hostlogger_git.bb │ │ ├── phosphor-logging-callouts-example-native.bb │ │ ├── phosphor-logging-callouts-example │ │ │ └── callouts.yaml │ │ ├── phosphor-logging-callouts-mrw-native.bb │ │ └── phosphor-logging_git.bb │ ├── mboxd │ │ ├── files │ │ │ └── 99-aspeed-lpc-ctrl.rules │ │ ├── mboxd │ │ │ ├── mboxd-reload@.service │ │ │ └── mboxd.service │ │ └── mboxd_git.bb │ ├── mctp │ │ ├── files │ │ │ └── default │ │ └── mctp_git.bb │ ├── misc │ │ └── phosphor-misc_git.bb │ ├── mrw │ │ ├── mrw-api-native.bb │ │ ├── mrw-native_git.bb │ │ ├── mrw-patch-native_git.bb │ │ └── mrw-perl-tools-native_git.bb │ ├── network │ │ ├── phosphor-network_git.bb │ │ ├── phosphor-snmp │ │ │ └── xyz.openbmc_project.Network.SNMP.service │ │ └── phosphor-snmp_git.bb │ ├── packagegroups │ │ ├── packagegroup-obmc-apps.bb │ │ ├── packagegroup-obmc-ipmid-providers.bb │ │ ├── packagegroup-obmc-phosphor-debugtools.bb │ │ └── packagegroup-obmc-yaml-providers.bb │ ├── pldm │ │ ├── pldm.inc │ │ └── pldm_git.bb │ ├── power │ │ ├── phosphor-power-systemd-links-monitor.bb │ │ ├── phosphor-power-systemd-links-sequencer.bb │ │ ├── phosphor-power-systemd-links.bb │ │ ├── phosphor-power.inc │ │ ├── phosphor-power_git.bb │ │ └── phosphor-psu-software-manager_git.bb │ ├── preinit-mounts │ │ ├── preinit-mounts.bb │ │ └── preinit-mounts │ │ │ └── init │ ├── sel-logger │ │ └── phosphor-sel-logger_git.bb │ ├── sensors │ │ ├── dbus-sensors_git.bb │ │ ├── phosphor-hwmon-config-mrw.bb │ │ ├── phosphor-hwmon_git.bb │ │ ├── phosphor-nvme_git.bb │ │ └── phosphor-virtual-sensor_git.bb │ ├── settings │ │ ├── phosphor-settings-defaults-native.bb │ │ ├── phosphor-settings-defaults │ │ │ └── defaults.yaml │ │ ├── phosphor-settings-manager.inc │ │ ├── phosphor-settings-manager │ │ │ ├── merge_settings.py │ │ │ └── xyz.openbmc_project.Settings.service │ │ ├── phosphor-settings-manager_git.bb │ │ ├── phosphor-settings-read-settings-mrw-native.bb │ │ ├── phosphor-settings-read-settings-mrw │ │ │ └── mrw-override-settings.yaml │ │ └── phosphor-settings │ │ │ └── merge_settings.py │ ├── skeleton │ │ ├── obmc-libobmc-intf │ │ │ └── gpio_defs.json │ │ └── obmc-libobmc-intf_git.bb │ ├── srvcfg-manager │ │ └── srvcfg-manager_git.bb │ ├── state │ │ ├── phosphor-post-code-manager_git.bb │ │ ├── phosphor-state-manager-systemd-links.inc │ │ └── phosphor-state-manager_git.bb │ ├── system │ │ ├── files │ │ │ ├── obmc-phosphor-sysd.py │ │ │ └── obmc-phosphor-sysd.service │ │ ├── obmc-control-bmc │ │ │ └── org.openbmc.control.Bmc@.service │ │ ├── obmc-control-bmc_git.bb │ │ └── obmc-phosphor-sysd.bb │ ├── telemetry │ │ └── telemetry_git.bb │ ├── users │ │ ├── phosphor-user-manager │ │ │ ├── xyz.openbmc_project.LDAP.PrivilegeMapper.service │ │ │ ├── xyz.openbmc_project.Ldap.Config.service │ │ │ └── xyz.openbmc_project.User.Manager.service │ │ └── phosphor-user-manager_git.bb │ ├── video │ │ ├── fbterm │ │ │ ├── fb.modes │ │ │ ├── fbterm │ │ │ └── fbterm.service │ │ ├── fbterm_git.bb │ │ ├── liberation-fonts_2.00.1.bbappend │ │ ├── uart-render-controller │ │ │ └── uart-render-controller.service │ │ └── uart-render-controller_git.bb │ ├── watchdog │ │ ├── phosphor-watchdog │ │ │ ├── obmc-enable-host-watchdog@.service │ │ │ ├── obmc │ │ │ │ └── watchdog │ │ │ │ │ └── poweron │ │ │ ├── phosphor-watchdog@.service │ │ │ └── poweron.conf │ │ └── phosphor-watchdog_git.bb │ └── webui │ │ ├── phosphor-webui_git.bb │ │ └── webui-vue_git.bb ├── recipes-protocols │ └── net-snmp │ │ └── net-snmp_%.bbappend ├── recipes-support │ ├── boost-url │ │ └── boost-url_%.bbappend │ ├── boost │ │ └── boost_%.bbappend │ ├── cjson │ │ └── cjson_git.bb │ ├── libgpiod │ │ └── libgpiod_%.bbappend │ ├── lm_sensors │ │ └── lmsensors-config_1.0.bbappend │ ├── nss-pam-ldapd │ │ ├── files │ │ │ ├── nslcd.init │ │ │ └── nslcd.service │ │ └── nss-pam-ldapd_0.9.8.bb │ ├── nss-pam-ldapd_fix │ │ └── nss-pam-ldapd_%.bbappend │ ├── openldap │ │ └── openldap_%.bbappend │ └── rng-tools │ │ ├── rng-tools │ │ └── 10-nice.conf │ │ └── rng-tools_%.bbappend ├── recipes-textproc │ └── json-perl │ │ └── json-perl_2.97001.bb ├── recipes-x86 │ ├── chassis │ │ └── x86-power-control_git.bb │ └── peci-pcie │ │ └── peci-pcie_git.bb └── recipes.txt ├── meta-poky ├── meta-portwell ├── MAINTAINERS ├── OWNERS └── meta-neptune │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── neptune.conf │ ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed │ │ └── neptune.cfg │ │ └── linux-aspeed_%.bbappend │ └── recipes.txt ├── meta-qualcomm ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── qualcomm.inc └── meta-centriq2400-rep │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── centriq2400-rep.conf │ ├── recipes-kernel │ └── linux │ │ ├── linux-aspeed │ │ └── centriq2400-rep.cfg │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ ├── chassis │ ├── ir38163-workaround.bb │ └── ir38163-workaround │ │ ├── ir-add@.service │ │ ├── ir-remove@.service │ │ └── ir38163_workaround.sh │ ├── console │ ├── centriq-2400rep-console-client.bb │ ├── centriq-2400rep-console-client │ │ ├── centriq-2400rep-console-client.sh │ │ └── centriq-2400rep-console-client@.service │ ├── obmc-console │ │ └── obmc-console.conf │ └── obmc-console_%.bbappend │ ├── leds │ ├── centriq2400-rep-led-manager-config-native.bb │ └── centriq2400-rep-led-manager-config │ │ └── led.yaml │ ├── sensors │ ├── phosphor-hwmon │ │ └── obmc │ │ │ └── hwmon │ │ │ ├── ahb │ │ │ ├── apb │ │ │ │ └── bus@1e78a000 │ │ │ │ │ ├── i2c-bus@180 │ │ │ │ │ ├── ir38163@12.conf │ │ │ │ │ ├── ir38163@42.conf │ │ │ │ │ ├── ir38163@44.conf │ │ │ │ │ ├── ir38163@46.conf │ │ │ │ │ ├── ir38163@48.conf │ │ │ │ │ ├── pxm1310@02.conf │ │ │ │ │ └── pxm1310@04.conf │ │ │ │ │ ├── i2c-bus@1c0 │ │ │ │ │ ├── nvt210@4c.conf │ │ │ │ │ ├── tmp421@1d.conf │ │ │ │ │ ├── tmp421@1f.conf │ │ │ │ │ ├── tmp421@4d.conf │ │ │ │ │ └── tmp421@4f.conf │ │ │ │ │ ├── i2c-bus@300 │ │ │ │ │ ├── adm1278@10.conf │ │ │ │ │ └── adm1278@11.conf │ │ │ │ │ ├── i2c-bus@340 │ │ │ │ │ └── pca9641@70 │ │ │ │ │ │ └── i2c-arb │ │ │ │ │ │ ├── adm1278@12.conf │ │ │ │ │ │ ├── ds1100@58.conf │ │ │ │ │ │ ├── max31790@20.conf │ │ │ │ │ │ ├── max31790@23.conf │ │ │ │ │ │ └── tmp421@1d.conf │ │ │ │ │ └── i2c-bus@80 │ │ │ │ │ ├── tmp421@1c.conf │ │ │ │ │ ├── tmp421@1e.conf │ │ │ │ │ ├── tmp421@2a.conf │ │ │ │ │ └── tmp421@4e.conf │ │ │ └── flash-controller@1e631000 │ │ │ │ └── spi2@0.conf │ │ │ └── iio-hwmon.conf │ └── phosphor-hwmon_%.bbappend │ ├── socupdate │ ├── files │ │ └── socupdate.sh │ └── socupdate.bb │ └── workbook │ ├── centriq2400-rep-config.bb │ └── centriq2400-rep-config │ └── Centriq2400-rep.py ├── meta-quanta ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── conf │ └── layer.conf ├── meta-common │ ├── recipes-phosphor │ │ └── health │ │ │ ├── files │ │ │ └── bmc_health_config.json │ │ │ └── phosphor-health-monitor_%.bbappend │ └── recipes-quanta │ │ ├── fans │ │ └── read-margin-temp_git.bb │ │ └── network │ │ ├── mac-address_git.bb │ │ ├── usb-network.bb │ │ └── usb-network │ │ ├── usb-network.service │ │ └── usb-network.sh ├── meta-f0b │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── f0b.conf │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── f0b.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ │ ├── ipmi │ │ ├── f0b-ipmi-fru-read-inventory-native.bb │ │ ├── f0b-ipmi-inventory-map-native.bb │ │ ├── files │ │ │ └── config.yaml │ │ ├── phosphor-ipmi-fru │ │ │ └── obmc │ │ │ │ └── eeproms │ │ │ │ └── system │ │ │ │ └── motherboard │ │ └── phosphor-ipmi-fru_%.bbappend │ │ └── sensors │ │ ├── phosphor-hwmon │ │ └── obmc │ │ │ └── hwmon │ │ │ └── ahb │ │ │ └── apb │ │ │ └── bus@1e78a000 │ │ │ ├── i2c-bus@180 │ │ │ ├── ina219@40.conf │ │ │ ├── ina219@41.conf │ │ │ ├── tps53622@67.conf │ │ │ ├── tps53622@77.conf │ │ │ ├── tps53659@62.conf │ │ │ ├── tps53659@64.conf │ │ │ ├── tps53659@72.conf │ │ │ ├── tps53659@74.conf │ │ │ ├── tps53679@60.conf │ │ │ └── tps53679@70.conf │ │ │ ├── i2c-bus@1c0 │ │ │ └── tmp421@4c.conf │ │ │ └── i2c-bus@80 │ │ │ └── tmp421@4c.conf │ │ └── phosphor-hwmon_%.bbappend ├── meta-gbs │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── gbs.conf │ ├── recipes-bsp │ │ └── images │ │ │ ├── npcm7xx-igps-native │ │ │ ├── BootBlockAndHeader_GBS.xml │ │ │ └── UbootHeader_GBS.xml │ │ │ └── npcm7xx-igps-native_%.bbappend │ ├── recipes-core │ │ └── busybox │ │ │ ├── busybox │ │ │ └── busybox.cfg │ │ │ └── busybox_%.bbappend │ ├── recipes-gbs │ │ ├── boot-status-led │ │ │ ├── files │ │ │ │ ├── boot-status-led.service │ │ │ │ └── boot-status-led.sh │ │ │ └── gbs-boot-status-led.bb │ │ ├── cpld-ver-check │ │ │ ├── files │ │ │ │ ├── cpld-version.service │ │ │ │ └── cpld_version.sh │ │ │ └── gbs-cpld-ver-check.bb │ │ ├── gbs-bios-update │ │ │ ├── files │ │ │ │ ├── bios-update.sh │ │ │ │ ├── bios-verify.sh │ │ │ │ ├── config-bios.json │ │ │ │ ├── phosphor-ipmi-flash-bios-update.service │ │ │ │ └── phosphor-ipmi-flash-bios-verify.service │ │ │ └── gbs-bios-update.bb │ │ ├── gbs-bmc-update │ │ │ ├── files │ │ │ │ ├── bmc-verify.sh │ │ │ │ ├── config-bmc.json │ │ │ │ └── phosphor-ipmi-flash-bmc-verify.service │ │ │ └── gbs-bmc-update.bb │ │ ├── gbs-detect-gpio-present │ │ │ ├── files │ │ │ │ ├── detect-gpio-present.service │ │ │ │ └── detect-gpio-present.sh │ │ │ └── gbs-detect-gpio-present.bb │ │ ├── gbs-ipmi-entity-association-map │ │ │ ├── files │ │ │ │ └── entity_association_map.json │ │ │ └── gbs-ipmi-entity-association-map.bb │ │ ├── gbs-nvme-pwr-ctrl │ │ │ └── gbs-nvme-pwr-ctrl.bb │ │ ├── gbs-sysinit │ │ │ ├── files │ │ │ │ ├── gbs-gpio-common.sh │ │ │ │ ├── gbs-sysinit.service │ │ │ │ └── gbs-sysinit.sh │ │ │ └── gbs-sysinit.bb │ │ └── hotswap-power-cycle │ │ │ ├── files │ │ │ ├── hotswap-power-cycle.service │ │ │ └── tray_powercycle.sh │ │ │ └── gbs-hotswap-power-cycle.bb │ ├── recipes-google │ │ └── acpi-power-state │ │ │ ├── acpi-power-state-daemon │ │ │ ├── gbs-check-host-state.service │ │ │ ├── gbs-check-host-state.sh │ │ │ ├── gbs-host-ready.target │ │ │ ├── gbs-host-s0-set-failsafe.service │ │ │ ├── gbs-host-s5-set-failsafe.service │ │ │ ├── gbs-host-set-boot-failsafe@.service │ │ │ ├── gbs-set-boot-failsafe.sh │ │ │ └── gbs-set-failsafe.sh │ │ │ └── acpi-power-state-daemon_%.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-nuvoton │ │ │ ├── 0001-meta-gbs-Enable-adm1272-ADM1272_TEMP1_EN.patch │ │ │ ├── 0004-Add-kernel-seven-seg-display-support.patch │ │ │ ├── 0004-ben-drivers-misc-Character-device-driver-for-seven-segme.patch │ │ │ ├── 0004-ben-drivers-misc-Platform-driver-for-seven-segment-displ.patch │ │ │ └── gbs.cfg │ │ │ └── linux-nuvoton_%.bbappend │ ├── recipes-phosphor │ │ ├── configuration │ │ │ ├── gbs-yaml-config.bb │ │ │ └── gbs-yaml-config │ │ │ │ ├── gbs-ipmi-fru-properties.yaml │ │ │ │ ├── gbs-ipmi-fru.yaml │ │ │ │ ├── gbs-ipmi-inventory-sensors.yaml │ │ │ │ └── gbs-ipmi-sensors.yaml │ │ ├── console │ │ │ ├── files │ │ │ │ └── obmc-console.conf │ │ │ └── obmc-console_%.bbappend │ │ ├── fans │ │ │ ├── phosphor-pid-control │ │ │ │ ├── 0001-Advertise-failSafePercent-on-dbus.patch │ │ │ │ ├── config.json.in │ │ │ │ ├── fan-table-init.sh │ │ │ │ └── phosphor-pid-control.service │ │ │ └── phosphor-pid-control_%.bbappend │ │ ├── gpio │ │ │ ├── phosphor-gpio-monitor │ │ │ │ ├── obmc │ │ │ │ │ └── gpio │ │ │ │ │ │ ├── gpios-0.conf │ │ │ │ │ │ ├── gpios-1.conf │ │ │ │ │ │ ├── gpios-10.conf │ │ │ │ │ │ ├── gpios-2.conf │ │ │ │ │ │ ├── gpios-3.conf │ │ │ │ │ │ ├── gpios-4.conf │ │ │ │ │ │ ├── gpios-5.conf │ │ │ │ │ │ ├── gpios-6.conf │ │ │ │ │ │ ├── gpios-7.conf │ │ │ │ │ │ ├── gpios-8.conf │ │ │ │ │ │ └── gpios-9.conf │ │ │ │ └── phosphor-gpio-presence@.service.replace │ │ │ └── phosphor-gpio-monitor_%.bbappend │ │ ├── host │ │ │ └── phosphor-host-postd_%.bbappend │ │ ├── images │ │ │ └── obmc-phosphor-image.bbappend │ │ ├── interfaces │ │ │ └── bmcweb_%.bbappend │ │ ├── inventory │ │ │ ├── gbs-inventory-cleanup.bb │ │ │ ├── gbs-inventory-cleanup │ │ │ │ └── inventory-cleanup.yaml │ │ │ ├── phosphor-inventory-manager │ │ │ │ └── associations.json │ │ │ └── phosphor-inventory-manager_%.bbappend │ │ ├── ipmi │ │ │ ├── phosphor-ipmi-blobs-binarystore │ │ │ │ └── config.json │ │ │ ├── phosphor-ipmi-blobs-binarystore_%.bbappend │ │ │ ├── phosphor-ipmi-config.bbappend │ │ │ ├── phosphor-ipmi-config │ │ │ │ ├── dev_id.json │ │ │ │ └── entity-map.json │ │ │ ├── phosphor-ipmi-flash_%.bbappend │ │ │ ├── phosphor-ipmi-fru │ │ │ │ └── obmc │ │ │ │ │ └── eeproms │ │ │ │ │ └── system │ │ │ │ │ └── chassis │ │ │ │ │ ├── fan │ │ │ │ │ ├── hsbp │ │ │ │ │ └── motherboard │ │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ │ ├── phosphor-ipmi-host │ │ │ │ ├── 0001-Add-Chassis-State-Transition-interface.patch │ │ │ │ ├── 0001-Fix-issues-and-support-signed-sensor-values.patch │ │ │ │ ├── 0002-Update-Host-State-Transition-function.patch │ │ │ │ ├── 0003-Update-IPMI-Chassis-Control-command-transition-reque.patch │ │ │ │ └── gbs-ipmid-whitelist.conf │ │ │ └── phosphor-ipmi-host_%.bbappend │ │ ├── leds │ │ │ ├── gbs-led-manager-config-native.bb │ │ │ ├── gbs-led-manager-config │ │ │ │ └── led.yaml │ │ │ ├── phosphor-led-manager │ │ │ │ └── service-override.conf │ │ │ └── phosphor-led-manager_%.bbappend │ │ ├── logging │ │ │ └── phosphor-logging_%.bbappend │ │ ├── network │ │ │ └── phosphor-network_%.bbappend │ │ ├── packagegroups │ │ │ ├── packagegroup-gbs-apps.bb │ │ │ └── packagegroup-obmc-apps%.bbappend │ │ ├── sel-logger │ │ │ └── phosphor-sel-logger_%.bbappend │ │ ├── sensors │ │ │ ├── phosphor-hwmon │ │ │ │ ├── 0002-Add-power-on-monitor-mechanism.patch │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ ├── ahb │ │ │ │ │ └── apb │ │ │ │ │ │ ├── i2c@82000 │ │ │ │ │ │ └── sbtsi@4c.conf │ │ │ │ │ │ ├── i2c@85000 │ │ │ │ │ │ └── i2c-switch@71 │ │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ └── max31725@54.conf │ │ │ │ │ │ │ ├── i2c@1 │ │ │ │ │ │ │ └── max31725@55.conf │ │ │ │ │ │ │ └── i2c@2 │ │ │ │ │ │ │ └── max31725@5d.conf │ │ │ │ │ │ ├── i2c@88000 │ │ │ │ │ │ └── adm1272@10.conf │ │ │ │ │ │ ├── i2c@89000 │ │ │ │ │ │ └── i2c-switch@71 │ │ │ │ │ │ │ ├── i2c@0 │ │ │ │ │ │ │ └── vrm@60.conf │ │ │ │ │ │ │ ├── i2c@1 │ │ │ │ │ │ │ └── vrm@61.conf │ │ │ │ │ │ │ ├── i2c@2 │ │ │ │ │ │ │ └── vrm@63.conf │ │ │ │ │ │ │ └── i2c@3 │ │ │ │ │ │ │ └── vrm@45.conf │ │ │ │ │ │ ├── i2c@8c000 │ │ │ │ │ │ ├── max34451@4e.conf │ │ │ │ │ │ ├── vrm@5d.conf │ │ │ │ │ │ └── vrm@5e.conf │ │ │ │ │ │ └── pwm-fan-controller@103000.conf │ │ │ │ │ └── iio-hwmon-battery.conf │ │ │ ├── phosphor-hwmon_%.bbappend │ │ │ ├── phosphor-nvme │ │ │ │ ├── nvme_config.json │ │ │ │ ├── nvme_json_rewrite.sh │ │ │ │ └── xyz.openbmc_project.nvme.manager.service.replace │ │ │ ├── phosphor-nvme_%.bbappend │ │ │ ├── phosphor-virtual-sensor │ │ │ │ ├── config-virtual-sensor.json │ │ │ │ ├── phosphor-virtual-sensor.service.replace │ │ │ │ └── setMaxMinValue.sh │ │ │ └── phosphor-virtual-sensor_%.bbappend │ │ ├── settings │ │ │ ├── phosphor-settings-manager │ │ │ │ ├── restrictionmode-default-whitelist.override.yml │ │ │ │ └── time-default.override.yml │ │ │ └── phosphor-settings-manager_%.bbappend │ │ └── watchdog │ │ │ ├── phosphor-watchdog │ │ │ ├── obmc │ │ │ │ └── watchdog │ │ │ │ │ └── host0 │ │ │ ├── phosphor-host-watchdog-powercycle.service │ │ │ ├── phosphor-host-watchdog-poweroff.service │ │ │ ├── phosphor-host-watchdog-reset.service │ │ │ └── phosphor-watchdog@.service │ │ │ └── phosphor-watchdog_%.bbappend │ ├── recipes-quanta │ │ ├── fans │ │ │ ├── read-margin-temp │ │ │ │ ├── config-margin.json.in │ │ │ │ └── read-margin-temp-wait.sh │ │ │ └── read-margin-temp_%.bbappend │ │ └── network │ │ │ ├── mac-address │ │ │ └── config.txt │ │ │ ├── mac-address_%.bbappend │ │ │ ├── usb-network.bbappend │ │ │ └── usb-network │ │ │ ├── 00-bmc-usb0.network │ │ │ └── usb-network.conf │ └── recipes-x86 │ │ └── chassis │ │ ├── x86-power-control │ │ ├── chassis-system-reset.service │ │ └── power-config-host0.json │ │ └── x86-power-control_%.bbappend ├── meta-gsj │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── distro │ │ │ └── openbmc-gsj.conf │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── gsj.conf │ ├── recipes-bsp │ │ └── u-boot │ │ │ ├── u-boot-fw-utils-nuvoton │ │ │ └── fw_env.config │ │ │ └── u-boot-fw-utils-nuvoton_%.bbappend │ ├── recipes-google │ │ └── ipmi │ │ │ └── google-ipmi-sys_%.bbappend │ ├── recipes-gsj │ │ ├── detect-fan-fail │ │ │ ├── detect-fan-fail.bb │ │ │ └── files │ │ │ │ ├── detect-fan-fail.service │ │ │ │ └── detect-fan-fail.sh │ │ ├── gsj-hotswap-change-setting │ │ │ ├── files │ │ │ │ ├── gsj-hotswap-change-setting.service │ │ │ │ └── gsj-hotswap-change-setting.sh │ │ │ └── gsj-hotswap-change-setting.bb │ │ ├── packagegroups │ │ │ └── packagegroup-gsj-apps.bb │ │ ├── quanta-nvme-powerctrl │ │ │ ├── README.md │ │ │ ├── files │ │ │ │ ├── init_once.sh │ │ │ │ ├── nvme_gpio.service │ │ │ │ ├── nvme_powerctrl_library.sh │ │ │ │ ├── nvme_powermanager.service │ │ │ │ └── nvme_powermanager.sh │ │ │ └── quanta-nvme-powerctrl.bb │ │ └── usb-network │ │ │ ├── files │ │ │ ├── 00-bmc-usb0.network │ │ │ ├── usb_network.service │ │ │ └── usb_network.sh │ │ │ └── usb-network.bb │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-nuvoton │ │ │ └── gsj.cfg │ │ │ └── linux-nuvoton_%.bbappend │ ├── recipes-phosphor │ │ ├── fans │ │ │ ├── phosphor-pid-control │ │ │ │ ├── config-2ssd.json │ │ │ │ ├── config-8ssd.json │ │ │ │ ├── fan-boot-control.service │ │ │ │ ├── fan-control.sh │ │ │ │ ├── fan-default-speed.sh │ │ │ │ ├── fan-reboot-control.service │ │ │ │ └── phosphor-pid-control.service │ │ │ └── phosphor-pid-control_%.bbappend │ │ ├── images │ │ │ └── obmc-phosphor-image.bbappend │ │ ├── ipmi │ │ │ ├── files │ │ │ │ └── config.yaml │ │ │ ├── gsj-ipmi-fru-properties-native.bb │ │ │ ├── gsj-ipmi-fru-properties │ │ │ │ └── extra-properties.yaml │ │ │ ├── gsj-ipmi-fru-read-inventory-native.bb │ │ │ ├── gsj-ipmi-inventory-map-native.bb │ │ │ ├── gsj-ipmi-sensor-map-native.bb │ │ │ ├── gsj-ipmi-sensor-map │ │ │ │ └── config.yaml │ │ │ ├── phosphor-ipmi-config.bbappend │ │ │ ├── phosphor-ipmi-config │ │ │ │ ├── channel_access.json │ │ │ │ └── channel_config.json │ │ │ ├── phosphor-ipmi-flash_%.bbappend │ │ │ ├── phosphor-ipmi-fru │ │ │ │ └── obmc │ │ │ │ │ └── eeproms │ │ │ │ │ └── system │ │ │ │ │ └── chassis │ │ │ │ │ ├── bmc │ │ │ │ │ └── hsbp │ │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ │ ├── phosphor-ipmi-host │ │ │ │ └── gsj-ipmid-whitelist.conf │ │ │ ├── phosphor-ipmi-host_%.bbappend │ │ │ └── phosphor-ipmi-net_%.bbappend │ │ ├── leds │ │ │ ├── gsj-led-manager-config-native.bb │ │ │ └── gsj-led-manager-config │ │ │ │ └── led.yaml │ │ ├── sensors │ │ │ ├── phosphor-hwmon │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ └── ahb │ │ │ │ │ └── apb │ │ │ │ │ ├── i2c@81000 │ │ │ │ │ └── lm75@5c.conf │ │ │ │ │ ├── i2c@82000 │ │ │ │ │ └── lm75@5c.conf │ │ │ │ │ ├── i2c@83000 │ │ │ │ │ └── lm75@5c.conf │ │ │ │ │ ├── i2c@84000 │ │ │ │ │ └── lm75@5c.conf │ │ │ │ │ ├── i2c@8b000 │ │ │ │ │ ├── hotswap@15.conf │ │ │ │ │ └── power-brick@36.conf │ │ │ │ │ ├── i2c@8c000 │ │ │ │ │ └── ucd90160@6b.conf │ │ │ │ │ └── pwm-fan-controller@103000.conf │ │ │ └── phosphor-hwmon_%.bbappend │ │ └── settings │ │ │ ├── phosphor-settings-manager │ │ │ ├── restrictionmode-default-whitelist.override.yml │ │ │ └── time-default.override.yml │ │ │ └── phosphor-settings-manager_%.bbappend │ └── recipes-quanta │ │ └── network │ │ ├── mac-address │ │ └── mac-address │ │ │ └── config.txt │ │ └── mac-address_%.bbappend ├── meta-olympus-nuvoton │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── olympus-nuvoton.conf │ ├── recipes-bsp │ │ └── u-boot │ │ │ ├── u-boot-fw-utils-nuvoton │ │ │ └── fw_env.config │ │ │ └── u-boot-fw-utils-nuvoton_%.bbappend │ ├── recipes-core │ │ └── busybox │ │ │ ├── busybox │ │ │ └── busybox.cfg │ │ │ └── busybox_%.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-nuvoton │ │ │ └── olympus-nuvoton.cfg │ │ │ └── linux-nuvoton_%.bbappend │ ├── recipes-olympus-nuvoton │ │ ├── hotswap-power-cycle │ │ │ ├── adm1278-hotswap-power-cycle.bb │ │ │ └── files │ │ │ │ └── hotswap-power-cycle.service │ │ ├── network │ │ │ ├── files │ │ │ │ └── config.txt │ │ │ ├── mac-address_%.bbappend │ │ │ ├── olympus-nuvoton-iptable-save.bb │ │ │ └── olympus-nuvoton-iptable-save │ │ │ │ └── phosphor-save-iptable-rules.service │ │ ├── packagegroups │ │ │ └── packagegroup-olympus-nuvoton-apps.bb │ │ └── power │ │ │ ├── first-boot-set-psu.bb │ │ │ └── first-boot-set-psu │ │ │ ├── first-boot-set-psu.sh │ │ │ └── first-boot-set-psu@.service │ └── recipes-phosphor │ │ ├── configuration │ │ ├── olympus-nuvoton-yaml-config.bb │ │ └── olympus-nuvoton-yaml-config │ │ │ ├── olympus-nuvoton-ipmi-fru-properties.yaml │ │ │ ├── olympus-nuvoton-ipmi-fru.yaml │ │ │ └── olympus-nuvoton-ipmi-sensors.yaml │ │ ├── console │ │ ├── obmc-console │ │ │ ├── 80-olympus-nuvoton-sol.rules │ │ │ └── obmc-console.conf │ │ └── obmc-console_%.bbappend │ │ ├── fans │ │ ├── phosphor-pid-control │ │ │ ├── config-olympus-nuvoton.json │ │ │ ├── fan-full-speed.sh │ │ │ ├── fan-reboot-control.service │ │ │ └── phosphor-pid-control.service │ │ └── phosphor-pid-control_%.bbappend │ │ ├── inventory │ │ ├── olympus-nuvoton-inventory-cleanup.bb │ │ ├── olympus-nuvoton-inventory-cleanup │ │ │ └── inventory-cleanup.yaml │ │ ├── phosphor-inventory-manager │ │ │ └── associations.json │ │ └── phosphor-inventory-manager_%.bbappend │ │ ├── ipmi │ │ ├── phosphor-ipmi-fru │ │ │ └── obmc │ │ │ │ └── eeproms │ │ │ │ └── system │ │ │ │ └── chassis │ │ │ │ ├── bmc │ │ │ │ └── motherboard │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ ├── phosphor-ipmi-host_%.bbappend │ │ ├── phosphor-ipmi-ipmb │ │ │ └── ipmb-olympus-channels.json │ │ ├── phosphor-ipmi-ipmb_%.bbappend │ │ ├── phosphor-ipmi-kcs │ │ │ └── 99-ipmi-kcs.rules.rules │ │ ├── phosphor-ipmi-kcs_%.bbappend │ │ └── phosphor-ipmi-net_%.bbappend │ │ ├── leds │ │ ├── olympus-nuvoton-led-manager-config-native.bb │ │ └── olympus-nuvoton-led-manager-config │ │ │ └── led.yaml │ │ ├── sensors │ │ ├── phosphor-hwmon │ │ │ └── obmc │ │ │ │ └── hwmon │ │ │ │ ├── ahb │ │ │ │ └── apb │ │ │ │ │ ├── adc@c000.conf │ │ │ │ │ ├── i2c@82000 │ │ │ │ │ ├── power-supply@58.conf │ │ │ │ │ └── tmp421@4c.conf │ │ │ │ │ ├── i2c@86000 │ │ │ │ │ ├── ina219@40.conf │ │ │ │ │ ├── ina219@41.conf │ │ │ │ │ ├── ina219@44.conf │ │ │ │ │ ├── ina219@45.conf │ │ │ │ │ ├── tps53622@67.conf │ │ │ │ │ ├── tps53622@77.conf │ │ │ │ │ ├── tps53659@62.conf │ │ │ │ │ ├── tps53659@64.conf │ │ │ │ │ ├── tps53659@72.conf │ │ │ │ │ ├── tps53659@74.conf │ │ │ │ │ ├── tps53679@60.conf │ │ │ │ │ └── tps53679@70.conf │ │ │ │ │ ├── i2c@87000 │ │ │ │ │ └── tmp421@4c.conf │ │ │ │ │ ├── i2c@88000 │ │ │ │ │ └── adm1278@11.conf │ │ │ │ │ ├── i2c@8d000 │ │ │ │ │ └── tmp75@4a.conf │ │ │ │ │ └── pwm-fan-controller@103000.conf │ │ │ │ └── devices │ │ │ │ └── platform │ │ │ │ └── ahb │ │ │ │ └── ahb--apb │ │ │ │ └── f0100000.peci-bus │ │ │ │ └── peci-0 │ │ │ │ ├── 0-30 │ │ │ │ ├── peci-cputemp.0.conf │ │ │ │ └── peci-dimmtemp.0.conf │ │ │ │ └── 0-31 │ │ │ │ └── peci-cputemp.1.conf │ │ └── phosphor-hwmon_%.bbappend │ │ └── settings │ │ ├── phosphor-settings-manager │ │ └── sol-default.override.yml │ │ └── phosphor-settings-manager_%.bbappend └── meta-q71l │ ├── README.md │ ├── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ │ └── quanta-q71l.conf │ └── recipes-phosphor │ ├── images │ └── obmc-phosphor-image.bbappend │ ├── ipmi │ ├── phosphor-ipmi-fru │ │ └── obmc │ │ │ └── eeproms │ │ │ └── system │ │ │ └── chassis │ │ │ ├── bmc │ │ │ ├── fp │ │ │ ├── motherboard │ │ │ └── pdb │ ├── phosphor-ipmi-fru_%.bbappend │ ├── q71l-ipmi-fru-merge-config-native.bb │ ├── q71l-ipmi-inventory-map-native.bb │ ├── q71l-ipmi-inventory-map │ │ └── config.yaml │ ├── q71l-ipmi-sensor-map-native.bb │ └── q71l-ipmi-sensor-map │ │ └── config.yaml │ ├── quanta-powerctrl │ ├── files │ │ ├── host-gpio.service │ │ ├── host-poweroff.service │ │ ├── host-poweron.service │ │ ├── init_once.sh │ │ ├── poweroff.sh │ │ └── poweron.sh │ └── quanta-powerctrl.bb │ └── sensors │ ├── phosphor-hwmon │ └── obmc │ │ └── hwmon │ │ ├── ahb │ │ └── apb │ │ │ ├── bus@1e78a000 │ │ │ ├── i2c-bus@300 │ │ │ │ └── i2c-switch@70 │ │ │ │ │ ├── i2c@0 │ │ │ │ │ └── psu@59.conf │ │ │ │ │ ├── i2c@1 │ │ │ │ │ └── psu@58.conf │ │ │ │ │ ├── i2c@2 │ │ │ │ │ └── psu@58.conf │ │ │ │ │ └── i2c@3 │ │ │ │ │ └── psu@59.conf │ │ │ └── i2c-bus@80 │ │ │ │ ├── tmp75@4c.conf │ │ │ │ ├── tmp75@4e.conf │ │ │ │ └── tmp75@4f.conf │ │ │ └── pwm-tacho-controller@1e786000.conf │ │ ├── iio-hwmon-battery.conf │ │ └── iio-hwmon.conf │ └── phosphor-hwmon_%.bbappend ├── meta-raspberrypi ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── COPYING.MIT ├── README.md ├── classes │ └── sdcard_image-rpi.bbclass ├── conf │ ├── layer.conf │ └── machine │ │ ├── include │ │ ├── rpi-base.inc │ │ ├── rpi-default-providers.inc │ │ ├── rpi-default-settings.inc │ │ ├── rpi-default-versions.inc │ │ └── tune-arm1176jzf-s.inc │ │ ├── raspberrypi-cm.conf │ │ ├── raspberrypi-cm3.conf │ │ ├── raspberrypi.conf │ │ ├── raspberrypi0-wifi.conf │ │ ├── raspberrypi0.conf │ │ ├── raspberrypi2.conf │ │ ├── raspberrypi3-64.conf │ │ ├── raspberrypi3.conf │ │ ├── raspberrypi4-64.conf │ │ └── raspberrypi4.conf ├── docs │ ├── Makefile │ ├── conf.py │ ├── contributing.md │ ├── extra-apps.md │ ├── extra-build-config.md │ ├── index.rst │ ├── layer-contents.md │ └── readme.md ├── dynamic-layers │ ├── meta-python │ │ ├── recipes-connectivity │ │ │ └── lirc │ │ │ │ ├── lirc │ │ │ │ ├── lirc-gpio-ir-0.10.patch │ │ │ │ └── lircd.service │ │ │ │ └── lirc_0.10.1.bbappend │ │ ├── recipes-core │ │ │ └── packagegroups │ │ │ │ └── packagegroup-rpi-test.bbappend │ │ └── recipes-devtools │ │ │ └── python │ │ │ └── python3-sense-hat_2.2.0.bb │ ├── multimedia-layer │ │ └── recipes-multimedia │ │ │ └── libcamera │ │ │ └── libcamera.bbappend │ ├── networking-layer │ │ └── recipes-support │ │ │ └── drbd │ │ │ └── drbd_%.bbappend │ ├── openembedded-layer │ │ └── recipes-core │ │ │ └── packagegroups │ │ │ └── packagegroup-meta-oe.bbappend │ └── qt5-layer │ │ └── recipes-qt │ │ └── qt5 │ │ └── qtbase_%.bbappend ├── files │ └── custom-licenses │ │ └── Broadcom-RPi ├── img │ └── balena.png ├── kas-poky-rpi.yml ├── lib │ └── oeqa │ │ └── runtime │ │ └── cases │ │ └── parselogs_rpi.py ├── recipes-bsp │ ├── armstubs │ │ └── armstubs.bb │ ├── bootfiles │ │ ├── rpi-bootfiles.bb │ │ ├── rpi-cmdline.bb │ │ └── rpi-config_git.bb │ ├── common │ │ ├── raspberrypi-firmware.inc │ │ └── raspberrypi-tools.inc │ ├── formfactor │ │ ├── formfactor │ │ │ └── rpi │ │ │ │ └── machconfig │ │ └── formfactor_%.bbappend │ ├── rpi-u-boot-scr │ │ ├── files │ │ │ └── boot.cmd.in │ │ └── rpi-u-boot-scr.bb │ └── u-boot │ │ ├── files │ │ ├── 0001-dm-core-Move-ofdata_to_platdata-call-earlier.patch │ │ └── fw_env.config │ │ └── u-boot_%.bbappend ├── recipes-connectivity │ ├── bluez5 │ │ ├── bluez5 │ │ │ ├── 0001-bcm43xx-Add-bcm43xx-3wire-variant.patch │ │ │ ├── 0002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch │ │ │ ├── 0003-Increase-firmware-load-timeout-to-30s.patch │ │ │ └── 0004-Move-the-43xx-firmware-into-lib-firmware.patch │ │ └── bluez5_%.bbappend │ └── pi-bluetooth │ │ ├── pi-bluetooth │ │ └── 0001-bthelper-correct-path-for-hciconfig-under-Yocto.patch │ │ └── pi-bluetooth_0.1.12.bb ├── recipes-core │ ├── images │ │ ├── rpi-basic-image.bb │ │ ├── rpi-hwup-image.bb │ │ └── rpi-test-image.bb │ ├── packagegroups │ │ ├── packagegroup-core-tools-testapps.bbappend │ │ └── packagegroup-rpi-test.bb │ ├── psplash │ │ ├── files │ │ │ └── psplash-raspberrypi-img.h │ │ └── psplash_%.bbappend │ └── udev │ │ ├── udev-rules-rpi.bb │ │ ├── udev-rules-rpi │ │ ├── 99-com.rules │ │ └── can.rules │ │ ├── udev-rules-udisks-rpi │ │ └── 80-udisks-rpi.rules │ │ └── udev-rules-udisks-rpi_1.0.bb ├── recipes-devtools │ ├── bcm2835 │ │ └── bcm2835_1.52.bb │ ├── pi-blaster │ │ ├── files │ │ │ └── remove-initscript-lsb-dependency.patch │ │ └── pi-blaster_git.bb │ ├── python │ │ ├── python3-adafruit-blinka_6.2.2.bb │ │ ├── python3-adafruit-circuitpython-busdevice_5.0.5.bb │ │ ├── python3-adafruit-circuitpython-motor_3.2.6.bb │ │ ├── python3-adafruit-circuitpython-motorkit_1.6.1.bb │ │ ├── python3-adafruit-circuitpython-pca9685_3.3.4.bb │ │ ├── python3-adafruit-circuitpython-register_1.9.4.bb │ │ ├── python3-adafruit-platformdetect_3.1.1.bb │ │ ├── python3-adafruit-pureio_1.1.8.bb │ │ ├── python3-rtimu │ │ │ └── 0001-include-asm-ioctl.h-for-ioctl-define.patch │ │ ├── python3-rtimu_git.bb │ │ ├── rpi-gpio │ │ │ └── 0001-Remove-nested-functions.patch │ │ ├── rpi-gpio_0.7.0.bb │ │ ├── rpio │ │ │ └── 0001-include-sys-types.h-explicitly-for-getting-caddr_t-d.patch │ │ └── rpio_0.10.0.bb │ └── raspi-gpio │ │ └── raspi-gpio_git.bb ├── recipes-graphics │ ├── cairo │ │ └── cairo_%.bbappend │ ├── kmscube │ │ └── kmscube_%.bbappend │ ├── libsdl2 │ │ └── libsdl2_%.bbappend │ ├── mesa │ │ ├── libglu_%.bbappend │ │ ├── mesa-demos_%.bbappend │ │ ├── mesa-gl_%.bbappend │ │ └── mesa_%.bbappend │ ├── piglit │ │ └── piglit_%.bbappend │ ├── raspidmx │ │ ├── raspidmx │ │ │ ├── 0001-gitignore-add-archives-from-lib-directory.patch │ │ │ ├── 0002-add-install-targets-to-Makefiles.patch │ │ │ ├── 0003-switch-to-pkg-config.patch │ │ │ ├── 0004-add-libvchostif-to-link.patch │ │ │ ├── 0005-change-library-linking-order.patch │ │ │ ├── 0006-game-Makefile-install-sample-png-files.patch │ │ │ └── 0007-Makefile-reorganize.patch │ │ └── raspidmx_git.bb │ ├── userland │ │ ├── files │ │ │ ├── 0001-Allow-applications-to-set-next-resource-handle.patch │ │ │ ├── 0002-wayland-Add-support-for-the-Wayland-winsys.patch │ │ │ ├── 0003-wayland-Add-Wayland-example.patch │ │ │ ├── 0004-wayland-egl-Add-bcm_host-to-dependencies.patch │ │ │ ├── 0005-interface-remove-faulty-assert-to-make-weston-happy-.patch │ │ │ ├── 0006-zero-out-wl-buffers-in-egl_surface_free.patch │ │ │ ├── 0007-initialize-front-back-wayland-buffers.patch │ │ │ ├── 0008-Remove-RPC_FLUSH.patch │ │ │ ├── 0009-fix-cmake-dependency-race.patch │ │ │ ├── 0010-Fix-for-framerate-with-nested-composition.patch │ │ │ ├── 0011-build-shared-library-for-vchostif.patch │ │ │ ├── 0012-implement-buffer-wrapping-interface-for-dispmanx.patch │ │ │ ├── 0013-Implement-triple-buffering-for-wayland.patch │ │ │ ├── 0014-GLES2-gl2ext.h-Define-GL_R8_EXT-and-GL_RG8_EXT.patch │ │ │ ├── 0015-EGL-glplatform.h-define-EGL_CAST.patch │ │ │ ├── 0016-Allow-multiple-wayland-compositor-state-data-per-pro.patch │ │ │ ├── 0017-khronos-backport-typedef-for-EGL_EXT_image_dma_buf_i.patch │ │ │ ├── 0018-Add-EGL_IMG_context_priority-related-defines.patch │ │ │ ├── 0019-libfdt-Undefine-__wordsize-if-already-defined.patch │ │ │ ├── 0020-openmaxil-add-pkg-config-file.patch │ │ │ ├── 0021-cmake-Disable-format-overflow-warning-as-error.patch │ │ │ ├── 0022-all-host_applications-remove-non-existent-projects.patch │ │ │ ├── 0023-hello_pi-optionally-build-wayland-specific-app.patch │ │ │ └── 0024-userland-Sync-needed-defines-for-weston-build.patch │ │ └── userland_git.bb │ ├── vc-graphics │ │ ├── files │ │ │ ├── egl.pc │ │ │ └── vchiq.sh │ │ ├── vc-graphics-hardfp.bb │ │ ├── vc-graphics.bb │ │ └── vc-graphics.inc │ ├── wayland │ │ ├── wayland_%.bbappend │ │ └── weston_%.bbappend │ └── xorg-xserver │ │ ├── xserver-xf86-config │ │ └── rpi │ │ │ ├── xorg.conf │ │ │ └── xorg.conf.d │ │ │ ├── 98-pitft.conf │ │ │ └── 99-calibration.conf │ │ ├── xserver-xf86-config_%.bbappend │ │ └── xserver-xorg_%.bbappend ├── recipes-kernel │ ├── bluez-firmware-rpidistro │ │ └── bluez-firmware-rpidistro_git.bb │ ├── linux-firmware-rpidistro │ │ └── linux-firmware-rpidistro_git.bb │ └── linux │ │ ├── files │ │ ├── 0001-Revert-selftests-bpf-Skip-perf-hw-events-test-if-the.patch │ │ ├── 0002-Revert-selftests-bpf-Fix-perf_buffer-test-on-systems.patch │ │ ├── android-drivers.cfg │ │ ├── initramfs-image-bundle.cfg │ │ ├── powersave.cfg │ │ ├── raspberrypi4-64 │ │ │ └── rpi4-64-kernel-misc.cfg │ │ └── vc4graphics.cfg │ │ ├── linux-raspberrypi-dev.bb │ │ ├── linux-raspberrypi.inc │ │ ├── linux-raspberrypi_5.10.bb │ │ └── linux-raspberrypi_5.4.bb ├── recipes-multimedia │ ├── gstreamer │ │ ├── gstreamer1.0-omx │ │ │ ├── 0001-Don-t-try-to-acquire-buffer-when-src-pad-isn-t-activ.patch │ │ │ ├── 0003-no-timeout-on-get-state.patch │ │ │ ├── 0004-Properly-handle-drain-requests-while-flushing.patch │ │ │ └── 0005-Don-t-abort-gst_omx_video_dec_set_format-if-there-s-.patch │ │ ├── gstreamer1.0-omx_%.bbappend │ │ ├── gstreamer1.0-plugins-bad_%.bbappend │ │ ├── gstreamer1.0-plugins-base_%.bbappend │ │ └── gstreamer1.0-plugins-good_1.18.%.bbappend │ ├── omxplayer │ │ ├── omxplayer │ │ │ ├── 0001-Fix-build-with-vc4-driver.patch │ │ │ ├── 0001-Remove-Makefile.include-which-includes-hardcoded.patch │ │ │ ├── 0001-Specify-cc-cxx-and-ld-variables-from-environment.patch │ │ │ ├── 0002-Libraries-and-headers-from-ffmpeg-are-installed-in-u.patch │ │ │ ├── 0003-Remove-strip-step-in-Makefile.patch │ │ │ ├── 0004-Add-FFMPEG_EXTRA_CFLAGS-and-FFMPEG_EXTRA_LDFLAGS.patch │ │ │ ├── 0005-Don-t-require-internet-connection-during-build.patch │ │ │ ├── 0006-Prevent-ffmpeg-configure-compile-race-condition.patch │ │ │ ├── 0007-Remove-Makefile-hardcoded-arch-tune.patch │ │ │ ├── cross-crompile-ffmpeg.patch │ │ │ ├── fix-tar-command-with-DIST.patch │ │ │ └── use-native-pkg-config.patch │ │ └── omxplayer_git.bb │ └── x264 │ │ └── x264_%.bbappend └── wic │ └── sdimage-raspberrypi.wks ├── meta-security ├── .gitignore ├── .gitlab-ci.yml ├── COPYING.MIT ├── README ├── classes │ ├── check_security.bbclass │ └── dm-verity-img.bbclass ├── conf │ ├── distro │ │ └── include │ │ │ └── maintainers.inc │ └── layer.conf ├── docs │ └── overview.txt ├── dynamic-layers │ └── meta-rust │ │ └── recipes-ids │ │ └── suricata │ │ ├── files │ │ ├── fixup.patch │ │ ├── run-ptest │ │ ├── suricata.service │ │ ├── suricata.yaml │ │ ├── tmpfiles.suricata │ │ └── volatiles.03_suricata │ │ ├── libhtp_0.5.37.bb │ │ ├── suricata.inc │ │ └── suricata_6.0.2.bb ├── kas │ ├── kas-security-alt.yml │ ├── kas-security-base.yml │ ├── kas-security-dm.yml │ ├── kas-security-parsec.yml │ ├── qemuarm-parsec.yml │ ├── qemuarm.yml │ ├── qemuarm64-alt.yml │ ├── qemuarm64-ima.yml │ ├── qemuarm64-multi.yml │ ├── qemuarm64-musl.yml │ ├── qemuarm64-parsec.yml │ ├── qemuarm64-tpm2.yml │ ├── qemuarm64.yml │ ├── qemumips64-alt.yml │ ├── qemumips64-multi.yml │ ├── qemumips64.yml │ ├── qemuppc-parsec.yml │ ├── qemuppc.yml │ ├── qemuriscv64.yml │ ├── qemux86-64-alt.yml │ ├── qemux86-64-dm-verify.yml │ ├── qemux86-64-ima.yml │ ├── qemux86-64-multi.yml │ ├── qemux86-64-parsec.yml │ ├── qemux86-64-tpm.yml │ ├── qemux86-64-tpm2.yml │ ├── qemux86-64.yml │ ├── qemux86-comp.yml │ ├── qemux86-harden.yml │ ├── qemux86-ima.yml │ ├── qemux86-musl.yml │ ├── qemux86-parsec.yml │ ├── qemux86-test.yml │ └── qemux86.yml ├── lib │ └── oeqa │ │ ├── runtime │ │ └── cases │ │ │ ├── apparmor.py │ │ │ ├── checksec.py │ │ │ ├── clamav.py │ │ │ ├── samhain.py │ │ │ ├── smack.py │ │ │ ├── sssd.py │ │ │ ├── suricata.py │ │ │ └── tripwire.py │ │ └── selftest │ │ └── cases │ │ └── cvechecker.py ├── meta-hardening │ ├── README │ ├── conf │ │ ├── distro │ │ │ └── harden.conf │ │ └── layer.conf │ ├── recipes-connectivity │ │ └── openssh │ │ │ └── openssh_%.bbappend │ ├── recipes-core │ │ ├── base-files │ │ │ └── base-files_%.bbappend │ │ ├── images │ │ │ └── harden-image-minimal.bb │ │ ├── initscripts │ │ │ ├── files │ │ │ │ └── mountall.sh │ │ │ └── initscripts_1.0.bbappend │ │ └── packagegroups │ │ │ └── packagegroup-hardening.bb │ └── recipes-extended │ │ ├── shadow │ │ └── shadow_%.bbappend │ │ └── sudo │ │ └── sudo_%.bbappend ├── meta-integrity │ ├── README.md │ ├── classes │ │ ├── ima-evm-rootfs.bbclass │ │ └── kernel-modsign.bbclass │ ├── conf │ │ └── layer.conf │ ├── data │ │ └── debug-keys │ │ │ ├── privkey_ima.pem │ │ │ ├── privkey_modsign.pem │ │ │ ├── x509_ima.der │ │ │ └── x509_modsign.crt │ ├── dynamic-layers │ │ └── meta-networking │ │ │ └── recipes-support │ │ │ └── strongswan │ │ │ ├── strongswan-ima.inc │ │ │ └── strongswan_5.%.bbappend │ ├── lib │ │ └── oeqa │ │ │ └── runtime │ │ │ └── cases │ │ │ └── ima.py │ ├── recipes-core │ │ ├── base-files │ │ │ ├── base-files-ima.inc │ │ │ └── base-files_%.bbappend │ │ ├── images │ │ │ └── integrity-image-minimal.bb │ │ ├── initrdscripts │ │ │ ├── initramfs-framework-ima.bb │ │ │ └── initramfs-framework-ima │ │ │ │ └── ima │ │ ├── packagegroups │ │ │ └── packagegroup-ima-evm-utils.bb │ │ └── systemd │ │ │ ├── files │ │ │ ├── machine-id-commit-sync.conf │ │ │ └── random-seed-sync.conf │ │ │ └── systemd_%.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-%.bbappend │ │ │ └── linux │ │ │ ├── 0001-ima-fix-ima_inode_post_setattr.patch │ │ │ ├── 0002-ima-add-support-for-creating-files-using-the-mknodat.patch │ │ │ └── Revert-ima-limit-file-hash-setting-by-user-to-fix-an.patch │ ├── recipes-security │ │ ├── ima-evm-keys │ │ │ └── ima-evm-keys_1.0.bb │ │ ├── ima-evm-utils │ │ │ ├── ima-evm-utils │ │ │ │ ├── command-line-apply-operation-to-all-paths.patch │ │ │ │ ├── disable-doc-creation.patch │ │ │ │ └── evmctl.c-do-not-depend-on-xattr.h-with-IMA-defines.patch │ │ │ └── ima-evm-utils_git.bb │ │ ├── ima_policy_appraise_all │ │ │ ├── files │ │ │ │ └── ima_policy_appraise_all │ │ │ └── ima-policy-appraise-all_1.0.bb │ │ ├── ima_policy_hashed │ │ │ ├── files │ │ │ │ └── ima_policy_hashed │ │ │ └── ima-policy-hashed_1.0.bb │ │ └── ima_policy_simple │ │ │ ├── files │ │ │ └── ima_policy_simple │ │ │ └── ima-policy-simple_1.0.bb │ └── scripts │ │ ├── ima-gen-CA-signed.sh │ │ ├── ima-gen-local-ca.sh │ │ └── ima-gen-self-signed.sh ├── meta-parsec │ ├── README.md │ ├── conf │ │ └── layer.conf │ └── recipes-parsec │ │ ├── parsec-service │ │ ├── files │ │ │ ├── cryptoki.patch │ │ │ ├── parsec-tmpfiles.conf │ │ │ ├── parsec_init │ │ │ └── systemd.patch │ │ ├── parsec-service_0.7.0.bb │ │ └── parsec-service_0.7.0.inc │ │ └── parsec-tool │ │ ├── parsec-tool_0.3.0.bb │ │ └── parsec-tool_0.3.0.inc ├── meta-security-compliance │ ├── README │ ├── conf │ │ └── layer.conf │ ├── recipes-auditors │ │ └── lynis │ │ │ └── lynis_3.0.0.bb │ ├── recipes-core │ │ ├── openembedded-release │ │ │ └── openembedded-release_1.0.bb │ │ └── os-release │ │ │ └── os-release.bbappend │ └── recipes-openscap │ │ ├── oe-scap │ │ ├── files │ │ │ ├── OpenEmbedded_nodistro_0.xccdf.xml │ │ │ ├── OpenEmbedded_nodistro_0.xml │ │ │ ├── oval-to-xccdf.xslt │ │ │ ├── run_cve.sh │ │ │ └── run_test.sh │ │ └── oe-scap_1.0.bb │ │ ├── openscap-daemon │ │ ├── files │ │ │ └── 0001-Renamed-module-and-variables-to-get-rid-of-async.patch │ │ └── openscap-daemon_0.1.10.bb │ │ ├── openscap │ │ ├── openscap.inc │ │ ├── openscap_1.3.3.bb │ │ └── openscap_git.bb │ │ └── scap-security-guide │ │ ├── files │ │ ├── 0001-Fix-XML-parsing-of-the-remediation-functions-file.patch │ │ ├── 0001-Fix-platform-spec-file-check-tests-in-installed-OS-d.patch │ │ ├── 0001-fix-deprecated-instance-of-element.getchildren.patch │ │ ├── 0002-Fix-missing-openembedded-from-ssg-constants.py.patch │ │ ├── 0002-Fixed-the-broken-fix-when-greedy-regex-ate-the-whole.patch │ │ ├── 0002-fix-deprecated-getiterator-function.patch │ │ └── 0003-fix-remaining-getchildren-and-getiterator-functions.patch │ │ ├── scap-security-guide.inc │ │ ├── scap-security-guide_0.1.44.bb │ │ └── scap-security-guide_git.bb ├── meta-security-isafw │ ├── .gitignore │ ├── COPYING.MIT │ ├── README.md │ ├── classes │ │ └── isafw.bbclass │ ├── conf │ │ └── layer.conf │ ├── lib │ │ └── isafw │ │ │ ├── __init__.py │ │ │ ├── isafw.py │ │ │ └── isaplugins │ │ │ ├── ISA_cfa_plugin.py │ │ │ ├── ISA_cve_plugin.py │ │ │ ├── ISA_fsa_plugin.py │ │ │ ├── ISA_kca_plugin.py │ │ │ ├── ISA_la_plugin.py │ │ │ ├── __init__.py │ │ │ └── configs │ │ │ ├── __init__.py │ │ │ ├── kca │ │ │ ├── __init__.py │ │ │ ├── arm.py │ │ │ ├── common.py │ │ │ └── x86.py │ │ │ └── la │ │ │ ├── approved-non-osi │ │ │ ├── exceptions │ │ │ ├── licenses │ │ │ └── violations │ └── recipes-devtools │ │ └── checksec │ │ └── checksec_1.5-1.bb ├── meta-tpm │ ├── README │ ├── conf │ │ ├── distro │ │ │ └── include │ │ │ │ └── maintainers.inc │ │ └── layer.conf │ ├── dynamic-layers │ │ └── meta-networking │ │ │ └── recipes-support │ │ │ └── strongswan │ │ │ ├── files │ │ │ └── 0001-xfrmi-Only-build-if-libcharon-is-built.patch │ │ │ ├── strongswan-tpm.inc │ │ │ └── strongswan_5.%.bbappend │ ├── lib │ │ └── oeqa │ │ │ └── runtime │ │ │ └── cases │ │ │ └── tpm2.py │ ├── recipes-core │ │ ├── images │ │ │ ├── security-tpm-image.bb │ │ │ └── security-tpm2-image.bb │ │ └── packagegroup │ │ │ ├── packagegroup-security-tpm-i2c.bb │ │ │ ├── packagegroup-security-tpm.bb │ │ │ ├── packagegroup-security-tpm2.bb │ │ │ └── packagegroup-security-vtpm.bb │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-yocto │ │ │ ├── tpm.cfg │ │ │ ├── tpm.scc │ │ │ ├── tpm2.cfg │ │ │ ├── tpm2.scc │ │ │ ├── tpm_i2c.cfg │ │ │ ├── tpm_i2c.scc │ │ │ ├── tpm_x86.cfg │ │ │ ├── vtpm.cfg │ │ │ └── vtpm.scc │ │ │ └── linux-yocto_5.%.bbappend │ ├── recipes-tpm │ │ ├── libtpm │ │ │ ├── files │ │ │ │ ├── Convert-another-vdprintf-to-dprintf.patch │ │ │ │ ├── Use-format-s-for-call-to-dprintf.patch │ │ │ │ └── fix_signed_issue.patch │ │ │ └── libtpm_0.8.2.bb │ │ ├── openssl-tpm-engine │ │ │ ├── files │ │ │ │ ├── 0001-create-tpm-key-support-well-known-key-option.patch │ │ │ │ ├── 0002-libtpm-support-env-TPM_SRK_PW.patch │ │ │ │ ├── 0003-tpm-openssl-tpm-engine-parse-an-encrypted-tpm-SRK-pa.patch │ │ │ │ ├── 0004-tpm-openssl-tpm-engine-change-variable-c-type-from-c.patch │ │ │ │ └── openssl11_build_fix.patch │ │ │ └── openssl-tpm-engine_0.5.0.bb │ │ ├── pcr-extend │ │ │ ├── files │ │ │ │ └── fix_openssl11_build.patch │ │ │ └── pcr-extend_git.bb │ │ ├── swtpm │ │ │ ├── files │ │ │ │ ├── fix_fcntl_h.patch │ │ │ │ ├── fix_lib_search_path.patch │ │ │ │ ├── ioctl_h.patch │ │ │ │ └── oe_configure.patch │ │ │ ├── swtpm-wrappers-native.bb │ │ │ └── swtpm_0.5.2.bb │ │ ├── tpm-quote-tools │ │ │ └── tpm-quote-tools_1.0.4.bb │ │ ├── tpm-tools │ │ │ ├── files │ │ │ │ ├── 04-fix-FTBFS-clang.patch │ │ │ │ ├── openssl1.1_fix.patch │ │ │ │ └── tpm-tools-extendpcr.patch │ │ │ └── tpm-tools_1.3.9.2.bb │ │ └── trousers │ │ │ ├── files │ │ │ ├── 0001-build-don-t-override-localstatedir-mandir-sysconfdir.patch │ │ │ ├── get-user-ps-path-use-POSIX-getpwent-instead-of-getpwe.patch │ │ │ ├── tcsd.service │ │ │ ├── trousers-udev.rules │ │ │ └── trousers.init.sh │ │ │ └── trousers_git.bb │ └── recipes-tpm2 │ │ ├── ibmswtpm2 │ │ ├── files │ │ │ ├── fix-wrong-cast.patch │ │ │ └── tune-makefile.patch │ │ └── ibmswtpm2_1637.bb │ │ ├── ibmtpm2tss │ │ ├── ibmtpm2tss │ │ │ └── 0001-utils-12-Makefile.am-expand-wildcards-in-prereqs.patch │ │ └── ibmtpm2tss_1.6.0.bb │ │ ├── tpm2-abrmd │ │ ├── files │ │ │ ├── tpm2-abrmd-init.sh │ │ │ └── tpm2-abrmd.default │ │ └── tpm2-abrmd_2.4.0.bb │ │ ├── tpm2-pkcs11 │ │ ├── files │ │ │ ├── 0001-remove-local-binary-checkes.patch │ │ │ └── bootstrap_fixup.patch │ │ └── tpm2-pkcs11_1.5.0.bb │ │ ├── tpm2-tcti-uefi │ │ ├── files │ │ │ ├── configure_oe_fixup.patch │ │ │ └── fix_header_file.patch │ │ ├── tpm2-tcti-uefi │ │ │ └── 0001-configure.ac-stop-inserting-host-directories-into-co.patch │ │ └── tpm2-tcti-uefi_0.9.9.bb │ │ ├── tpm2-tools │ │ └── tpm2-tools_5.0.bb │ │ ├── tpm2-totp │ │ └── tpm2-totp_0.3.0.bb │ │ ├── tpm2-tss-engine │ │ └── tpm2-tss-engine_1.1.0.bb │ │ └── tpm2-tss │ │ ├── tpm2-tss │ │ ├── 0001-configure.ac-fix-compatibility-with-autoconf-2.70.patch │ │ ├── ax_pthread.m4 │ │ └── fix_musl_select_include.patch │ │ └── tpm2-tss_3.0.3.bb ├── recipes-core │ ├── busybox │ │ ├── busybox │ │ │ └── head.cfg │ │ ├── busybox_%.bbappend │ │ └── busybox_libsecomp.inc │ ├── images │ │ ├── dm-verity-image-initramfs.bb │ │ ├── security-build-image.bb │ │ ├── security-client-image.bb │ │ ├── security-server-image.bb │ │ └── security-test-image.bb │ ├── initrdscripts │ │ ├── initramfs-framework │ │ │ └── dmverity │ │ └── initramfs-framework_1.0.bbappend │ └── packagegroup │ │ └── packagegroup-core-security.bb ├── recipes-ids │ ├── samhain │ │ ├── files │ │ │ ├── fix-build-with-new-version-attr.patch │ │ │ ├── run-ptest │ │ │ ├── samhain-add-LDFLAGS-variable-for-samhain_setpwd.patch │ │ │ ├── samhain-avoid-searching-host-for-postgresql.patch │ │ │ ├── samhain-client.default │ │ │ ├── samhain-client.init │ │ │ ├── samhain-configure-add-option-for-ps.patch │ │ │ ├── samhain-fix-initializer-element-is-not-constant.patch │ │ │ ├── samhain-mips64-aarch64-dnmalloc-hash-fix.patch │ │ │ ├── samhain-not-run-ptest-on-host.patch │ │ │ ├── samhain-pid-path.patch │ │ │ ├── samhain-samhainrc-fix-files-dirs-path.patch │ │ │ ├── samhain-samhainrc.patch │ │ │ ├── samhain-server-volatiles │ │ │ ├── samhain-server-volatiles.conf │ │ │ ├── samhain-server.default │ │ │ ├── samhain-server.init │ │ │ ├── samhain-sha256-big-endian.patch │ │ │ ├── samhain-standalone.default │ │ │ ├── samhain-standalone.init │ │ │ └── samhain.service │ │ ├── samhain-client.bb │ │ ├── samhain-server.bb │ │ ├── samhain-standalone.bb │ │ └── samhain.inc │ ├── suricata │ │ ├── files │ │ │ ├── 0001-af-packet-fix-build-on-recent-Linux-kernels.patch │ │ │ ├── no_libhtp_build.patch │ │ │ ├── run-ptest │ │ │ ├── suricata.service │ │ │ ├── suricata.yaml │ │ │ ├── tmpfiles.suricata │ │ │ └── volatiles.03_suricata │ │ ├── libhtp_0.5.36.bb │ │ ├── python3-suricata-update_1.2.1.bb │ │ ├── suricata.inc │ │ └── suricata_4.1.10.bb │ └── tripwire │ │ ├── files │ │ ├── add_armeb_arch.patch │ │ ├── run-ptest │ │ ├── tripwire.cron │ │ ├── tripwire.sh │ │ ├── tripwire.txt │ │ ├── twcfg.txt │ │ ├── twinstall.sh │ │ └── twpol-yocto.txt │ │ └── tripwire_2.4.3.7.bb ├── recipes-kernel │ ├── linux │ │ ├── linux-%_5.%.bbappend │ │ ├── linux-yocto-dev.bbappend │ │ └── linux-yocto_5.%.bbappend │ └── lkrg │ │ ├── files │ │ └── makefile_cleanup.patch │ │ └── lkrg-module_0.9.0.bb ├── recipes-mac │ ├── AppArmor │ │ ├── apparmor_3.0.bb │ │ └── files │ │ │ ├── 0001-Makefile.am-suppress-perllocal.pod.patch │ │ │ ├── 0001-Revert-profiles-Update-make-check-to-select-tools-ba.patch │ │ │ ├── 0001-aa_status-Fix-build-issue-with-musl.patch │ │ │ ├── 0001-apparmor-fix-manpage-order.patch │ │ │ ├── 0001-libapparmor-add-missing-include-for-socklen_t.patch │ │ │ ├── 0001-parser-Makefile-dont-force-host-cpp-to-detect-reallo.patch │ │ │ ├── 0002-libapparmor-add-aa_features_new_from_file-to-public-.patch │ │ │ ├── 0003-libapparmor-add-_aa_asprintf-to-private-symbols.patch │ │ │ ├── apparmor │ │ │ ├── apparmor.rc │ │ │ ├── apparmor.service │ │ │ ├── crosscompile_perl_bindings.patch │ │ │ ├── disable_pdf.patch │ │ │ ├── disable_perl_h_check.patch │ │ │ ├── functions │ │ │ └── run-ptest │ ├── ccs-tools │ │ ├── README │ │ └── ccs-tools_1.8.4.bb │ └── smack │ │ ├── mmap-smack-test │ │ └── mmap.c │ │ ├── mmap-smack-test_1.0.bb │ │ ├── smack-test │ │ ├── notroot.py │ │ ├── smack_test_file_access.sh │ │ ├── test_privileged_change_self_label.sh │ │ └── test_smack_onlycap.sh │ │ ├── smack-test_1.0.bb │ │ ├── smack │ │ ├── run-ptest │ │ └── smack_generator_make_fixup.patch │ │ ├── smack_1.3.1.bb │ │ ├── tcp-smack-test │ │ ├── tcp_client.c │ │ ├── tcp_server.c │ │ └── test_smack_tcp_sockets.sh │ │ ├── tcp-smack-test_1.0.bb │ │ ├── udp-smack-test │ │ ├── test_smack_udp_sockets.sh │ │ ├── udp_client.c │ │ └── udp_server.c │ │ └── udp-smack-test_1.0.bb ├── recipes-perl │ └── perl │ │ ├── files │ │ └── libwhisker2.patch │ │ ├── lib-perl_0.63.bb │ │ └── libwhisker2-perl_2.5.bb ├── recipes-python │ └── python │ │ └── python3-oauth2client_4.1.3.bb ├── recipes-scanners │ ├── arpwatch │ │ ├── arpwatch_3.1.bb │ │ └── files │ │ │ ├── arpwatch.conf │ │ │ ├── arpwatch.default │ │ │ ├── arpwatch_init │ │ │ ├── host_contam_fix.patch │ │ │ └── postfix_workaround.patch │ ├── buck-security │ │ └── buck-security_0.7.bb │ ├── checksec │ │ └── checksec_2.4.0.bb │ ├── checksecurity │ │ ├── checksecurity_2.0.15.bb │ │ └── files │ │ │ ├── check-setuid-use-more-portable-find-args.patch │ │ │ └── setuid-log-folder.patch │ ├── clamav │ │ ├── clamav_0.104.0.bb │ │ └── files │ │ │ ├── clamav-freshclam.service │ │ │ ├── clamav-milter.conf.sample │ │ │ ├── clamav.service │ │ │ ├── clamd.conf │ │ │ ├── freshclam-native.conf │ │ │ ├── freshclam.conf │ │ │ ├── headers_fixup.patch │ │ │ ├── oe_cmake_fixup.patch │ │ │ ├── tmpfiles.clamav │ │ │ └── volatiles.03_clamav │ └── rootkits │ │ └── chkrootkit_0.53.bb ├── recipes-security │ ├── aircrack-ng │ │ └── aircrack-ng_1.3.bb │ ├── bastille │ │ ├── bastille_3.2.1.bb │ │ └── files │ │ │ ├── API.pm │ │ │ ├── AccountPermission.pm │ │ │ ├── FileContent.pm │ │ │ ├── HPSpecific.pm │ │ │ ├── Miscellaneous.pm │ │ │ ├── ServiceAdmin.pm │ │ │ ├── accept_os_flag_in_backend.patch │ │ │ ├── allow_os_with_assess.patch │ │ │ ├── call_output_config.patch │ │ │ ├── config │ │ │ ├── do_not_apply_config.patch │ │ │ ├── edit_usage_message.patch │ │ │ ├── find_existing_config.patch │ │ │ ├── fix_missing_use_directives.patch │ │ │ ├── fix_number_of_modules.patch │ │ │ ├── fix_version_parse.patch │ │ │ ├── fixed_defined_warnings.patch │ │ │ ├── organize_distro_discovery.patch │ │ │ ├── remove_questions_text_file_references.patch │ │ │ ├── set_required_questions.py │ │ │ ├── simplify_B_place.patch │ │ │ └── upgrade_options_processing.patch │ ├── ecryptfs-utils │ │ ├── ecryptfs-utils_111.bb │ │ └── files │ │ │ ├── 0001-avoid-race-condition.patch │ │ │ ├── define_musl_sword_type.patch │ │ │ ├── ecryptfs-utils-CVE-2016-6224.patch │ │ │ └── ecryptfs.service │ ├── fail2ban │ │ ├── files │ │ │ ├── 0001-To-fix-build-error-of-xrang.patch │ │ │ ├── fail2ban_setup.py │ │ │ ├── initd │ │ │ └── run-ptest │ │ └── python3-fail2ban_0.11.2.bb │ ├── fscryptctl │ │ └── fscryptctl_1.0.0.bb │ ├── google-authenticator-libpam │ │ └── google-authenticator-libpam_1.08.bb │ ├── isic │ │ ├── files │ │ │ ├── configure_fix.patch │ │ │ ├── isic-0.07-make.patch │ │ │ └── isic-0.07-netinet.patch │ │ └── isic_0.07.bb │ ├── libdhash │ │ └── ding-libs_0.6.1.bb │ ├── libest │ │ └── libest_3.2.0.bb │ ├── libgssglue │ │ ├── files │ │ │ ├── libgssglue-canon-name.patch │ │ │ ├── libgssglue-fix-CVE-2011-2709.patch │ │ │ ├── libgssglue-g-initialize.patch │ │ │ ├── libgssglue-gss-inq-cred.patch │ │ │ └── libgssglue-mglueP.patch │ │ └── libgssglue_0.4.bb │ ├── libmhash │ │ ├── files │ │ │ ├── Makefile.test │ │ │ ├── mhash.c │ │ │ └── run-ptest │ │ └── libmhash_0.9.9.9.bb │ ├── libmspack │ │ └── libmspack_1.9.1.bb │ ├── libseccomp │ │ ├── files │ │ │ └── run-ptest │ │ └── libseccomp_2.5.1.bb │ ├── mfa │ │ └── python3-privacyidea_3.5.2.bb │ ├── ncrack │ │ └── ncrack_0.7.bb │ ├── nikto │ │ ├── files │ │ │ └── location.patch │ │ └── nikto_2.1.6.bb │ ├── opendnssec │ │ ├── files │ │ │ ├── libdns_conf_fix.patch │ │ │ └── libxml2_conf.patch │ │ └── opendnssec_2.1.8.bb │ ├── paxctl │ │ └── paxctl_0.9.bb │ ├── redhat-security │ │ ├── files │ │ │ ├── find-chroot-py.sh │ │ │ ├── find-chroot.sh │ │ │ ├── find-elf4tmp.sh │ │ │ ├── find-execstack.sh │ │ │ ├── find-hidden-exec.sh │ │ │ ├── find-nodrop-groups.sh │ │ │ ├── find-sh4errors.sh │ │ │ ├── find-sh4tmp.sh │ │ │ ├── lib-bin-check.sh │ │ │ ├── rpm-chksec.sh │ │ │ ├── rpm-drop-groups.sh │ │ │ ├── selinux-check-devices.sh │ │ │ └── selinux-ls-unconfined.sh │ │ └── redhat-security_1.0.bb │ ├── scapy │ │ ├── files │ │ │ └── run-ptest │ │ └── python3-scapy_2.4.4.bb │ └── sssd │ │ ├── files │ │ ├── 0001-build-Don-t-use-AC_CHECK_FILE-when-building-manpages.patch │ │ ├── 0001-nss-Collision-with-external-nss-symbol.patch │ │ ├── 0002-Provide-missing-defines-which-otherwise-are-availabl.patch │ │ ├── fix-ldblibdir.patch │ │ ├── sssd.conf │ │ └── volatiles.99_sssd │ │ └── sssd_1.16.5.bb ├── scripts │ ├── ci-cleanup.sh │ └── upload-error-report └── wic │ ├── beaglebone-yocto-verity.wks.in │ └── systemd-bootdisk-dmverity.wks.in ├── meta-skeleton ├── meta-supermicro ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── conf │ ├── layer.conf │ └── machine │ │ └── include │ │ └── supermicro.inc ├── meta-common │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ └── smci.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes-supermicro │ │ └── packagegroups │ │ └── packagegroup-supermicro-apps.bb └── meta-x11spi │ └── conf │ ├── bblayers.conf.sample │ ├── conf-notes.txt │ ├── layer.conf │ ├── local.conf.sample │ └── machine │ └── x11spi.conf ├── meta-wistron └── OWNERS ├── meta-x86 └── conf │ └── layer.conf ├── meta-xilinx ├── COPYING.MIT ├── README.md ├── meta-microblaze │ ├── conf │ │ └── layer.conf │ ├── recipes-core │ │ └── newlib │ │ │ ├── files │ │ │ ├── 0001-Patch-microblaze-Add-config-microblaze.mt-for-target.patch │ │ │ ├── 0002-Patch-microblaze-Modified-_exceptional_handler.patch │ │ │ ├── 0003-LOCAL-Add-missing-declarations-for-xil_printf-to-std.patch │ │ │ ├── 0004-Local-deleting-the-xil_printf.c-file-as-now-it-part-.patch │ │ │ ├── 0005-Local-deleting-the-xil_printf.o-from-MAKEFILE.patch │ │ │ ├── 0006-MB-X-intial-commit.patch │ │ │ ├── 0007-Patch-Microblaze-newlib-port-for-microblaze-m64-flag.patch │ │ │ ├── 0008-fixing-the-bug-in-crt-files-added-addlik-instead-of-.patch │ │ │ ├── 0009-Patch-MicroBlaze-Added-MB-64-support-to-strcmp-strcp.patch │ │ │ ├── 0010-Removing-the-Assembly-implementation-of-64bit-string.patch │ │ │ ├── 0011-Fixed-the-bug-in-crtinit.s-for-MB-64.patch │ │ │ └── 0012-libc-machine-microblaze-strcmp.c-Fix-missing-end-of-.patch │ │ │ ├── libgloss_4.1.%.bbappend │ │ │ ├── microblaze-newlib.inc │ │ │ └── newlib_4.1.%.bbappend │ └── recipes-devtools │ │ ├── binutils │ │ ├── binutils-cross-canadian_%.bbappend │ │ ├── binutils-cross_%.bbappend │ │ ├── binutils-microblaze.inc │ │ ├── binutils │ │ │ ├── 0001-Add-wdc.ext.clear-and-wdc.ext.flush-insns.patch │ │ │ ├── 0002-Add-mlittle-endian-and-mbig-endian-flags.patch │ │ │ ├── 0003-Disable-the-warning-message-for-eh_frame_hdr.patch │ │ │ ├── 0004-LOCAL-Fix-relaxation-of-assembler-resolved-reference.patch │ │ │ ├── 0005-upstream-change-to-garbage-collection-sweep-causes-m.patch │ │ │ ├── 0006-Fix-bug-in-TLSTPREL-Relocation.patch │ │ │ ├── 0007-Added-Address-extension-instructions.patch │ │ │ ├── 0008-fixing-the-MAX_OPCODES-to-correct-value.patch │ │ │ ├── 0009-Add-new-bit-field-instructions.patch │ │ │ ├── 0010-fixing-the-imm-bug.patch │ │ │ ├── 0011-Patch-Microblaze-fixed-bug-in-GCC-so-that-It-will-su.patch │ │ │ ├── 0012-fixing-the-constant-range-check-issue.patch │ │ │ ├── 0013-Patch-Microblaze-Compiler-will-give-error-messages-i.patch │ │ │ ├── 0014-intial-commit-of-MB-64-bit.patch │ │ │ ├── 0015-MB-X-initial-commit.patch │ │ │ ├── 0016-Patch-Microblaze-negl-instruction-is-overriding-rsub.patch │ │ │ ├── 0017-Added-relocations-for-MB-X.patch │ │ │ ├── 0018-Fixed-MB-x-relocation-issues.patch │ │ │ ├── 0019-Fixing-the-branch-related-issues.patch │ │ │ ├── 0020-Fixed-address-computation-issues-with-64bit-address.patch │ │ │ ├── 0021-Adding-new-relocation-to-support-64bit-rodata.patch │ │ │ ├── 0022-fixing-the-.bss-relocation-issue.patch │ │ │ ├── 0023-Fixed-the-bug-in-the-R_MICROBLAZE_64_NONE-relocation.patch │ │ │ ├── 0024-Revert-ld-Remove-unused-expression-state.patch │ │ │ ├── 0025-fixing-the-long-long-long-mingw-toolchain-issue.patch │ │ │ ├── 0026-Added-support-to-new-arithmetic-single-register-inst.patch │ │ │ ├── 0027-Patch-MicroBlaze-double-imml-generation-for-64-bit-v.patch │ │ │ ├── 0028-Fixed-bug-in-generation-of-IMML-instruction-for-the.patch │ │ │ ├── 0029-Patch-MicroBlaze-m64-This-patch-will-remove-imml-0-a.patch │ │ │ ├── 0030-Patch-MicroBlaze-improper-address-mapping-of-PROVIDE.patch │ │ │ ├── 0031-gas-revert-moving-of-md_pseudo_table-from-const.patch │ │ │ ├── 0032-ld-emulparams-elf64microblaze-Fix-emulation-generati.patch │ │ │ ├── 0033-Add-initial-port-of-linux-gdbserver-add-gdb_proc_ser.patch │ │ │ ├── 0034-Initial-port-of-core-reading-support-Added-support-f.patch │ │ │ ├── 0035-Fix-debug-message-when-register-is-unavailable.patch │ │ │ ├── 0036-revert-master-rebase-changes-to-gdbserver.patch │ │ │ ├── 0037-revert-master-rebase-changes-to-gdbserver-previous-c.patch │ │ │ ├── 0038-microblaze-Add-build_gdbserver-yes-to-top-level-conf.patch │ │ │ ├── 0039-Initial-support-for-native-gdb.patch │ │ │ ├── 0040-Fixing-the-issues-related-to-GDB-7.12-added-all-the-.patch │ │ │ ├── 0041-Adding-64-bit-MB-support-Added-new-architecture-to-M.patch │ │ │ ├── 0042-porting-GDB-for-linux.patch │ │ │ ├── 0043-Binutils-security-check-is-causing-build-error-for-w.patch │ │ │ ├── 0044-Correcting-the-register-names-from-slr-shr-to-rslr-r.patch │ │ │ ├── 0045-Removing-the-header-gdb_assert.h-from-MB-target-file.patch │ │ │ ├── 0046-bfd-cpu-microblaze.c-Enhance-disassembler.patch │ │ │ ├── 0047-bfd-elf64-microblaze.c-Fix-build-failures.patch │ │ │ ├── 0048-bfd-elf-microblaze.c-Remove-obsolete-entries.patch │ │ │ ├── 0049-bfd-elf64-microblaze.c-Resolve-various-compiler-warn.patch │ │ │ ├── 0050-opcodes-microblaze-dis.c-Fix-compile-warnings.patch │ │ │ ├── 0051-gdb-microblaze-tdep.c-Remove-unused-functions.patch │ │ │ ├── 0052-sim-Allow-microblaze-architecture.patch │ │ │ └── 0053-gdb-Fix-microblaze-target-compilation.patch │ │ └── binutils_%.bbappend │ │ ├── gcc │ │ ├── gcc-10 │ │ │ ├── 0001-LOCAL-Testsuite-builtins-tests-require-fpic.patch │ │ │ ├── 0002-LOCAL-Quick-fail-g-.dg-opt-memcpy1.C.patch │ │ │ ├── 0003-LOCAL-For-dejagnu-static-testing-on-qemu-suppress-wa.patch │ │ │ ├── 0004-Patch-testsuite-Add-MicroBlaze-to-target-supports-fo.patch │ │ │ ├── 0005-Patch-testsuite-Update-MicroBlaze-strings-test.patch │ │ │ ├── 0006-Patch-testsuite-Allow-MicroBlaze-.weakext-pattern-in.patch │ │ │ ├── 0007-Patch-testsuite-Add-MicroBlaze-to-check_profiling_av.patch │ │ │ ├── 0008-Patch-microblaze-Fix-atomic-side-effects.patch │ │ │ ├── 0009-Patch-microblaze-Fix-atomic-boolean-return-value.patch │ │ │ ├── 0010-Patch-microblaze-Fix-the-Microblaze-crash-with-msmal.patch │ │ │ ├── 0011-Patch-microblaze-Added-ashrsi3_with_size_opt.patch │ │ │ ├── 0012-Patch-microblaze-Use-bralid-for-profiler-calls.patch │ │ │ ├── 0013-Patch-microblaze-Removed-moddi3-routinue.patch │ │ │ ├── 0014-Patch-microblaze-Add-INIT_PRIORITY-support.patch │ │ │ ├── 0015-Patch-microblaze-Add-optimized-lshrsi3.patch │ │ │ ├── 0016-Patch-microblaze-Add-cbranchsi4_reg.patch │ │ │ ├── 0017-Patch-microblaze-Inline-Expansion-of-fsqrt-builtin.patch │ │ │ ├── 0018-PATCH-microblaze.md-Improve-adddi3-and-subdi3-insn-d.patch │ │ │ ├── 0019-Patch-microblaze-Update-ashlsi3-movsf-patterns.patch │ │ │ ├── 0020-Patch-microblaze-8-stage-pipeline-for-microblaze.patch │ │ │ ├── 0021-Patch-microblaze-Correct-the-const-high-double-immed.patch │ │ │ ├── 0022-Fix-microblaze-Fix-internal-compiler-error-with-msma.patch │ │ │ ├── 0023-patch-microblaze-Fix-the-calculation-of-high-word-in.patch │ │ │ ├── 0024-Patch-microblaze-Add-new-bit-field-instructions.patch │ │ │ ├── 0025-Patch-microblaze-Fix-bug-in-MB-version-calculation.patch │ │ │ ├── 0026-Fixing-the-issue-with-the-builtin_alloc.patch │ │ │ ├── 0027-Patch-Microblaze-update-in-constraints-for-bitfield-.patch │ │ │ ├── 0028-Patch-Microblaze-Removed-fsqrt-generation-for-double.patch │ │ │ ├── 0029-Patch-MicroBlaze-Intial-commit-of-64-bit-Microblaze.patch │ │ │ ├── 0030-Intial-commit-for-64bit-MB-sources.patch │ │ │ ├── 0031-re-arrangement-of-the-compare-branches.patch │ │ │ ├── 0032-Patch-Microblaze-previous-commit-broke-the-handling-.patch │ │ │ ├── 0033-Patch-Microblaze-Support-of-multilibs-with-m64.patch │ │ │ ├── 0034-Fixed-issues-like.patch │ │ │ ├── 0035-Fixed-below-issues.patch │ │ │ ├── 0036-Added-double-arith-instructions.patch │ │ │ ├── 0037-Fixed-the-issue-in-the-delay-slot-with-swap-instruct.patch │ │ │ ├── 0038-Fixed-the-load-store-issue-with-the-32bit-arith-libr.patch │ │ │ ├── 0039-extending-the-Dwarf-support-to-64bit-Microblaze.patch │ │ │ ├── 0040-fixing-the-typo-errors-in-umodsi3-file.patch │ │ │ ├── 0041-fixing-the-32bit-LTO-related-issue9-1014024.patch │ │ │ ├── 0042-Fixed-the-missing-stack-adjustment-in-prologue-of-mo.patch │ │ │ ├── 0043-Patch-Microblaze-corrected-SPN-for-dlong-instruction.patch │ │ │ ├── 0044-fixing-the-long-long-long-mingw-toolchain-issue.patch │ │ │ ├── 0045-Fix-the-MB-64-bug-of-handling-QI-objects.patch │ │ │ ├── 0046-Patch-Microblaze-We-will-check-the-possibility-of-pe.patch │ │ │ ├── 0047-Patch-MicroBlaze-fixed-typos-in-mul-div-and-mod-asse.patch │ │ │ ├── 0048-Author-Nagaraju-nmekala-xilinx.com.patch │ │ │ ├── 0049-Added-new-MB-64-single-register-arithmetic-instructi.patch │ │ │ ├── 0050-Patch-MicroBlaze-Added-support-for-64-bit-Immediate-.patch │ │ │ ├── 0051-Patch-microblaze-Fix-Compiler-crash-with-freg-struct.patch │ │ │ ├── 0052-Patch-microblaze-Add-TARGET_OPTION_OPTIMIZATION-and-.patch │ │ │ ├── 0053-Patch-microblaze-Reducing-Stack-space-for-arguments.patch │ │ │ └── microblaze-mulitlib-hack.patch │ │ └── gcc-source_10.%.bbappend │ │ ├── gdb │ │ ├── gdb-9.2.inc │ │ ├── gdb-common.inc │ │ ├── gdb-cross-canadian.inc │ │ ├── gdb-cross-canadian_%.bbappend │ │ ├── gdb-cross-canadian_9.2.bb │ │ ├── gdb-cross.inc │ │ ├── gdb-cross_%.bbappend │ │ ├── gdb-cross_9.2.bb │ │ ├── gdb-microblaze.inc │ │ ├── gdb.inc │ │ ├── gdb │ │ │ ├── 0001-Add-wdc.ext.clear-and-wdc.ext.flush-insns.patch │ │ │ ├── 0001-make-man-install-relative-to-DESTDIR.patch │ │ │ ├── 0002-mips-linux-nat-Define-_ABIO32-if-not-defined.patch │ │ │ ├── 0003-Disable-the-warning-message-for-eh_frame_hdr.patch │ │ │ ├── 0003-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ │ ├── 0004-Add-support-for-Renesas-SH-sh4-architecture.patch │ │ │ ├── 0004-LOCAL-Fix-relaxation-of-assembler-resolved-reference.patch │ │ │ ├── 0005-Dont-disable-libreadline.a-when-using-disable-static.patch │ │ │ ├── 0005-upstream-change-to-garbage-collection-sweep-causes-m.patch │ │ │ ├── 0006-Fix-bug-in-TLSTPREL-Relocation.patch │ │ │ ├── 0006-use-asm-sgidefs.h.patch │ │ │ ├── 0007-Added-Address-extension-instructions.patch │ │ │ ├── 0007-Use-exorted-definitions-of-SIGRTMIN.patch │ │ │ ├── 0008-Change-order-of-CFLAGS.patch │ │ │ ├── 0008-fixing-the-MAX_OPCODES-to-correct-value.patch │ │ │ ├── 0009-Add-new-bit-field-instructions.patch │ │ │ ├── 0009-resolve-restrict-keyword-conflict.patch │ │ │ ├── 0010-Fix-invalid-sigprocmask-call.patch │ │ │ ├── 0010-fixing-the-imm-bug.patch │ │ │ ├── 0011-gdbserver-ctrl-c-handling.patch │ │ │ ├── 0014-intial-commit-of-MB-64-bit.patch │ │ │ ├── 0015-MB-X-initial-commit.patch │ │ │ ├── 0016-Patch-Microblaze-negl-instruction-is-overriding-rsub.patch │ │ │ ├── 0017-Added-relocations-for-MB-X.patch │ │ │ ├── 0018-Fixed-MB-x-relocation-issues.patch │ │ │ ├── 0019-Fixing-the-branch-related-issues.patch │ │ │ ├── 0020-Fixed-address-computation-issues-with-64bit-address.patch │ │ │ ├── 0021-Adding-new-relocation-to-support-64bit-rodata.patch │ │ │ ├── 0022-fixing-the-.bss-relocation-issue.patch │ │ │ ├── 0023-Fixed-the-bug-in-the-R_MICROBLAZE_64_NONE-relocation.patch │ │ │ ├── 0025-fixing-the-long-long-long-mingw-toolchain-issue.patch │ │ │ ├── 0026-Added-support-to-new-arithmetic-single-register-inst.patch │ │ │ ├── 0027-Patch-MicroBlaze-double-imml-generation-for-64-bit-v.patch │ │ │ ├── 0032-ld-emulparams-elf64microblaze-Fix-emulation-generati.patch │ │ │ ├── 0033-Add-initial-port-of-linux-gdbserver-add-gdb_proc_ser.patch │ │ │ ├── 0034-Initial-port-of-core-reading-support-Added-support-f.patch │ │ │ ├── 0035-Fix-debug-message-when-register-is-unavailable.patch │ │ │ ├── 0036-revert-master-rebase-changes-to-gdbserver.patch │ │ │ ├── 0037-revert-master-rebase-changes-to-gdbserver-previous-c.patch │ │ │ ├── 0038-microblaze-Add-build_gdbserver-yes-to-top-level-conf.patch │ │ │ ├── 0039-Initial-support-for-native-gdb.patch │ │ │ ├── 0040-Fixing-the-issues-related-to-GDB-7.12-added-all-the-.patch │ │ │ ├── 0041-Adding-64-bit-MB-support-Added-new-architecture-to-M.patch │ │ │ ├── 0042-porting-GDB-for-linux.patch │ │ │ ├── 0043-Binutils-security-check-is-causing-build-error-for-w.patch │ │ │ ├── 0044-Correcting-the-register-names-from-slr-shr-to-rslr-r.patch │ │ │ ├── 0045-Removing-the-header-gdb_assert.h-from-MB-target-file.patch │ │ │ ├── 0046-bfd-cpu-microblaze.c-Enhance-disassembler.patch │ │ │ ├── 0047-bfd-elf64-microblaze.c-Fix-build-failures.patch │ │ │ ├── 0048-bfd-elf-microblaze.c-Remove-obsolete-entries.patch │ │ │ ├── 0049-bfd-elf64-microblaze.c-Resolve-various-compiler-warn.patch │ │ │ ├── 0050-opcodes-microblaze-dis.c-Fix-compile-warnings.patch │ │ │ ├── 0051-gdb-microblaze-tdep.c-Remove-unused-functions.patch │ │ │ ├── 0052-sim-Allow-microblaze-architecture.patch │ │ │ └── 0053-gdb-Fix-microblaze-target-compilation.patch │ │ ├── gdb_%.bbappend │ │ └── gdb_9.2.bb │ │ └── qemu │ │ ├── qemu-microblaze.inc │ │ ├── qemu-native_%.bbappend │ │ ├── qemu-system-native_%.bbappend │ │ └── qemu_%.bbappend ├── meta-xilinx-bsp │ ├── COPYING.MIT │ ├── README.booting.md │ ├── README.building.md │ ├── README.md │ ├── README.qemu.md │ ├── classes │ │ ├── image-types-xilinx-qemu.bbclass │ │ ├── image-wic-utils.bbclass │ │ ├── kernel-simpleimage.bbclass │ │ ├── qemuboot-xilinx.bbclass │ │ ├── xilinx-fetch-restricted.bbclass │ │ ├── xilinx-platform-init.bbclass │ │ ├── xilinx-testimage.bbclass │ │ └── xlnx-standalone.bbclass │ ├── conf │ │ ├── 0001-local.conf.sample-PMU_ROM-to-use-pmu-rom.elf-from-pr.patch │ │ ├── bblayers.conf.sample │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ ├── machine │ │ │ ├── aarch32-tc.conf │ │ │ ├── aarch64-tc.conf │ │ │ ├── arm-rm-tc.conf │ │ │ ├── cortexa53-zynqmp.conf │ │ │ ├── cortexa72-versal.conf │ │ │ ├── cortexa9-zynq.conf │ │ │ ├── cortexr5-versal.conf │ │ │ ├── cortexr5-zynqmp.conf │ │ │ ├── include │ │ │ │ ├── baremetal-tc.conf │ │ │ │ ├── machine-xilinx-default.inc │ │ │ │ ├── machine-xilinx-qemu.inc │ │ │ │ ├── soc-tune-include.inc │ │ │ │ ├── soc-versal.inc │ │ │ │ ├── soc-zynq.inc │ │ │ │ ├── soc-zynqmp.inc │ │ │ │ ├── tune-cortexrm.inc │ │ │ │ ├── xilinx-board.inc │ │ │ │ └── xilinx-soc-family.inc │ │ │ ├── kc705-microblazeel.conf │ │ │ ├── microblaze-plm.conf │ │ │ ├── microblaze-pmu.conf │ │ │ ├── microblaze-tc.conf │ │ │ ├── microblazeel-v11.0-bs-cmp-mh-div-generic.conf │ │ │ ├── microblazeel-v11.0-bs-cmp-ml-generic.conf │ │ │ ├── microzed-zynq7.conf │ │ │ ├── ml605-qemu-microblazeel.conf │ │ │ ├── picozed-zynq7.conf │ │ │ ├── qemu-zynq7.conf │ │ │ ├── s3adsp1800-qemu-microblazeeb.conf │ │ │ ├── system-zcu102.conf │ │ │ ├── ultra96-zynqmp.conf │ │ │ ├── v350-versal.conf │ │ │ ├── vc-p-a2197-00-versal.conf │ │ │ ├── vck-sc-zynqmp.conf │ │ │ ├── vck190-versal.conf │ │ │ ├── vck5000-versal.conf │ │ │ ├── versal-generic.conf │ │ │ ├── versal-mb.conf │ │ │ ├── vmk180-versal.conf │ │ │ ├── zc1254-zynqmp.conf │ │ │ ├── zc702-zynq7.conf │ │ │ ├── zc706-zynq7.conf │ │ │ ├── zcu102-zynqmp.conf │ │ │ ├── zcu104-zynqmp.conf │ │ │ ├── zcu106-zynqmp.conf │ │ │ ├── zcu111-zynqmp.conf │ │ │ ├── zcu1275-zynqmp.conf │ │ │ ├── zcu1285-zynqmp.conf │ │ │ ├── zcu208-zynqmp.conf │ │ │ ├── zcu216-zynqmp.conf │ │ │ ├── zedboard-zynq7.conf │ │ │ ├── zybo-linux-bd-zynq7.conf │ │ │ ├── zybo-zynq7.conf │ │ │ ├── zynq-generic.conf │ │ │ └── zynqmp-generic.conf │ │ └── multiconfig │ │ │ ├── fsblmc.conf │ │ │ └── pmumc.conf │ ├── recipes-bsp │ │ ├── arm-trusted-firmware │ │ │ ├── arm-trusted-firmware.inc │ │ │ └── arm-trusted-firmware_2020.2.bb │ │ ├── bootgen │ │ │ └── bootgen_1.0.bb │ │ ├── device-tree │ │ │ ├── device-tree.bb │ │ │ └── files │ │ │ │ ├── kc705-microblazeel │ │ │ │ ├── kc705-microblazeel.dts │ │ │ │ ├── pl.dtsi │ │ │ │ └── system-conf.dtsi │ │ │ │ ├── picozed-zynq7.dts │ │ │ │ ├── qemu-zynq7.dts │ │ │ │ ├── zybo-linux-bd-zynq7 │ │ │ │ ├── pcw.dtsi │ │ │ │ ├── pl.dtsi │ │ │ │ └── zybo-linux-bd-zynq7.dts │ │ │ │ └── zynq-7000-qspi-dummy.dtsi │ │ ├── platform-init │ │ │ ├── platform-init.bb │ │ │ └── platform-init │ │ │ │ └── picozed-zynq7 │ │ │ │ ├── ps7_init_gpl.c │ │ │ │ └── ps7_init_gpl.h │ │ ├── pmu-firmware │ │ │ └── pmu-rom_2018.1.bb │ │ ├── reference-design │ │ │ └── kc705-bitstream_2020.2.bb │ │ └── u-boot │ │ │ ├── files │ │ │ └── 0001-Remove-redundant-YYLOC-global-declaration.patch │ │ │ ├── u-boot-spl-zynq-init.inc │ │ │ ├── u-boot-xlnx-dev.bb │ │ │ ├── u-boot-xlnx.inc │ │ │ ├── u-boot-xlnx_2020.2.bb │ │ │ ├── u-boot-zynq-scr.bb │ │ │ ├── u-boot-zynq-scr │ │ │ ├── boot.cmd.qspi.versal │ │ │ ├── boot.cmd.sd.versal │ │ │ ├── boot.cmd.sd.zynq │ │ │ ├── boot.cmd.sd.zynqmp │ │ │ └── pxeboot.pxe │ │ │ ├── u-boot-zynq-uenv.bb │ │ │ └── u-boot_%.bbappend │ ├── recipes-core │ │ └── glibc │ │ │ └── glibc-locale_%.bbappend │ ├── recipes-devtools │ │ ├── qemu │ │ │ ├── files │ │ │ │ ├── 0001-Add-enable-disable-udev.patch │ │ │ │ ├── 0010-configure-Add-pkg-config-handling-for-libgcrypt.patch │ │ │ │ ├── flash_stripe.c │ │ │ │ └── qemu-system-aarch64-multiarch │ │ │ ├── flashstrip_1.0.bb │ │ │ ├── qemu-devicetrees.inc │ │ │ ├── qemu-devicetrees │ │ │ │ └── 0001-Makefile-Use-python3-instead-of-python.patch │ │ │ ├── qemu-devicetrees_2020.2.bb │ │ │ ├── qemu-native.inc │ │ │ ├── qemu-targets.inc │ │ │ ├── qemu-xilinx-helper-native_1.0.bb │ │ │ ├── qemu-xilinx-multiarch-helper-native_1.0.bb │ │ │ ├── qemu-xilinx-native.inc │ │ │ ├── qemu-xilinx-native_2020.2.bb │ │ │ ├── qemu-xilinx-system-native_2020.2.bb │ │ │ ├── qemu-xilinx.inc │ │ │ ├── qemu-xilinx_2020.2.bb │ │ │ ├── qemu.inc │ │ │ └── qemu │ │ │ │ ├── 0001-Add-enable-disable-udev.patch │ │ │ │ ├── 0001-qemu-Add-missing-wacom-HID-descriptor.patch │ │ │ │ ├── 0001-qemu-Do-not-include-file-if-not-exists.patch │ │ │ │ ├── 0001-target-mips-Increase-number-of-TLB-entries-on-the-34.patch │ │ │ │ ├── 0002-Add-subpackage-ptest-which-runs-all-unit-test-cases-.patch │ │ │ │ ├── 0003-qemu-Add-addition-environment-space-to-boot-loader-q.patch │ │ │ │ ├── 0004-qemu-disable-Valgrind.patch │ │ │ │ ├── 0005-qemu-native-set-ld.bfd-fix-cflags-and-set-some-envir.patch │ │ │ │ ├── 0006-chardev-connect-socket-to-a-spawned-command.patch │ │ │ │ ├── 0007-apic-fixup-fallthrough-to-PIC.patch │ │ │ │ ├── 0008-linux-user-Fix-webkitgtk-hangs-on-32-bit-x86-target.patch │ │ │ │ ├── 0009-Fix-webkitgtk-builds.patch │ │ │ │ ├── 0010-configure-Add-pkg-config-handling-for-libgcrypt.patch │ │ │ │ ├── CVE-2020-24352.patch │ │ │ │ ├── CVE-2020-25624.patch │ │ │ │ ├── CVE-2020-25723.patch │ │ │ │ ├── CVE-2020-28916.patch │ │ │ │ ├── CVE-2020-29129-CVE-2020-29130.patch │ │ │ │ ├── find_datadir.patch │ │ │ │ ├── powerpc_rom.bin │ │ │ │ ├── run-ptest │ │ │ │ └── usb-fix-setup_len-init.patch │ │ └── run-postinsts │ │ │ └── run-postinsts_%.bbappend │ ├── recipes-graphics │ │ ├── cairo │ │ │ └── cairo_%.bbappend │ │ ├── libgles │ │ │ ├── files │ │ │ │ ├── egl.pc │ │ │ │ ├── gbm.pc │ │ │ │ ├── glesv1.pc │ │ │ │ ├── glesv1_cm.pc │ │ │ │ └── glesv2.pc │ │ │ └── libmali-xlnx.bb │ │ ├── libglu │ │ │ └── libglu_%.bbappend │ │ ├── mali │ │ │ ├── kernel-module-mali.bb │ │ │ └── kernel-module-mali │ │ │ │ ├── 0001-Change-Makefile-to-be-compatible-with-Yocto.patch │ │ │ │ ├── 0002-staging-mali-r8p0-01rel0-Add-the-ZYNQ-ZYNQMP-platfor.patch │ │ │ │ ├── 0003-staging-mali-r8p0-01rel0-Remove-unused-trace-macros.patch │ │ │ │ ├── 0004-staging-mali-r8p0-01rel0-Don-t-include-mali_read_phy.patch │ │ │ │ ├── 0005-linux-mali_kernel_linux.c-Handle-clock-when-probed-a.patch │ │ │ │ ├── 0006-arm.c-global-variable-dma_ops-is-removed-from-the-ke.patch │ │ │ │ ├── 0010-common-mali_pm.c-Add-PM-runtime-barrier-after-removi.patch │ │ │ │ ├── 0011-linux-mali_kernel_linux.c-Enable-disable-clock-for-r.patch │ │ │ │ ├── 0012-linux-mali_memory_os_alloc-Remove-__GFP_COLD.patch │ │ │ │ ├── 0013-linux-mali_memory_secure-Add-header-file-dma-direct..patch │ │ │ │ ├── 0014-linux-mali_-timer-Get-rid-of-init_timer.patch │ │ │ │ ├── 0015-fix-driver-failed-to-check-map-error.patch │ │ │ │ ├── 0016-mali_memory_secure-Kernel-5.0-onwards-access_ok-API-.patch │ │ │ │ ├── 0017-Support-for-vm_insert_pfn-deprecated-from-kernel-4.2.patch │ │ │ │ ├── 0018-Change-return-type-to-vm_fault_t-for-fault-handler.patch │ │ │ │ └── 0019-get_monotonic_boottime-ts-deprecated-from-kernel-4.2.patch │ │ ├── mesa │ │ │ ├── mesa-demos_%.bbappend │ │ │ └── mesa-gl_%.bbappend │ │ ├── wayland │ │ │ └── weston_%.bbappend │ │ ├── weston │ │ │ ├── files │ │ │ │ ├── 0001-libweston-Remove-substitute-format-for-ARGB8888.patch │ │ │ │ └── weston.ini │ │ │ ├── weston-init%.bbappend │ │ │ └── weston_%.bbappend │ │ ├── xorg-driver │ │ │ ├── xf86-video-armsoc │ │ │ │ ├── 0001-armsoc_driver.c-Bypass-the-exa-layer-to-free-the-roo.patch │ │ │ │ └── 0001-src-drmmode_xilinx-Add-the-dumb-gem-support-for-Xili.patch │ │ │ └── xf86-video-armsoc_%.bbappend │ │ └── xorg-xserver │ │ │ ├── xserver-xf86-config │ │ │ └── zynqmp │ │ │ │ └── xorg.conf │ │ │ └── xserver-xf86-config_%.bbappend │ ├── recipes-kernel │ │ ├── dp │ │ │ └── kernel-module-dp_git.bb │ │ ├── dtc │ │ │ └── python3-dtc_1.5.1.bb │ │ ├── hdmi │ │ │ └── kernel-module-hdmi_git.bb │ │ ├── linux-firmware │ │ │ └── linux-firmware_%.bbappend │ │ ├── linux │ │ │ ├── linux-microblaze.inc │ │ │ ├── linux-xlnx-dev.bb │ │ │ ├── linux-xlnx.inc │ │ │ ├── linux-xlnx │ │ │ │ ├── 0001-libtraceevent-Fix-build-with-binutils-2.35.patch │ │ │ │ ├── 0001-perf-bench-Share-some-global-variables-to-fix-build-.patch │ │ │ │ ├── 0001-perf-cs-etm-Move-definition-of-traceid_list-global-v.patch │ │ │ │ ├── 0001-perf-tests-bp_account-Make-global-variable-static.patch │ │ │ │ ├── 0001-scripts-dtc-Remove-redundant-YYLOC-global-declaratio.patch │ │ │ │ └── perf-fix-build-with-binutils.patch │ │ │ ├── linux-xlnx_2020.2.bb │ │ │ ├── linux-yocto-dev.bbappend │ │ │ ├── linux-yocto-tiny_%.bbappend │ │ │ ├── linux-yocto-xilinx.inc │ │ │ └── linux-yocto_%.bbappend │ │ └── lopper │ │ │ └── lopper.bb │ ├── recipes-multimedia │ │ ├── gstreamer │ │ │ └── gstreamer1.0-plugins-base_%.bbappend │ │ └── vcu │ │ │ ├── kernel-module-vcu.bb │ │ │ ├── libomxil-xlnx.bb │ │ │ ├── libvcu-xlnx.bb │ │ │ └── vcu-firmware.bb │ ├── recipes-support │ │ └── libgpg-error │ │ │ ├── files │ │ │ └── lock-obj-pub.microblazeel-unknown-linux-gnu.h │ │ │ └── libgpg-error_%.bbappend │ └── recipes-xrt │ │ ├── opencl-headers │ │ └── opencl-headers_%.bbappend │ │ ├── xrt │ │ └── xrt_git.bb │ │ └── zocl │ │ └── zocl_git.bb ├── meta-xilinx-contrib │ ├── COPYING.MIT │ ├── README.md │ ├── conf │ │ ├── layer.conf │ │ └── machine │ │ │ └── minized-zynq7.conf │ ├── recipes-bsp │ │ ├── device-tree │ │ │ ├── device-tree.bbappend │ │ │ └── files │ │ │ │ └── minized-zynq7.dts │ │ └── reference-design │ │ │ └── zybo-linux-bd.bb │ └── recipes-kernel │ │ ├── linux-firmware │ │ └── linux-firmware_%.bbappend │ │ └── linux │ │ ├── linux-xlnx │ │ └── v2020.2 │ │ │ ├── 0001-drm-xilinx-Add-encoder-for-Digilent-boards.patch │ │ │ ├── 0002-clk-Add-driver-for-axi_dynclk-IP-Core.patch │ │ │ ├── 0003-drm-xilinx-Fix-DPMS-transition-to-on.patch │ │ │ └── 0004-minized-wifi-bluetooth.cfg │ │ └── linux-xlnx_2020.2.bbappend ├── meta-xilinx-pynq │ ├── COPYING.MIT │ ├── README.md │ ├── classes │ │ └── xilinx-pynq.bbclass │ ├── conf │ │ └── layer.conf │ ├── recipes-devtool │ │ └── python │ │ │ ├── python-pynq.inc │ │ │ ├── python3-pynq │ │ │ ├── 0001-Fix-3.6-ism-in-Xlnk-class.patch │ │ │ ├── 0002-Avoid-deleteing-notebooks.patch │ │ │ ├── 0003-Use-sysroot-for-Displayport-library.patch │ │ │ └── pl_server_init │ │ │ └── python3-pynq_2.5.1.bb │ └── recipes-support │ │ ├── libcma │ │ └── libcma_1.0.bb │ │ ├── pynq-overlay │ │ ├── pynq-overlay │ │ │ ├── LICENSE │ │ │ ├── generic-uio.conf │ │ │ ├── pynq_zynq.dtsi │ │ │ ├── pynq_zynq_symbols.dtsi │ │ │ ├── pynq_zynqmp.dtsi │ │ │ └── pynq_zynqmp_symbols.dtsi │ │ └── pynq-overlay_1.0.bb │ │ ├── pynq-ultra96-bnn │ │ ├── pynq-ultra96-bnn │ │ │ ├── 0001-BNN-Notebooks-changed-default-picture-location.patch │ │ │ └── 0001-Update-default-notebooks-path-from-home-xilinx-to-us.patch │ │ └── pynq-ultra96-bnn_1.0.bb │ │ └── pynq-ultra96-helloworld │ │ ├── pynq-ultra96-helloworld │ │ ├── 0001-fix-repo_board_folder-variable.patch │ │ └── 0001-resizer_PL-notebooks-for-ZCU104-and-Ultra96-changed.patch │ │ └── pynq-ultra96-helloworld_1.0.bb └── meta-xilinx-standalone │ ├── README.md │ ├── classes │ ├── esw.bbclass │ └── esw_examples.bbclass │ ├── conf │ ├── distro │ │ ├── xilinx-freertos.conf │ │ ├── xilinx-standalone-nolto.conf │ │ ├── xilinx-standalone.conf │ │ └── xilinx-standalone.inc │ └── layer.conf │ ├── recipes-applications │ ├── freertos-hello-world │ │ └── freertos-hello-world_git.bb │ ├── freertos-lwip-echo-server │ │ └── freertos-lwip-echo-server_git.bb │ ├── freertos-lwip-tcp-perf-client │ │ └── freertos-lwip-tcp-perf-client_git.bb │ ├── freertos-lwip-tcp-perf-server │ │ └── freertos-lwip-tcp-perf-server_git.bb │ ├── freertos-lwip-udp-perf-client │ │ └── freertos-lwip-udp-perf-client_git.bb │ ├── freertos-lwip-udp-perf-server │ │ └── freertos-lwip-udp-perf-server_git.bb │ ├── hello-world │ │ └── hello-world_git.bb │ ├── lwip-echo-server │ │ └── lwip-echo-server_git.bb │ ├── lwip-tcp-perf-client │ │ └── lwip-tcp-perf-client_git.bb │ ├── lwip-tcp-perf-server │ │ └── lwip-tcp-perf-server_git.bb │ ├── lwip-udp-perf-client │ │ └── lwip-udp-perf-client_git.bb │ ├── lwip-udp-perf-server │ │ └── lwip-udp-perf-server_git.bb │ ├── pmufw │ │ └── pmufw_git.bb │ └── zynqmp-fsbl │ │ └── zynqmp-fsbl_git.bb │ ├── recipes-bsp │ └── device-tree │ │ └── device-tree.bbappend │ ├── recipes-core │ ├── meta │ │ ├── gnu-toolchain-canadian.bb │ │ └── meta-toolchain.bbappend │ ├── newlib │ │ ├── libgloss_4.%.bbappend │ │ └── newlib_4.%.bbappend │ └── packagegroups │ │ ├── packagegroup-cross-canadian.bbappend │ │ └── packagegroup-newlib-standalone-sdk-target.bb │ ├── recipes-devtools │ ├── binutils │ │ ├── binutils-cross-canadian_%.bbappend │ │ ├── binutils-cross_%.bbappend │ │ └── binutils-xilinx-standalone.inc │ ├── gcc │ │ ├── gcc-10 │ │ │ └── additional-microblaze-multilibs.patch │ │ ├── gcc-configure-xilinx-standalone.inc │ │ ├── gcc-cross-canadian_%.bbappend │ │ ├── gcc-cross_%.bbappend │ │ ├── gcc-runtime_%.bbappend │ │ ├── gcc-source_10.%.bbappend │ │ ├── gcc-xilinx-standalone.inc │ │ ├── libgcc_%.bbappend │ │ ├── mb-convert-head.sh │ │ └── mb-convert.sh │ └── qemu │ │ └── qemuwrapper-cross_1.0.bbappend │ ├── recipes-drivers │ ├── axicdma_git.bb │ ├── axidma_git.bb │ ├── axiethernet_git.bb │ ├── axivdma_git.bb │ ├── can_git.bb │ ├── canfd_git.bb │ ├── canps_git.bb │ ├── clockps_git.bb │ ├── csudma_git.bb │ ├── devcfg_git.bb │ ├── dmaps_git.bb │ ├── emaclite_git.bb │ ├── emacps_git.bb │ ├── gpio_git.bb │ ├── gpiops_git.bb │ ├── ipipsu_git.bb │ ├── llfifo_git.bb │ ├── mbox_git.bb │ ├── mcdma_git.bb │ ├── mutex_git.bb │ ├── nandpsu_git.bb │ ├── ospipsv_git.bb │ ├── qspips_git.bb │ ├── qspipsu_git.bb │ ├── resetps_git.bb │ ├── rtcpsu_git.bb │ ├── scugic_git.bb │ ├── sdps_git.bb │ ├── spips_git.bb │ ├── sysmon_git.bb │ ├── tmrctr_git.bb │ ├── ttcps_git.bb │ ├── uartlite_git.bb │ ├── uartps_git.bb │ ├── usbpsu_git.bb │ ├── wdtps_git.bb │ ├── xadcps_git.bb │ ├── xxvethernet_git.bb │ └── zdma_git.bb │ ├── recipes-kernel │ └── linux │ │ └── linux-dummy.bbappend │ ├── recipes-libraries │ ├── freertos10-xilinx_git.bb │ ├── libxil_git.bb │ ├── lwip_git.bb │ ├── xilffs_git.bb │ ├── xilfpga_git.bb │ ├── xilloader_git.bb │ ├── xilmailbox_git.bb │ ├── xilmem_git.bb │ ├── xilpdi_git.bb │ ├── xilplmi_git.bb │ ├── xilpm_git.bb │ ├── xilpuf_git.bb │ ├── xilsecure_git.bb │ ├── xilsem_git.bb │ ├── xilskey_git.bb │ ├── xilstandalone_git.bb │ └── xiltimer_git.bb │ ├── recipes-standalone │ ├── plm │ │ ├── plm-standalone_git.bb │ │ └── plm_2020.2.bb │ ├── pmu-firmware │ │ ├── pmu-firmware │ │ │ └── fix-zynqmp-assert.patch │ │ └── pmu-firmware_2020.2.bb │ └── psm-firmware │ │ └── psm-firmware_2020.2.bb │ └── scripts │ └── microblaze_dtb.py ├── meta-yadro ├── .gitignore ├── COPYING.MIT ├── COPYING.apache-2.0 ├── LICENSE ├── MAINTAINERS ├── OWNERS ├── README.md ├── conf │ └── layer.conf ├── meta-nicole │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── nicole.conf │ ├── recipes-bsp │ │ └── u-boot │ │ │ ├── files │ │ │ ├── 0001-Add-system-reset-status-support.patch │ │ │ ├── 0002-config-ast-common-set-fieldmode-to-true.patch │ │ │ ├── 0003-aspeed-add-gpio-support.patch │ │ │ └── 0004-aspeed-add-bmc-position-support.patch │ │ │ ├── u-boot-aspeed_%.bbappend │ │ │ └── u-boot-fw-utils-aspeed_%.bbappend │ ├── recipes-core │ │ ├── dropbear │ │ │ ├── dropbear │ │ │ │ └── dropbear.default │ │ │ └── dropbear_%.bbappend │ │ └── systemd │ │ │ ├── systemd-conf │ │ │ ├── 00-bmc-eth0.0.network │ │ │ ├── 00-bmc-eth0.1.network │ │ │ ├── 00-bmc-eth0.4004.0.network │ │ │ ├── 00-bmc-eth0.4004.1.network │ │ │ └── eth0.4004.netdev │ │ │ └── systemd-conf_%.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ ├── 0001-Add-NCSI-channel-selector.patch │ │ │ └── nicole.cfg │ │ │ └── linux-aspeed_%.bbappend │ ├── recipes-phosphor │ │ ├── chassis │ │ │ ├── avsbus-control.bb │ │ │ └── avsbus-control │ │ │ │ ├── avsbus-control.sh │ │ │ │ └── avsbus-control@.service │ │ ├── cli │ │ │ └── obmc-yadro-cli_%.bbappend │ │ ├── configuration │ │ │ ├── nicole-yaml-config.bb │ │ │ └── nicole-yaml-config │ │ │ │ ├── nicole-ipmi-fru-properties.yaml │ │ │ │ ├── nicole-ipmi-fru.yaml │ │ │ │ ├── nicole-ipmi-inventory-sensors.yaml │ │ │ │ └── nicole-ipmi-sensors.yaml │ │ ├── console │ │ │ ├── obmc-console │ │ │ │ └── obmc-console.conf │ │ │ └── obmc-console_%.bbappend │ │ ├── flash │ │ │ ├── openpower-software-manager_%.bbappend │ │ │ └── phosphor-software-manager_%.bbappend │ │ ├── host │ │ │ ├── op-proc-control │ │ │ │ └── 0001-Stop-and-send-SRESET-for-one-thread-only.patch │ │ │ ├── op-proc-control_%.bbappend │ │ │ └── p9-host-start.bbappend │ │ ├── images │ │ │ └── obmc-phosphor-image.bbappend │ │ ├── interfaces │ │ │ └── bmcweb_%.bbappend │ │ ├── ipmi │ │ │ ├── openpower-ipmi-oem_%.bbappend │ │ │ ├── phosphor-ipmi-config.bbappend │ │ │ ├── phosphor-ipmi-config │ │ │ │ ├── channel_config.json │ │ │ │ ├── dev_id.json │ │ │ │ ├── phosphor-ipmi-config-set-device-id.sh │ │ │ │ └── phosphor-ipmi-config.service │ │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ │ └── phosphor-ipmi-host_%.bbappend │ │ ├── leds │ │ │ ├── nicole-led-manager-config-native.bb │ │ │ └── nicole-led-manager-config │ │ │ │ └── led.yaml │ │ ├── logging │ │ │ └── openpower-esel-parser_git.bb │ │ ├── mboxd │ │ │ └── mboxd_%.bbappend │ │ ├── network │ │ │ ├── phosphor-network │ │ │ │ └── config.json │ │ │ └── phosphor-network_%.bbappend │ │ ├── occ │ │ │ ├── files │ │ │ │ └── occ_sensor.yaml │ │ │ └── nicole-occ-control-config-native.bb │ │ ├── packagegroups │ │ │ └── packagegroup-obmc-apps.bbappend │ │ ├── sensors │ │ │ ├── phosphor-hwmon │ │ │ │ └── obmc │ │ │ │ │ └── hwmon │ │ │ │ │ ├── devices │ │ │ │ │ └── platform │ │ │ │ │ │ └── gpio-fsi │ │ │ │ │ │ └── fsi-master │ │ │ │ │ │ └── fsi0 │ │ │ │ │ │ └── slave@00--00 │ │ │ │ │ │ ├── 00--00--00--06 │ │ │ │ │ │ └── sbefifo1-dev0 │ │ │ │ │ │ │ └── occ-hwmon.1.conf │ │ │ │ │ │ └── 00--00--00--0a │ │ │ │ │ │ └── fsi-master │ │ │ │ │ │ └── fsi1 │ │ │ │ │ │ └── slave@01--00 │ │ │ │ │ │ └── 01--01--00--06 │ │ │ │ │ │ └── sbefifo2-dev0 │ │ │ │ │ │ └── occ-hwmon.2.conf │ │ │ │ │ └── iio-hwmon-battery.conf │ │ │ └── phosphor-hwmon_%.bbappend │ │ ├── settings │ │ │ ├── phosphor-settings-manager │ │ │ │ ├── bootmailbox.override.yml │ │ │ │ └── time-sync-method.override.yml │ │ │ └── phosphor-settings-manager_%.bbappend │ │ ├── skeleton │ │ │ ├── obmc-libobmc-intf │ │ │ │ └── gpio_defs.json │ │ │ └── obmc-libobmc-intf_%.bbappend │ │ ├── state │ │ │ ├── phosphor-state-manager │ │ │ │ └── resetreason.conf │ │ │ └── phosphor-state-manager_%.bbappend │ │ ├── users │ │ │ └── admin-account.bb │ │ └── vpd │ │ │ ├── nicole-openpower-fru-inventory-native.bb │ │ │ ├── nicole-openpower-fru-inventory │ │ │ └── inventory │ │ │ ├── nicole-openpower-fru-properties-native.bb │ │ │ ├── nicole-openpower-fru-properties │ │ │ └── properties.yaml │ │ │ ├── nicole-openpower-fru-vpd-layout-native.bb │ │ │ └── nicole-openpower-fru-vpd-layout │ │ │ └── layout.yaml │ └── recipes.txt ├── meta-vesnin │ ├── README.md │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ └── machine │ │ │ └── vesnin.conf │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-aspeed │ │ │ ├── 0002-vesnin-remap-aspeed-uart.patch │ │ │ └── vesnin.cfg │ │ │ └── linux-aspeed_%.bbappend │ └── recipes-phosphor │ │ ├── configuration │ │ ├── vesnin-yaml-config.bb │ │ └── vesnin-yaml-config │ │ │ └── vesnin-ipmi-fru.yaml │ │ ├── images │ │ └── obmc-phosphor-image.bbappend │ │ ├── initfs │ │ └── obmc-phosphor-initfs.bbappend │ │ ├── ipmi │ │ ├── phosphor-ipmi-fru_%.bbappend │ │ └── phosphor-ipmi-host_%.bbappend │ │ ├── leds │ │ ├── vesnin-led-manager-config-native.bb │ │ └── vesnin-led-manager-config │ │ │ └── led.yaml │ │ ├── mboxd │ │ └── mboxd_%.bbappend │ │ ├── network │ │ └── first-boot-set-mac_%.bbappend │ │ ├── occ │ │ ├── files │ │ │ └── occ_sensor.yaml │ │ ├── openpower-occ-control_%.bbappend │ │ └── vesnin-openpower-occ-control-config-native.bb │ │ ├── packagegroups │ │ └── packagegroup-obmc-apps.bbappend │ │ └── skeleton │ │ ├── obmc-libobmc-intf │ │ └── gpio_defs.json │ │ ├── obmc-libobmc-intf_%.bbappend │ │ ├── obmc-op-control-host │ │ └── 0001-Replace-ColdFire-FSI-with-plain-FSI-over-GPIO.patch │ │ └── obmc-op-control-host_%.bbappend ├── recipes-core │ ├── base-files │ │ └── base-files%.bbappend │ └── os-release │ │ └── os-release.bbappend └── recipes-phosphor │ ├── cli │ ├── obmc-yadro-backup_git.bb │ ├── obmc-yadro-cli_git.bb │ ├── obmc-yadro-fwupdate_git.bb │ ├── obmc-yadro-lsinventory_git.bb │ ├── obmc-yadro-lssensors_git.bb │ └── obmc-yadro-netconfig_git.bb │ ├── dbus │ ├── phosphor-dbus-interfaces │ │ └── 0001-Add-boot-initiator-mailbox-interface.patch │ └── phosphor-dbus-interfaces_%.bbappend │ └── ipmi │ ├── phosphor-ipmi-config.bbappend │ ├── phosphor-ipmi-config │ └── cipher_list.json │ ├── phosphor-ipmi-host │ ├── 0001-Add-support-for-persistent-only-settings.patch │ ├── 0002-Add-support-for-boot-initiator-mailbox.patch │ └── 0003-Fix-version-parsing-update-AUX-revision-info.patch │ └── phosphor-ipmi-host_%.bbappend ├── oe-init-build-env ├── openbmc-env ├── poky ├── .gitignore ├── .templateconf ├── LICENSE ├── LICENSE.GPL-2.0-only ├── LICENSE.MIT ├── MEMORIAM ├── Makefile ├── README.OE-Core ├── README.hardware ├── README.poky ├── README.qemu ├── bitbake │ ├── .gitattributes │ ├── AUTHORS │ ├── ChangeLog │ ├── LICENSE │ ├── LICENSE.GPL-2.0-only │ ├── LICENSE.MIT │ ├── README │ ├── bin │ │ ├── bitbake │ │ ├── bitbake-diffsigs │ │ ├── bitbake-dumpsig │ │ ├── bitbake-hashclient │ │ ├── bitbake-hashserv │ │ ├── bitbake-layers │ │ ├── bitbake-prserv │ │ ├── bitbake-selftest │ │ ├── bitbake-server │ │ ├── bitbake-worker │ │ ├── git-make-shallow │ │ ├── toaster │ │ └── toaster-eventreplay │ ├── contrib │ │ ├── README │ │ ├── autobuilderlog.json │ │ ├── bbdev.sh │ │ ├── bbparse-torture.py │ │ ├── dump_cache.py │ │ ├── hashserv │ │ │ └── Dockerfile │ │ └── vim │ │ │ ├── LICENSE.txt │ │ │ ├── ftdetect │ │ │ └── bitbake.vim │ │ │ ├── ftplugin │ │ │ └── bitbake.vim │ │ │ ├── indent │ │ │ └── bitbake.vim │ │ │ ├── plugin │ │ │ ├── newbb.vim │ │ │ └── newbbappend.vim │ │ │ └── syntax │ │ │ └── bitbake.vim │ ├── doc │ │ ├── .gitignore │ │ ├── COPYING.GPL │ │ ├── COPYING.MIT │ │ ├── Makefile │ │ ├── README │ │ ├── _templates │ │ │ ├── breadcrumbs.html │ │ │ └── layout.html │ │ ├── bitbake-user-manual │ │ │ ├── bitbake-user-manual-execution.rst │ │ │ ├── bitbake-user-manual-fetching.rst │ │ │ ├── bitbake-user-manual-hello.rst │ │ │ ├── bitbake-user-manual-intro.rst │ │ │ ├── bitbake-user-manual-metadata.rst │ │ │ ├── bitbake-user-manual-ref-variables.rst │ │ │ └── figures │ │ │ │ ├── bb_multiconfig_files.png │ │ │ │ └── bitbake-title.png │ │ ├── bitbake.1 │ │ ├── conf.py │ │ ├── genindex.rst │ │ ├── index.rst │ │ ├── releases.rst │ │ ├── sphinx-static │ │ │ ├── switchers.js │ │ │ └── theme_overrides.css │ │ └── template │ │ │ ├── Vera.ttf │ │ │ ├── VeraMoBd.ttf │ │ │ ├── VeraMono.ttf │ │ │ └── draft.png │ ├── lib │ │ ├── bb │ │ │ ├── COW.py │ │ │ ├── __init__.py │ │ │ ├── build.py │ │ │ ├── cache.py │ │ │ ├── cache_extra.py │ │ │ ├── checksum.py │ │ │ ├── codeparser.py │ │ │ ├── command.py │ │ │ ├── cooker.py │ │ │ ├── cookerdata.py │ │ │ ├── daemonize.py │ │ │ ├── data.py │ │ │ ├── data_smart.py │ │ │ ├── event.py │ │ │ ├── exceptions.py │ │ │ ├── fetch2 │ │ │ │ ├── __init__.py │ │ │ │ ├── az.py │ │ │ │ ├── bzr.py │ │ │ │ ├── clearcase.py │ │ │ │ ├── cvs.py │ │ │ │ ├── git.py │ │ │ │ ├── gitannex.py │ │ │ │ ├── gitsm.py │ │ │ │ ├── hg.py │ │ │ │ ├── local.py │ │ │ │ ├── npm.py │ │ │ │ ├── npmsw.py │ │ │ │ ├── osc.py │ │ │ │ ├── perforce.py │ │ │ │ ├── repo.py │ │ │ │ ├── s3.py │ │ │ │ ├── sftp.py │ │ │ │ ├── ssh.py │ │ │ │ ├── svn.py │ │ │ │ └── wget.py │ │ │ ├── main.py │ │ │ ├── methodpool.py │ │ │ ├── monitordisk.py │ │ │ ├── msg.py │ │ │ ├── namedtuple_with_abc.py │ │ │ ├── parse │ │ │ │ ├── __init__.py │ │ │ │ ├── ast.py │ │ │ │ └── parse_py │ │ │ │ │ ├── BBHandler.py │ │ │ │ │ ├── ConfHandler.py │ │ │ │ │ └── __init__.py │ │ │ ├── persist_data.py │ │ │ ├── process.py │ │ │ ├── progress.py │ │ │ ├── providers.py │ │ │ ├── pysh │ │ │ │ ├── __init__.py │ │ │ │ ├── pyshlex.py │ │ │ │ ├── pyshyacc.py │ │ │ │ └── sherrors.py │ │ │ ├── remotedata.py │ │ │ ├── runqueue.py │ │ │ ├── server │ │ │ │ ├── __init__.py │ │ │ │ ├── process.py │ │ │ │ ├── xmlrpcclient.py │ │ │ │ └── xmlrpcserver.py │ │ │ ├── siggen.py │ │ │ ├── taskdata.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── codeparser.py │ │ │ │ ├── color.py │ │ │ │ ├── cooker.py │ │ │ │ ├── cow.py │ │ │ │ ├── data.py │ │ │ │ ├── event.py │ │ │ │ ├── fetch-testdata │ │ │ │ │ ├── apple │ │ │ │ │ │ └── cups │ │ │ │ │ │ │ └── releases │ │ │ │ │ ├── debian │ │ │ │ │ │ └── pool │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── d │ │ │ │ │ │ │ └── db5.3 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── downloads │ │ │ │ │ │ └── enchant │ │ │ │ │ │ │ └── 1.6.0 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── files │ │ │ │ │ │ ├── v2.8 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.0 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.1 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.10 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.11 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.12 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.13 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.14 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.15 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.16 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.2 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.3 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.4 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.5 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.6 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.7 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── v3.8 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── v3.9 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── pub │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── util-linux │ │ │ │ │ │ │ ├── v2.23 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.24 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.25 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.26 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.27 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.28 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.29 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.30 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.31 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.32 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.33 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── v2.34 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── v2.35 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── releases │ │ │ │ │ │ ├── eglibc │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── gnu-config │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── individual │ │ │ │ │ │ │ └── xserver │ │ │ │ │ │ │ └── index.html │ │ │ │ │ └── software │ │ │ │ │ │ └── pulseaudio │ │ │ │ │ │ └── releases │ │ │ │ │ │ └── index.html │ │ │ │ ├── fetch.py │ │ │ │ ├── parse.py │ │ │ │ ├── persist_data.py │ │ │ │ ├── runqueue-tests │ │ │ │ │ ├── classes │ │ │ │ │ │ ├── base.bbclass │ │ │ │ │ │ ├── image.bbclass │ │ │ │ │ │ └── native.bbclass │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── bitbake.conf │ │ │ │ │ │ └── multiconfig │ │ │ │ │ │ │ ├── mc-1.conf │ │ │ │ │ │ │ └── mc_2.conf │ │ │ │ │ └── recipes │ │ │ │ │ │ ├── a1.bb │ │ │ │ │ │ ├── b1.bb │ │ │ │ │ │ ├── c1.bb │ │ │ │ │ │ ├── d1.bb │ │ │ │ │ │ ├── e1.bb │ │ │ │ │ │ ├── f1.bb │ │ │ │ │ │ └── fails-mc │ │ │ │ │ │ ├── fails-mc1.bb │ │ │ │ │ │ └── fails-mc2.bb │ │ │ │ ├── runqueue.py │ │ │ │ ├── siggen.py │ │ │ │ ├── support │ │ │ │ │ └── httpserver.py │ │ │ │ └── utils.py │ │ │ ├── tinfoil.py │ │ │ ├── ui │ │ │ │ ├── __init__.py │ │ │ │ ├── buildinfohelper.py │ │ │ │ ├── icons │ │ │ │ │ ├── images │ │ │ │ │ │ ├── images_display.png │ │ │ │ │ │ └── images_hover.png │ │ │ │ │ ├── indicators │ │ │ │ │ │ ├── add-hover.png │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ ├── alert.png │ │ │ │ │ │ ├── confirmation.png │ │ │ │ │ │ ├── denied.png │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ ├── info.png │ │ │ │ │ │ ├── issues.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ ├── remove-hover.png │ │ │ │ │ │ ├── remove.png │ │ │ │ │ │ └── tick.png │ │ │ │ │ ├── info │ │ │ │ │ │ ├── info_display.png │ │ │ │ │ │ └── info_hover.png │ │ │ │ │ ├── layers │ │ │ │ │ │ ├── layers_display.png │ │ │ │ │ │ └── layers_hover.png │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── packages_display.png │ │ │ │ │ │ └── packages_hover.png │ │ │ │ │ ├── recipe │ │ │ │ │ │ ├── recipe_display.png │ │ │ │ │ │ └── recipe_hover.png │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── settings_display.png │ │ │ │ │ │ └── settings_hover.png │ │ │ │ │ └── templates │ │ │ │ │ │ ├── templates_display.png │ │ │ │ │ │ └── templates_hover.png │ │ │ │ ├── knotty.py │ │ │ │ ├── ncurses.py │ │ │ │ ├── taskexp.py │ │ │ │ ├── teamcity.py │ │ │ │ ├── toasterui.py │ │ │ │ ├── uievent.py │ │ │ │ └── uihelper.py │ │ │ └── utils.py │ │ ├── bblayers │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── common.py │ │ │ ├── layerindex.py │ │ │ └── query.py │ │ ├── bs4 │ │ │ ├── AUTHORS.txt │ │ │ ├── COPYING.txt │ │ │ ├── NEWS.txt │ │ │ ├── __init__.py │ │ │ ├── builder │ │ │ │ ├── __init__.py │ │ │ │ ├── _html5lib.py │ │ │ │ ├── _htmlparser.py │ │ │ │ └── _lxml.py │ │ │ ├── dammit.py │ │ │ ├── diagnose.py │ │ │ ├── element.py │ │ │ ├── testing.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_builder_registry.py │ │ │ │ ├── test_docs.py │ │ │ │ ├── test_html5lib.py │ │ │ │ ├── test_htmlparser.py │ │ │ │ ├── test_lxml.py │ │ │ │ ├── test_soup.py │ │ │ │ └── test_tree.py │ │ ├── codegen.py │ │ ├── hashserv │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── server.py │ │ │ └── tests.py │ │ ├── layerindexlib │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── cooker.py │ │ │ ├── plugin.py │ │ │ ├── restapi.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── cooker.py │ │ │ │ ├── layerindexobj.py │ │ │ │ ├── restapi.py │ │ │ │ └── testdata │ │ │ │ ├── README │ │ │ │ ├── build │ │ │ │ └── conf │ │ │ │ │ └── bblayers.conf │ │ │ │ ├── layer1 │ │ │ │ └── conf │ │ │ │ │ └── layer.conf │ │ │ │ ├── layer2 │ │ │ │ └── conf │ │ │ │ │ └── layer.conf │ │ │ │ ├── layer3 │ │ │ │ └── conf │ │ │ │ │ └── layer.conf │ │ │ │ └── layer4 │ │ │ │ └── conf │ │ │ │ └── layer.conf │ │ ├── ply │ │ │ ├── __init__.py │ │ │ ├── lex.py │ │ │ └── yacc.py │ │ ├── progressbar │ │ │ ├── LICENSE.txt │ │ │ ├── __init__.py │ │ │ ├── compat.py │ │ │ ├── progressbar.py │ │ │ └── widgets.py │ │ ├── prserv │ │ │ ├── __init__.py │ │ │ ├── db.py │ │ │ └── serv.py │ │ ├── pyinotify.py │ │ ├── simplediff │ │ │ ├── LICENSE │ │ │ └── __init__.py │ │ └── toaster │ │ │ ├── __init__.py │ │ │ ├── bldcollector │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── bldcontrol │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── bbcontroller.py │ │ │ ├── localhostbecontroller.py │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── checksettings.py │ │ │ │ │ └── runbuilds.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20160120_1250.py │ │ │ │ ├── 0003_add_cancelling_state.py │ │ │ │ ├── 0004_auto_20160523_1446.py │ │ │ │ ├── 0005_reorder_buildrequest_states.py │ │ │ │ ├── 0006_brlayer_local_source_dir.py │ │ │ │ ├── 0007_brlayers_optional_gitinfo.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── orm │ │ │ ├── __init__.py │ │ │ ├── fixtures │ │ │ │ ├── README │ │ │ │ ├── custom_toaster_append.sh_sample │ │ │ │ ├── oe-core.xml │ │ │ │ ├── poky.xml │ │ │ │ └── settings.xml │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── lsupdates.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_customimagerecipe.py │ │ │ │ ├── 0003_customimagepackage.py │ │ │ │ ├── 0004_provides.py │ │ │ │ ├── 0005_task_field_separation.py │ │ │ │ ├── 0006_add_cancelled_state.py │ │ │ │ ├── 0007_auto_20160523_1446.py │ │ │ │ ├── 0008_refactor_artifact_models.py │ │ │ │ ├── 0009_target_package_manifest_path.py │ │ │ │ ├── 0010_delete_layer_source_references.py │ │ │ │ ├── 0011_delete_layersource.py │ │ │ │ ├── 0012_use_release_instead_of_up_branch.py │ │ │ │ ├── 0013_recipe_parse_progress_fields.py │ │ │ │ ├── 0014_allow_empty_buildname.py │ │ │ │ ├── 0015_layer_local_source_dir.py │ │ │ │ ├── 0016_clone_progress.py │ │ │ │ ├── 0017_distro_clone.py │ │ │ │ ├── 0018_project_specific.py │ │ │ │ ├── 0019_django_2_2.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── browser │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── selenium_helpers.py │ │ │ │ ├── selenium_helpers_base.py │ │ │ │ ├── test_all_builds_page.py │ │ │ │ ├── test_all_projects_page.py │ │ │ │ ├── test_builddashboard_page.py │ │ │ │ ├── test_builddashboard_page_artifacts.py │ │ │ │ ├── test_builddashboard_page_recipes.py │ │ │ │ ├── test_builddashboard_page_tasks.py │ │ │ │ ├── test_js_unit_tests.py │ │ │ │ ├── test_landing_page.py │ │ │ │ ├── test_layerdetails_page.py │ │ │ │ ├── test_most_recent_builds_states.py │ │ │ │ ├── test_new_custom_image_page.py │ │ │ │ ├── test_new_project_page.py │ │ │ │ ├── test_project_builds_page.py │ │ │ │ ├── test_project_config_page.py │ │ │ │ ├── test_project_page.py │ │ │ │ ├── test_sample.py │ │ │ │ ├── test_task_page.py │ │ │ │ └── test_toastertable_ui.py │ │ │ ├── builds │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── buildtest.py │ │ │ │ └── test_core_image_min.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── test_loaddata.py │ │ │ │ ├── test_lsupdates.py │ │ │ │ └── test_runbuilds.py │ │ │ ├── db │ │ │ │ ├── __init__.py │ │ │ │ └── test_db.py │ │ │ ├── eventreplay │ │ │ │ ├── README │ │ │ │ └── __init__.py │ │ │ ├── functional │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── functional_helpers.py │ │ │ │ └── test_functional_basic.py │ │ │ ├── toaster-tests-requirements.txt │ │ │ └── views │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ └── test_views.py │ │ │ ├── toastergui │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── buildtables.py │ │ │ ├── fixtures │ │ │ │ └── toastergui-unittest-data.xml │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap3-transition.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ │ ├── jquery-ui.theme.min.css │ │ │ │ │ ├── jquery.treetable.css │ │ │ │ │ ├── jquery.treetable.theme.default.css │ │ │ │ │ ├── jquery.treetable.theme.toaster.css │ │ │ │ │ ├── qunit-1.18.0.css │ │ │ │ │ └── screen.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── html │ │ │ │ │ └── layer_deps_modal.html │ │ │ │ ├── img │ │ │ │ │ ├── logo.png │ │ │ │ │ └── toaster_bw.png │ │ │ │ ├── jquery-treetable-license │ │ │ │ │ ├── GPL-LICENSE.txt │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ └── README.md │ │ │ │ ├── jquery.treetable.theme.toaster.css │ │ │ │ └── js │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── customrecipe.js │ │ │ │ │ ├── filtersnippet.js │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ ├── importlayer.js │ │ │ │ │ ├── jquery-2.0.3.min.js │ │ │ │ │ ├── jquery-2.0.3.min.map │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ ├── jquery.cookie.js │ │ │ │ │ ├── jquery.treetable.js │ │ │ │ │ ├── jsrender.min.js │ │ │ │ │ ├── layerBtn.js │ │ │ │ │ ├── layerDepsModal.js │ │ │ │ │ ├── layerdetails.js │ │ │ │ │ ├── libtoaster.js │ │ │ │ │ ├── mrbsection.js │ │ │ │ │ ├── newcustomimage_modal.js │ │ │ │ │ ├── projectpage.js │ │ │ │ │ ├── projecttopbar.js │ │ │ │ │ ├── qunit-1.18.0.js │ │ │ │ │ ├── recipedetails.js │ │ │ │ │ ├── table.js │ │ │ │ │ ├── tests │ │ │ │ │ └── test.js │ │ │ │ │ ├── typeahead.jquery.js │ │ │ │ │ ├── ui-bootstrap-tpls-0.11.0.js │ │ │ │ │ └── ui-bootstrap-tpls-0.11.0.min.js │ │ │ ├── tablefilter.py │ │ │ ├── tables.py │ │ │ ├── templates │ │ │ │ ├── base.html │ │ │ │ ├── base_specific.html │ │ │ │ ├── basebuilddetailpage.html │ │ │ │ ├── basebuildpage.html │ │ │ │ ├── baseprojectbuildspage.html │ │ │ │ ├── baseprojectpage.html │ │ │ │ ├── baseprojectspecificpage.html │ │ │ │ ├── basetable_bottom.html │ │ │ │ ├── basetable_top.html │ │ │ │ ├── basetable_top_layers.html │ │ │ │ ├── bfile.html │ │ │ │ ├── brtargets.html │ │ │ │ ├── builddashboard.html │ │ │ │ ├── buildinfo-toastertable.html │ │ │ │ ├── builds-toastertable.html │ │ │ │ ├── configuration.html │ │ │ │ ├── configvars.html │ │ │ │ ├── cpuusage.html │ │ │ │ ├── customise_btn.html │ │ │ │ ├── customrecipe.html │ │ │ │ ├── detail_pagination_bottom.html │ │ │ │ ├── detail_search_header.html │ │ │ │ ├── detail_sorted_header.html │ │ │ │ ├── dirinfo.html │ │ │ │ ├── diskio.html │ │ │ │ ├── distro_btn.html │ │ │ │ ├── editcustomimage_modal.html │ │ │ │ ├── filtersnippet.html │ │ │ │ ├── generic-toastertable-page.html │ │ │ │ ├── health.html │ │ │ │ ├── importlayer.html │ │ │ │ ├── js-unit-tests.html │ │ │ │ ├── landing.html │ │ │ │ ├── landing_not_managed.html │ │ │ │ ├── landing_specific.html │ │ │ │ ├── layer_btn.html │ │ │ │ ├── layerdetails.html │ │ │ │ ├── machine_btn.html │ │ │ │ ├── mrb_section.html │ │ │ │ ├── newcustomimage.html │ │ │ │ ├── newcustomimage_modal.html │ │ │ │ ├── newproject.html │ │ │ │ ├── newproject_specific.html │ │ │ │ ├── package_built_dependencies.html │ │ │ │ ├── package_built_detail.html │ │ │ │ ├── package_detail_base.html │ │ │ │ ├── package_included_dependencies.html │ │ │ │ ├── package_included_detail.html │ │ │ │ ├── package_included_reverse_dependencies.html │ │ │ │ ├── package_included_tabs.html │ │ │ │ ├── pkg_add_rm_btn.html │ │ │ │ ├── project.html │ │ │ │ ├── project_specific.html │ │ │ │ ├── project_specific_topbar.html │ │ │ │ ├── projectbuilds-toastertable.html │ │ │ │ ├── projectbuilds.html │ │ │ │ ├── projectconf.html │ │ │ │ ├── projects-toastertable.html │ │ │ │ ├── projecttopbar.html │ │ │ │ ├── recipe.html │ │ │ │ ├── recipe_add_btn.html │ │ │ │ ├── recipe_btn.html │ │ │ │ ├── recipe_packages.html │ │ │ │ ├── recipedetails.html │ │ │ │ ├── snippets │ │ │ │ │ ├── gitrev_popover.html │ │ │ │ │ ├── pkg_dependencies_popover.html │ │ │ │ │ └── pkg_revdependencies_popover.html │ │ │ │ ├── tablesort.html │ │ │ │ ├── target.html │ │ │ │ ├── task.html │ │ │ │ ├── toastertable-filter.html │ │ │ │ ├── toastertable-simple.html │ │ │ │ ├── toastertable.html │ │ │ │ └── unavailable_artifact.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── field_values_filter.py │ │ │ │ ├── objects_to_dictionaries_filter.py │ │ │ │ ├── project_url_tag.py │ │ │ │ └── projecttags.py │ │ │ ├── typeaheads.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── widgets.py │ │ │ └── toastermain │ │ │ ├── __init__.py │ │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── builddelete.py │ │ │ │ ├── buildimport.py │ │ │ │ ├── buildslist.py │ │ │ │ ├── checksocket.py │ │ │ │ └── perf.py │ │ │ ├── settings.py │ │ │ ├── settings_production_example.py │ │ │ ├── settings_test.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ └── toaster-requirements.txt ├── contrib │ ├── artwork │ │ └── oe.svg │ └── git-hooks │ │ └── sendemail-validate.sample ├── documentation │ ├── .gitignore │ ├── Makefile │ ├── Pipfile │ ├── README │ ├── _templates │ │ ├── breadcrumbs.html │ │ ├── footer.html │ │ └── layout.html │ ├── bitbake.rst │ ├── boilerplate.rst │ ├── brief-yoctoprojectqs │ │ ├── figures │ │ │ ├── bypqs-title.png │ │ │ └── yocto-project-transp.png │ │ └── index.rst │ ├── bsp-guide │ │ ├── bsp.rst │ │ ├── figures │ │ │ ├── bsp-dev-flow.png │ │ │ └── bsp-title.png │ │ ├── history.rst │ │ └── index.rst │ ├── conf.py │ ├── dev-manual │ │ ├── common-tasks.rst │ │ ├── figures │ │ │ ├── bitbake-build-flow.png │ │ │ ├── buildhistory-web.png │ │ │ ├── buildhistory.png │ │ │ ├── cute-files-npm-example.png │ │ │ ├── dev-title.png │ │ │ ├── multiconfig_files.png │ │ │ └── recipe-workflow.png │ │ ├── history.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── qemu.rst │ │ └── start.rst │ ├── figures │ │ └── yp-how-it-works-new-diagram.png │ ├── genindex.rst │ ├── index.rst │ ├── kernel-dev │ │ ├── advanced.rst │ │ ├── common.rst │ │ ├── concepts-appx.rst │ │ ├── faq.rst │ │ ├── figures │ │ │ ├── kernel-architecture-overview.png │ │ │ ├── kernel-dev-flow.png │ │ │ ├── kernel-dev-title.png │ │ │ └── kernel-overview-2-generic.png │ │ ├── history.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ └── maint-appx.rst │ ├── overview-manual │ │ ├── concepts.rst │ │ ├── development-environment.rst │ │ ├── figures │ │ │ ├── YP-flow-diagram.png │ │ │ ├── analysis-for-package-splitting.png │ │ │ ├── configuration-compile-autoreconf.png │ │ │ ├── cross-development-toolchains.png │ │ │ ├── git-workflow.png │ │ │ ├── image-generation.png │ │ │ ├── images.png │ │ │ ├── index-downloads.png │ │ │ ├── key-dev-elements.png │ │ │ ├── layer-input.png │ │ │ ├── overview-manual-title.png │ │ │ ├── package-feeds.png │ │ │ ├── patching.png │ │ │ ├── poky-reference-distribution.png │ │ │ ├── sdk-generation.png │ │ │ ├── sdk.png │ │ │ ├── source-fetching.png │ │ │ ├── source-input.png │ │ │ ├── source-repos.png │ │ │ ├── user-configuration.png │ │ │ └── yp-download.png │ │ ├── history.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ └── yp-intro.rst │ ├── poky.yaml │ ├── profile-manual │ │ ├── arch.rst │ │ ├── examples.rst │ │ ├── figures │ │ │ ├── kernelshark-all.png │ │ │ ├── kernelshark-choose-events.png │ │ │ ├── kernelshark-i915-display.png │ │ │ ├── kernelshark-output-display.png │ │ │ ├── oprofileui-busybox.png │ │ │ ├── oprofileui-copy-to-user.png │ │ │ ├── oprofileui-downloading.png │ │ │ ├── oprofileui-processes.png │ │ │ ├── perf-probe-do_fork-profile.png │ │ │ ├── perf-report-cycles-u.png │ │ │ ├── perf-systemwide-libc.png │ │ │ ├── perf-systemwide.png │ │ │ ├── perf-wget-busybox-annotate-menu.png │ │ │ ├── perf-wget-busybox-annotate-udhcpc.png │ │ │ ├── perf-wget-busybox-debuginfo.png │ │ │ ├── perf-wget-busybox-dso-zoom-menu.png │ │ │ ├── perf-wget-busybox-dso-zoom.png │ │ │ ├── perf-wget-busybox-expanded-stripped.png │ │ │ ├── perf-wget-flat-stripped.png │ │ │ ├── perf-wget-g-copy-from-user-expanded-stripped.png │ │ │ ├── perf-wget-g-copy-to-user-expanded-debuginfo.png │ │ │ ├── perf-wget-g-copy-to-user-expanded-stripped-unresolved-hidden.png │ │ │ ├── perf-wget-g-copy-to-user-expanded-stripped.png │ │ │ ├── profile-title.png │ │ │ ├── pybootchartgui-linux-yocto.png │ │ │ ├── pychart-linux-yocto-rpm-nostrip.png │ │ │ ├── pychart-linux-yocto-rpm.png │ │ │ ├── sched-wakeup-profile.png │ │ │ ├── sysprof-callers.png │ │ │ ├── sysprof-copy-from-user.png │ │ │ └── sysprof-copy-to-user.png │ │ ├── history.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ └── usage.rst │ ├── ref-manual │ │ ├── TODO │ │ ├── classes.rst │ │ ├── devtool-reference.rst │ │ ├── examples │ │ │ ├── hello-autotools │ │ │ │ └── hello_2.10.bb │ │ │ ├── hello-single │ │ │ │ ├── files │ │ │ │ │ └── helloworld.c │ │ │ │ └── hello.bb │ │ │ ├── libxpm │ │ │ │ └── libxpm_3.5.6.bb │ │ │ └── mtd-makefile │ │ │ │ └── mtd-utils_1.0.0.bb │ │ ├── faq.rst │ │ ├── features.rst │ │ ├── figures │ │ │ ├── build-workspace-directory.png │ │ │ ├── define-generic.png │ │ │ └── poky-title.png │ │ ├── history.rst │ │ ├── images.rst │ │ ├── index.rst │ │ ├── kickstart.rst │ │ ├── migration-1.3.rst │ │ ├── migration-1.4.rst │ │ ├── migration-1.5.rst │ │ ├── migration-1.6.rst │ │ ├── migration-1.7.rst │ │ ├── migration-1.8.rst │ │ ├── migration-2.0.rst │ │ ├── migration-2.1.rst │ │ ├── migration-2.2.rst │ │ ├── migration-2.3.rst │ │ ├── migration-2.4.rst │ │ ├── migration-2.5.rst │ │ ├── migration-2.6.rst │ │ ├── migration-2.7.rst │ │ ├── migration-3.0.rst │ │ ├── migration-3.1.rst │ │ ├── migration-3.2.rst │ │ ├── migration-3.3.rst │ │ ├── migration-general.rst │ │ ├── migration.rst │ │ ├── qa-checks.rst │ │ ├── release-process.rst │ │ ├── resources.rst │ │ ├── structure.rst │ │ ├── system-requirements.rst │ │ ├── tasks.rst │ │ ├── terms.rst │ │ ├── variables.rst │ │ └── varlocality.rst │ ├── releases.rst │ ├── sdk-manual │ │ ├── appendix-customizing-standard.rst │ │ ├── appendix-customizing.rst │ │ ├── appendix-obtain.rst │ │ ├── extensible.rst │ │ ├── figures │ │ │ ├── sdk-autotools-flow.png │ │ │ ├── sdk-devtool-add-flow.png │ │ │ ├── sdk-devtool-modify-flow.png │ │ │ ├── sdk-devtool-upgrade-flow.png │ │ │ ├── sdk-environment.png │ │ │ ├── sdk-installed-extensible-sdk-directory.png │ │ │ ├── sdk-installed-standard-sdk-directory.png │ │ │ ├── sdk-makefile-flow.png │ │ │ └── sdk-title.png │ │ ├── history.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── using.rst │ │ └── working-projects.rst │ ├── sphinx-static │ │ ├── YoctoProject_Logo_RGB.jpg │ │ ├── switchers.js │ │ └── theme_overrides.css │ ├── sphinx │ │ └── yocto-vars.py │ ├── template │ │ ├── Vera.ttf │ │ ├── VeraMoBd.ttf │ │ ├── VeraMono.ttf │ │ ├── draft.png │ │ ├── ohand-color.svg │ │ ├── poky-ref-manual.png │ │ ├── poky.svg │ │ └── yocto-project-qs.png │ ├── test-manual │ │ ├── figures │ │ │ ├── ab-test-cluster.png │ │ │ └── test-manual-title.png │ │ ├── history.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── test-process.rst │ │ └── understand-autobuilder.rst │ ├── toaster-manual │ │ ├── figures │ │ │ ├── add-variable.png │ │ │ ├── bash-oecore.png │ │ │ ├── compatible-layers.png │ │ │ ├── hosted-service.png │ │ │ ├── import-layer.png │ │ │ ├── new-project.png │ │ │ ├── set-variable.png │ │ │ ├── simple-configuration.png │ │ │ ├── toaster-title.png │ │ │ └── variable-added.png │ │ ├── history.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── reference.rst │ │ ├── setup-and-use.rst │ │ └── start.rst │ ├── tools │ │ └── update-documentation-conf │ ├── transitioning-to-a-custom-environment.rst │ └── what-i-wish-id-known.rst ├── meta-poky │ ├── README.poky │ ├── classes │ │ └── poky-sanity.bbclass │ ├── conf │ │ ├── bblayers.conf.sample │ │ ├── conf-notes.txt │ │ ├── distro │ │ │ ├── include │ │ │ │ ├── gcsections.inc │ │ │ │ ├── poky-distro-alt-test-config.inc │ │ │ │ ├── poky-floating-revisions.inc │ │ │ │ └── poky-world-exclude.inc │ │ │ ├── poky-altcfg.conf │ │ │ ├── poky-bleeding.conf │ │ │ ├── poky-tiny.conf │ │ │ └── poky.conf │ │ ├── layer.conf │ │ ├── local.conf.sample │ │ ├── local.conf.sample.extended │ │ └── site.conf.sample │ └── recipes-core │ │ ├── busybox │ │ ├── busybox │ │ │ └── poky-tiny │ │ │ │ └── defconfig │ │ └── busybox_%.bbappend │ │ ├── psplash │ │ ├── files │ │ │ └── psplash-poky-img.h │ │ └── psplash_git.bbappend │ │ └── tiny-init │ │ ├── files │ │ ├── init │ │ └── rc.local.sample │ │ └── tiny-init.bb ├── meta-selftest │ ├── README │ ├── classes │ │ ├── test-mkimage-wrapper.bbclass │ │ └── test_events.bbclass │ ├── conf │ │ ├── layer.conf │ │ └── machine │ │ │ └── qemux86copy.conf │ ├── files │ │ ├── signing │ │ │ ├── key.passphrase │ │ │ ├── key.pub │ │ │ └── key.secret │ │ ├── static-group │ │ └── static-passwd │ ├── lib │ │ ├── devtool │ │ │ ├── __init__.py │ │ │ ├── bbpath.py │ │ │ └── test.py │ │ ├── oeqa │ │ │ ├── runtime │ │ │ │ └── cases │ │ │ │ │ ├── dnf_runtime.py │ │ │ │ │ ├── selftest.json │ │ │ │ │ ├── selftest.py │ │ │ │ │ └── virgl.py │ │ │ └── selftest │ │ │ │ └── cases │ │ │ │ └── external-layer.py │ │ ├── pseudo_pyc_test1.py │ │ ├── pseudo_pyc_test2.py │ │ └── recipetool │ │ │ └── bbpath.py │ ├── recipes-devtools │ │ └── python │ │ │ ├── python-async-test.inc │ │ │ └── python3-async-test_0.6.2.bb │ ├── recipes-test │ │ ├── aspell │ │ │ ├── aspell_0.0.0.1.bb │ │ │ └── aspell_0.60.8.bbappend │ │ ├── container-image │ │ │ ├── container-image-testpkg.bb │ │ │ └── container-test-image.bb │ │ ├── delay │ │ │ └── delay.bb │ │ ├── devtool │ │ │ ├── devtool-patch-overrides.bb │ │ │ ├── devtool-patch-overrides │ │ │ │ ├── qemuarm │ │ │ │ │ └── arm.patch │ │ │ │ ├── qemux86 │ │ │ │ │ └── x86.patch │ │ │ │ └── source │ │ │ ├── devtool-test-ignored.bb │ │ │ ├── devtool-test-ignored │ │ │ │ ├── devtool-test-ignored.patch │ │ │ │ ├── devtool-test-ignored.patch.expected │ │ │ │ └── devtool-test-ignored.tar.gz │ │ │ ├── devtool-test-local │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ ├── devtool-test-local_6.03.bb │ │ │ ├── devtool-test-localonly.bb │ │ │ ├── devtool-test-localonly │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ │ ├── devtool-test-long-filename.bb │ │ │ ├── devtool-test-long-filename │ │ │ │ ├── 0001-I-ll-patch-you-only-if-devtool-lets-me-to-do-it-corr.patch │ │ │ │ ├── 0001-I-ll-patch-you-only-if-devtool-lets-me-to-do-it-corr.patch.expected │ │ │ │ └── devtool-test-long-filename.tar.gz │ │ │ ├── devtool-test-patch-gz.bb │ │ │ ├── devtool-test-patch-gz │ │ │ │ └── readme.patch.gz │ │ │ ├── devtool-test-subdir.bb │ │ │ ├── devtool-test-subdir │ │ │ │ ├── devtool-test-subdir.tar.gz │ │ │ │ └── testfile │ │ │ ├── devtool-upgrade-test1-1.5.3 │ │ │ │ ├── 0001-Add-a-note-line-to-the-quick-reference.patch │ │ │ │ └── backported.patch │ │ │ ├── devtool-upgrade-test1_1.5.3.bb │ │ │ ├── devtool-upgrade-test1_1.5.3.bb.upgraded │ │ │ ├── devtool-upgrade-test2_git.bb │ │ │ └── devtool-upgrade-test2_git.bb.upgraded │ │ ├── emptytest │ │ │ └── emptytest.bb │ │ ├── error │ │ │ └── error.bb │ │ ├── fortran │ │ │ ├── files │ │ │ │ └── hello.f95 │ │ │ └── fortran-helloworld.bb │ │ ├── git-submodule-test │ │ │ └── git-submodule-test.bb │ │ ├── images │ │ │ ├── error-image.bb │ │ │ ├── oe-selftest-image.bb │ │ │ ├── test-empty-image.bb │ │ │ ├── wic-image-minimal.bb │ │ │ └── wic-image-minimal.wks │ │ ├── license │ │ │ ├── incompatible-license-alias.bb │ │ │ ├── incompatible-license.bb │ │ │ ├── incompatible-licenses.bb │ │ │ └── incompatible-nonspdx-license.bb │ │ ├── m4 │ │ │ └── m4_%.bbappend │ │ ├── man-db │ │ │ ├── files │ │ │ │ └── 0001-Test-patch-here.patch │ │ │ └── man-db_%.bbappend │ │ ├── multiconfig │ │ │ ├── multiconfig-image-packager_0.1.bb │ │ │ └── multiconfig-test-parse.bb │ │ ├── nopackages │ │ │ └── selftest-nopackages.bb │ │ ├── poison │ │ │ └── poison.bb │ │ ├── postinst │ │ │ └── postinst_1.0.bb │ │ ├── pseudo-pyc-test │ │ │ └── pseudo-pyc-test.bb │ │ ├── recipetool │ │ │ ├── files │ │ │ │ ├── add-file.patch │ │ │ │ ├── file1 │ │ │ │ ├── installscript.sh │ │ │ │ ├── selftest-replaceme-inst-func │ │ │ │ ├── selftest-replaceme-inst-globfile │ │ │ │ ├── selftest-replaceme-inst-todir-globfile │ │ │ │ ├── selftest-replaceme-orig │ │ │ │ ├── selftest-replaceme-todir │ │ │ │ └── subdir │ │ │ │ │ └── fileinsubdir │ │ │ └── selftest-recipetool-appendfile.bb │ │ ├── recipeutils │ │ │ ├── recipeutils-test.inc │ │ │ ├── recipeutils-test │ │ │ │ ├── anotherfile │ │ │ │ └── somefile │ │ │ └── recipeutils-test_1.2.bb │ │ ├── selftest-chown │ │ │ └── selftest-chown.bb │ │ ├── selftest-ed │ │ │ ├── selftest-ed_0.5.bb │ │ │ └── selftest-ed_1.14.1.bb │ │ ├── selftest-hardlink │ │ │ ├── selftest-hardlink.bb │ │ │ └── selftest-hardlink │ │ │ │ ├── gdb.sh │ │ │ │ └── hello.c │ │ ├── sysroot-test │ │ │ ├── sysroot-test-arch1_1.0.bb │ │ │ ├── sysroot-test-arch2_1.0.bb │ │ │ └── sysroot-test_1.0.bb │ │ └── xcursor-transparent-theme │ │ │ └── xcursor-transparent-theme_%.bbappend │ └── wic │ │ ├── test_biosplusefi_plugin.wks │ │ ├── test_empty_plugin.wks │ │ ├── test_rawcopy_plugin.wks.in │ │ └── wictestdisk.wks ├── meta-skeleton │ ├── conf │ │ ├── layer.conf │ │ ├── multilib-example.conf │ │ └── multilib-example2.conf │ ├── recipes-baremetal │ │ └── baremetal-examples │ │ │ └── baremetal-helloworld_git.bb │ ├── recipes-core │ │ └── busybox │ │ │ ├── busybox │ │ │ └── no_rfkill.cfg │ │ │ └── busybox_%.bbappend │ ├── recipes-kernel │ │ ├── hello-mod │ │ │ ├── files │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ └── hello.c │ │ │ └── hello-mod_0.1.bb │ │ └── linux │ │ │ ├── linux-yocto-custom.bb │ │ │ └── linux-yocto-custom │ │ │ ├── 0001-linux-version-tweak.patch │ │ │ ├── feature.scc │ │ │ └── smp.cfg │ ├── recipes-multilib │ │ └── images │ │ │ └── core-image-multilib-example.bb │ └── recipes-skeleton │ │ ├── service │ │ ├── service │ │ │ ├── COPYRIGHT │ │ │ ├── skeleton │ │ │ └── skeleton_test.c │ │ └── service_0.1.bb │ │ └── useradd │ │ ├── useradd-example.bb │ │ └── useradd-example │ │ ├── file1 │ │ ├── file2 │ │ ├── file3 │ │ └── file4 ├── meta-yocto-bsp │ ├── README.hardware │ ├── conf │ │ ├── layer.conf │ │ └── machine │ │ │ ├── beaglebone-yocto.conf │ │ │ ├── edgerouter.conf │ │ │ ├── genericx86-64.conf │ │ │ ├── genericx86.conf │ │ │ └── include │ │ │ └── genericx86-common.inc │ ├── lib │ │ └── oeqa │ │ │ ├── controllers │ │ │ ├── __init__.py │ │ │ ├── beaglebonetarget.py │ │ │ ├── edgeroutertarget.py │ │ │ └── grubtarget.py │ │ │ └── selftest │ │ │ └── cases │ │ │ └── systemd_boot.py │ ├── recipes-bsp │ │ ├── formfactor │ │ │ ├── formfactor │ │ │ │ ├── beaglebone-yocto │ │ │ │ │ └── machconfig │ │ │ │ ├── genericx86-64 │ │ │ │ │ └── machconfig │ │ │ │ └── genericx86 │ │ │ │ │ └── machconfig │ │ │ └── formfactor_0.0.bbappend │ │ └── gma500-gfx-check │ │ │ ├── gma500-gfx-check │ │ │ ├── gma500-gfx-check.conf │ │ │ └── gma500-gfx-check.sh │ │ │ └── gma500-gfx-check_1.0.bb │ ├── recipes-graphics │ │ └── xorg-xserver │ │ │ ├── xserver-xf86-config │ │ │ ├── beaglebone-yocto │ │ │ │ └── xorg.conf │ │ │ ├── genericx86-64 │ │ │ │ └── xorg.conf │ │ │ └── genericx86 │ │ │ │ └── xorg.conf │ │ │ └── xserver-xf86-config_0.1.bbappend │ ├── recipes-kernel │ │ └── linux │ │ │ ├── linux-yocto-dev.bbappend │ │ │ ├── linux-yocto_5.10.bbappend │ │ │ └── linux-yocto_5.4.bbappend │ └── wic │ │ ├── beaglebone-yocto.wks │ │ ├── edgerouter.wks │ │ └── genericx86.wks.in ├── meta │ ├── COPYING.MIT │ ├── classes │ │ ├── allarch.bbclass │ │ ├── archiver.bbclass │ │ ├── autotools-brokensep.bbclass │ │ ├── autotools.bbclass │ │ ├── baremetal-image.bbclass │ │ ├── base.bbclass │ │ ├── bash-completion.bbclass │ │ ├── bin_package.bbclass │ │ ├── binconfig-disabled.bbclass │ │ ├── binconfig.bbclass │ │ ├── blacklist.bbclass │ │ ├── buildhistory.bbclass │ │ ├── buildstats-summary.bbclass │ │ ├── buildstats.bbclass │ │ ├── ccache.bbclass │ │ ├── ccmake.bbclass │ │ ├── chrpath.bbclass │ │ ├── clutter.bbclass │ │ ├── cmake.bbclass │ │ ├── cml1.bbclass │ │ ├── compress_doc.bbclass │ │ ├── copyleft_compliance.bbclass │ │ ├── copyleft_filter.bbclass │ │ ├── core-image.bbclass │ │ ├── cpan-base.bbclass │ │ ├── cpan.bbclass │ │ ├── cpan_build.bbclass │ │ ├── cross-canadian.bbclass │ │ ├── cross.bbclass │ │ ├── crosssdk.bbclass │ │ ├── cve-check.bbclass │ │ ├── debian.bbclass │ │ ├── deploy.bbclass │ │ ├── devicetree.bbclass │ │ ├── devshell.bbclass │ │ ├── devtool-source.bbclass │ │ ├── devupstream.bbclass │ │ ├── distro_features_check.bbclass │ │ ├── distrooverrides.bbclass │ │ ├── distutils-common-base.bbclass │ │ ├── distutils3-base.bbclass │ │ ├── distutils3.bbclass │ │ ├── dos2unix.bbclass │ │ ├── externalsrc.bbclass │ │ ├── extrausers.bbclass │ │ ├── features_check.bbclass │ │ ├── fontcache.bbclass │ │ ├── fs-uuid.bbclass │ │ ├── gconf.bbclass │ │ ├── gettext.bbclass │ │ ├── gio-module-cache.bbclass │ │ ├── glide.bbclass │ │ ├── gnomebase.bbclass │ │ ├── go-mod.bbclass │ │ ├── go-ptest.bbclass │ │ ├── go.bbclass │ │ ├── goarch.bbclass │ │ ├── gobject-introspection-data.bbclass │ │ ├── gobject-introspection.bbclass │ │ ├── grub-efi-cfg.bbclass │ │ ├── grub-efi.bbclass │ │ ├── gsettings.bbclass │ │ ├── gtk-doc.bbclass │ │ ├── gtk-icon-cache.bbclass │ │ ├── gtk-immodules-cache.bbclass │ │ ├── icecc.bbclass │ │ ├── image-artifact-names.bbclass │ │ ├── image-buildinfo.bbclass │ │ ├── image-combined-dbg.bbclass │ │ ├── image-container.bbclass │ │ ├── image-live.bbclass │ │ ├── image-mklibs.bbclass │ │ ├── image-postinst-intercepts.bbclass │ │ ├── image-prelink.bbclass │ │ ├── image.bbclass │ │ ├── image_types.bbclass │ │ ├── image_types_wic.bbclass │ │ ├── insane.bbclass │ │ ├── kernel-arch.bbclass │ │ ├── kernel-artifact-names.bbclass │ │ ├── kernel-devicetree.bbclass │ │ ├── kernel-fitimage.bbclass │ │ ├── kernel-grub.bbclass │ │ ├── kernel-module-split.bbclass │ │ ├── kernel-uboot.bbclass │ │ ├── kernel-uimage.bbclass │ │ ├── kernel-yocto.bbclass │ │ ├── kernel.bbclass │ │ ├── kernelsrc.bbclass │ │ ├── lib_package.bbclass │ │ ├── libc-package.bbclass │ │ ├── license.bbclass │ │ ├── license_image.bbclass │ │ ├── linux-dummy.bbclass │ │ ├── linux-kernel-base.bbclass │ │ ├── linuxloader.bbclass │ │ ├── live-vm-common.bbclass │ │ ├── logging.bbclass │ │ ├── manpages.bbclass │ │ ├── mcextend.bbclass │ │ ├── meson.bbclass │ │ ├── meta.bbclass │ │ ├── metadata_scm.bbclass │ │ ├── migrate_localcount.bbclass │ │ ├── mime-xdg.bbclass │ │ ├── mime.bbclass │ │ ├── mirrors.bbclass │ │ ├── module-base.bbclass │ │ ├── module.bbclass │ │ ├── multilib.bbclass │ │ ├── multilib_global.bbclass │ │ ├── multilib_header.bbclass │ │ ├── multilib_script.bbclass │ │ ├── native.bbclass │ │ ├── nativesdk.bbclass │ │ ├── nopackages.bbclass │ │ ├── npm.bbclass │ │ ├── oelint.bbclass │ │ ├── own-mirrors.bbclass │ │ ├── package.bbclass │ │ ├── package_deb.bbclass │ │ ├── package_ipk.bbclass │ │ ├── package_pkgdata.bbclass │ │ ├── package_rpm.bbclass │ │ ├── package_tar.bbclass │ │ ├── packagedata.bbclass │ │ ├── packagegroup.bbclass │ │ ├── patch.bbclass │ │ ├── perl-version.bbclass │ │ ├── perlnative.bbclass │ │ ├── pixbufcache.bbclass │ │ ├── pkgconfig.bbclass │ │ ├── populate_sdk.bbclass │ │ ├── populate_sdk_base.bbclass │ │ ├── populate_sdk_ext.bbclass │ │ ├── prexport.bbclass │ │ ├── primport.bbclass │ │ ├── ptest-gnome.bbclass │ │ ├── ptest-perl.bbclass │ │ ├── ptest.bbclass │ │ ├── pypi.bbclass │ │ ├── python3-dir.bbclass │ │ ├── python3native.bbclass │ │ ├── python3targetconfig.bbclass │ │ ├── qemu.bbclass │ │ ├── qemuboot.bbclass │ │ ├── recipe_sanity.bbclass │ │ ├── relative_symlinks.bbclass │ │ ├── relocatable.bbclass │ │ ├── remove-libtool.bbclass │ │ ├── report-error.bbclass │ │ ├── reproducible_build.bbclass │ │ ├── reproducible_build_simple.bbclass │ │ ├── rm_work.bbclass │ │ ├── rm_work_and_downloads.bbclass │ │ ├── rootfs-postcommands.bbclass │ │ ├── rootfs_deb.bbclass │ │ ├── rootfs_ipk.bbclass │ │ ├── rootfs_rpm.bbclass │ │ ├── rootfsdebugfiles.bbclass │ │ ├── sanity.bbclass │ │ ├── scons.bbclass │ │ ├── setuptools3.bbclass │ │ ├── sign_ipk.bbclass │ │ ├── sign_package_feed.bbclass │ │ ├── sign_rpm.bbclass │ │ ├── siteconfig.bbclass │ │ ├── siteinfo.bbclass │ │ ├── sstate.bbclass │ │ ├── staging.bbclass │ │ ├── syslinux.bbclass │ │ ├── systemd-boot-cfg.bbclass │ │ ├── systemd-boot.bbclass │ │ ├── systemd.bbclass │ │ ├── terminal.bbclass │ │ ├── testexport.bbclass │ │ ├── testimage.bbclass │ │ ├── testsdk.bbclass │ │ ├── texinfo.bbclass │ │ ├── toaster.bbclass │ │ ├── toolchain-scripts-base.bbclass │ │ ├── toolchain-scripts.bbclass │ │ ├── typecheck.bbclass │ │ ├── uboot-config.bbclass │ │ ├── uboot-extlinux-config.bbclass │ │ ├── uboot-sign.bbclass │ │ ├── uninative.bbclass │ │ ├── update-alternatives.bbclass │ │ ├── update-rc.d.bbclass │ │ ├── upstream-version-is-even.bbclass │ │ ├── useradd-staticids.bbclass │ │ ├── useradd.bbclass │ │ ├── useradd_base.bbclass │ │ ├── utility-tasks.bbclass │ │ ├── utils.bbclass │ │ ├── vala.bbclass │ │ ├── waf.bbclass │ │ └── xmlcatalog.bbclass │ ├── conf │ │ ├── abi_version.conf │ │ ├── bitbake.conf │ │ ├── ccache.conf │ │ ├── conf-notes.txt │ │ ├── distro │ │ │ ├── defaultsetup.conf │ │ │ └── include │ │ │ │ ├── default-distrovars.inc │ │ │ │ ├── default-providers.inc │ │ │ │ ├── default-versions.inc │ │ │ │ ├── distro_alias.inc │ │ │ │ ├── init-manager-mdev-busybox.inc │ │ │ │ ├── init-manager-none.inc │ │ │ │ ├── init-manager-systemd.inc │ │ │ │ ├── init-manager-sysvinit.inc │ │ │ │ ├── lto.inc │ │ │ │ ├── maintainers.inc │ │ │ │ ├── no-static-libs.inc │ │ │ │ ├── ptest-packagelists.inc │ │ │ │ ├── security_flags.inc │ │ │ │ ├── tclibc-baremetal.inc │ │ │ │ ├── tclibc-glibc.inc │ │ │ │ ├── tclibc-musl.inc │ │ │ │ ├── tclibc-newlib.inc │ │ │ │ ├── tcmode-default.inc │ │ │ │ ├── uninative-flags.inc │ │ │ │ └── yocto-uninative.inc │ │ ├── documentation.conf │ │ ├── image-uefi.conf │ │ ├── layer.conf │ │ ├── licenses.conf │ │ ├── machine-sdk │ │ │ ├── aarch64.conf │ │ │ ├── i586.conf │ │ │ ├── i686.conf │ │ │ ├── ppc64le.conf │ │ │ └── x86_64.conf │ │ ├── machine │ │ │ ├── include │ │ │ │ ├── README │ │ │ │ ├── arm │ │ │ │ │ ├── README │ │ │ │ │ ├── arch-arm.inc │ │ │ │ │ ├── arch-arm64.inc │ │ │ │ │ ├── arch-armv4.inc │ │ │ │ │ ├── arch-armv5-dsp.inc │ │ │ │ │ ├── arch-armv5.inc │ │ │ │ │ ├── arch-armv6.inc │ │ │ │ │ ├── arch-armv6m.inc │ │ │ │ │ ├── arch-armv7a.inc │ │ │ │ │ ├── arch-armv7ve.inc │ │ │ │ │ ├── arch-armv8-2a.inc │ │ │ │ │ ├── arch-armv8a.inc │ │ │ │ │ ├── armv8-2a │ │ │ │ │ │ ├── tune-cortexa65.inc │ │ │ │ │ │ ├── tune-cortexa65ae.inc │ │ │ │ │ │ ├── tune-cortexa75-cortexa55.inc │ │ │ │ │ │ ├── tune-cortexa75.inc │ │ │ │ │ │ ├── tune-cortexa76-cortexa55.inc │ │ │ │ │ │ ├── tune-cortexa76.inc │ │ │ │ │ │ ├── tune-cortexa76ae.inc │ │ │ │ │ │ ├── tune-cortexa77.inc │ │ │ │ │ │ ├── tune-neoversee1.inc │ │ │ │ │ │ ├── tune-neoversen1.inc │ │ │ │ │ │ └── tune-octeontx2.inc │ │ │ │ │ ├── armv8a │ │ │ │ │ │ ├── tune-cortexa34.inc │ │ │ │ │ │ ├── tune-cortexa73-cortexa35.inc │ │ │ │ │ │ └── tune-cortexa73.inc │ │ │ │ │ ├── feature-arm-neon.inc │ │ │ │ │ ├── feature-arm-thumb.inc │ │ │ │ │ └── feature-arm-vfp.inc │ │ │ │ ├── m68k │ │ │ │ │ └── arch-m68k.inc │ │ │ │ ├── microblaze │ │ │ │ │ ├── arch-microblaze.inc │ │ │ │ │ ├── feature-microblaze-math.inc │ │ │ │ │ └── feature-microblaze-versions.inc │ │ │ │ ├── mips │ │ │ │ │ ├── README │ │ │ │ │ ├── arch-mips.inc │ │ │ │ │ ├── feature-mips-mips16e.inc │ │ │ │ │ ├── tune-mips-24k.inc │ │ │ │ │ └── tune-mips-74k.inc │ │ │ │ ├── powerpc │ │ │ │ │ ├── README │ │ │ │ │ ├── arch-powerpc.inc │ │ │ │ │ └── arch-powerpc64.inc │ │ │ │ ├── qemu.inc │ │ │ │ ├── qemuboot-mips.inc │ │ │ │ ├── qemuboot-x86.inc │ │ │ │ ├── riscv │ │ │ │ │ ├── arch-riscv.inc │ │ │ │ │ ├── qemuriscv.inc │ │ │ │ │ └── tune-riscv.inc │ │ │ │ ├── sh │ │ │ │ │ ├── README │ │ │ │ │ └── arch-sh.inc │ │ │ │ ├── soc-family.inc │ │ │ │ ├── tune-arm1136jf-s.inc │ │ │ │ ├── tune-arm1176jz-s.inc │ │ │ │ ├── tune-arm920t.inc │ │ │ │ ├── tune-arm926ejs.inc │ │ │ │ ├── tune-arm9tdmi.inc │ │ │ │ ├── tune-atom.inc │ │ │ │ ├── tune-c3.inc │ │ │ │ ├── tune-core2.inc │ │ │ │ ├── tune-corei7.inc │ │ │ │ ├── tune-cortex-m0.inc │ │ │ │ ├── tune-cortex-m0plus.inc │ │ │ │ ├── tune-cortexa15.inc │ │ │ │ ├── tune-cortexa17.inc │ │ │ │ ├── tune-cortexa32.inc │ │ │ │ ├── tune-cortexa35.inc │ │ │ │ ├── tune-cortexa5.inc │ │ │ │ ├── tune-cortexa53.inc │ │ │ │ ├── tune-cortexa55.inc │ │ │ │ ├── tune-cortexa57-cortexa53.inc │ │ │ │ ├── tune-cortexa57.inc │ │ │ │ ├── tune-cortexa7.inc │ │ │ │ ├── tune-cortexa72-cortexa53.inc │ │ │ │ ├── tune-cortexa72.inc │ │ │ │ ├── tune-cortexa73-cortexa53.inc │ │ │ │ ├── tune-cortexa8.inc │ │ │ │ ├── tune-cortexa9.inc │ │ │ │ ├── tune-ep9312.inc │ │ │ │ ├── tune-i586-nlp.inc │ │ │ │ ├── tune-i586.inc │ │ │ │ ├── tune-i686.inc │ │ │ │ ├── tune-iwmmxt.inc │ │ │ │ ├── tune-mcf5441x.inc │ │ │ │ ├── tune-microblaze.inc │ │ │ │ ├── tune-mips32.inc │ │ │ │ ├── tune-mips32r2.inc │ │ │ │ ├── tune-mips32r6.inc │ │ │ │ ├── tune-mips64.inc │ │ │ │ ├── tune-mips64r2.inc │ │ │ │ ├── tune-mips64r6.inc │ │ │ │ ├── tune-octeon.inc │ │ │ │ ├── tune-power5.inc │ │ │ │ ├── tune-power6.inc │ │ │ │ ├── tune-power7.inc │ │ │ │ ├── tune-power9.inc │ │ │ │ ├── tune-ppc476.inc │ │ │ │ ├── tune-ppc603e.inc │ │ │ │ ├── tune-ppc7400.inc │ │ │ │ ├── tune-ppce300c2.inc │ │ │ │ ├── tune-ppce300c3.inc │ │ │ │ ├── tune-ppce500.inc │ │ │ │ ├── tune-ppce500mc.inc │ │ │ │ ├── tune-ppce500v2.inc │ │ │ │ ├── tune-ppce5500.inc │ │ │ │ ├── tune-ppce6500.inc │ │ │ │ ├── tune-sh3.inc │ │ │ │ ├── tune-sh4.inc │ │ │ │ ├── tune-strongarm1100.inc │ │ │ │ ├── tune-thunderx.inc │ │ │ │ ├── tune-xscale.inc │ │ │ │ ├── x86-base.inc │ │ │ │ └── x86 │ │ │ │ │ ├── README │ │ │ │ │ └── arch-x86.inc │ │ │ ├── qemuarm.conf │ │ │ ├── qemuarm64.conf │ │ │ ├── qemuarmv5.conf │ │ │ ├── qemumips.conf │ │ │ ├── qemumips64.conf │ │ │ ├── qemuppc.conf │ │ │ ├── qemuppc64.conf │ │ │ ├── qemuriscv32.conf │ │ │ ├── qemuriscv64.conf │ │ │ ├── qemux86-64.conf │ │ │ └── qemux86.conf │ │ ├── migrate_localcount.conf │ │ ├── multiconfig │ │ │ └── default.conf │ │ ├── multilib.conf │ │ ├── prexport.conf │ │ ├── primport.conf │ │ └── sanity.conf │ ├── files │ │ ├── common-licenses │ │ │ ├── AAL │ │ │ ├── AFL-1.2 │ │ │ ├── AFL-2.0 │ │ │ ├── AFL-2.1 │ │ │ ├── AFL-3.0 │ │ │ ├── AGPL-3.0-only │ │ │ ├── AGPL-3.0-or-later │ │ │ ├── ANTLR-PD │ │ │ ├── APL-1.0 │ │ │ ├── APSL-1.0 │ │ │ ├── APSL-1.1 │ │ │ ├── APSL-1.2 │ │ │ ├── APSL-2.0 │ │ │ ├── Adobe │ │ │ ├── Apache-1.0 │ │ │ ├── Apache-1.1 │ │ │ ├── Apache-2.0 │ │ │ ├── Apache-2.0-with-LLVM-exception │ │ │ ├── Artistic-1.0 │ │ │ ├── Artistic-2.0 │ │ │ ├── BSD │ │ │ ├── BSD-0-Clause │ │ │ ├── BSD-1-Clause │ │ │ ├── BSD-2-Clause │ │ │ ├── BSD-2-Clause-Patent │ │ │ ├── BSD-3-Clause │ │ │ ├── BSD-3-Clause-Clear │ │ │ ├── BSD-4-Clause │ │ │ ├── BSL-1.0 │ │ │ ├── BitstreamVera │ │ │ ├── CATOSL-1.1 │ │ │ ├── CC-BY-1.0 │ │ │ ├── CC-BY-2.0 │ │ │ ├── CC-BY-2.5 │ │ │ ├── CC-BY-3.0 │ │ │ ├── CC-BY-NC-1.0 │ │ │ ├── CC-BY-NC-2.0 │ │ │ ├── CC-BY-NC-2.5 │ │ │ ├── CC-BY-NC-3.0 │ │ │ ├── CC-BY-NC-ND-1.0 │ │ │ ├── CC-BY-NC-ND-2.0 │ │ │ ├── CC-BY-NC-ND-2.5 │ │ │ ├── CC-BY-NC-ND-3.0 │ │ │ ├── CC-BY-NC-SA-1.0 │ │ │ ├── CC-BY-NC-SA-2.0 │ │ │ ├── CC-BY-NC-SA-2.5 │ │ │ ├── CC-BY-NC-SA-3.0 │ │ │ ├── CC-BY-ND-1.0 │ │ │ ├── CC-BY-ND-2.0 │ │ │ ├── CC-BY-ND-2.5 │ │ │ ├── CC-BY-ND-3.0 │ │ │ ├── CC-BY-SA-1.0 │ │ │ ├── CC-BY-SA-2.0 │ │ │ ├── CC-BY-SA-2.5 │ │ │ ├── CC-BY-SA-3.0 │ │ │ ├── CC-BY-SA-4.0 │ │ │ ├── CC0-1.0 │ │ │ ├── CDDL-1.0 │ │ │ ├── CECILL-1.0 │ │ │ ├── CECILL-2.0 │ │ │ ├── CECILL-B │ │ │ ├── CECILL-C │ │ │ ├── CPAL-1.0 │ │ │ ├── CPL-1.0 │ │ │ ├── CUA-OPL-1.0 │ │ │ ├── ClArtistic │ │ │ ├── DSSSL │ │ │ ├── ECL-1.0 │ │ │ ├── ECL-2.0 │ │ │ ├── EDL-1.0 │ │ │ ├── EFL-1.0 │ │ │ ├── EFL-2.0 │ │ │ ├── EPL-1.0 │ │ │ ├── EPL-2.0 │ │ │ ├── EUDatagrid │ │ │ ├── EUPL-1.0 │ │ │ ├── EUPL-1.1 │ │ │ ├── Entessa │ │ │ ├── ErlPL-1.1 │ │ │ ├── FSF-Unlimited │ │ │ ├── Fair │ │ │ ├── Frameworx-1.0 │ │ │ ├── FreeType │ │ │ ├── GFDL-1.1 │ │ │ ├── GFDL-1.2 │ │ │ ├── GFDL-1.3 │ │ │ ├── GPL-1.0-only │ │ │ ├── GPL-1.0-or-later │ │ │ ├── GPL-2-with-bison-exception │ │ │ ├── GPL-2.0-only │ │ │ ├── GPL-2.0-or-later │ │ │ ├── GPL-2.0-with-GCC-exception │ │ │ ├── GPL-2.0-with-OpenSSL-exception │ │ │ ├── GPL-2.0-with-autoconf-exception │ │ │ ├── GPL-2.0-with-classpath-exception │ │ │ ├── GPL-2.0-with-font-exception │ │ │ ├── GPL-3-with-bison-exception │ │ │ ├── GPL-3.0-only │ │ │ ├── GPL-3.0-or-later │ │ │ ├── GPL-3.0-with-GCC-exception │ │ │ ├── GPL-3.0-with-autoconf-exception │ │ │ ├── HPND │ │ │ ├── ICU │ │ │ ├── IPA │ │ │ ├── IPL-1.0 │ │ │ ├── ISC │ │ │ ├── Intel │ │ │ ├── LGPL-2.0-only │ │ │ ├── LGPL-2.0-or-later │ │ │ ├── LGPL-2.1-only │ │ │ ├── LGPL-2.1-or-later │ │ │ ├── LGPL-3.0-only │ │ │ ├── LGPL-3.0-or-later │ │ │ ├── LPL-1.02 │ │ │ ├── LPPL-1.0 │ │ │ ├── LPPL-1.1 │ │ │ ├── LPPL-1.2 │ │ │ ├── LPPL-1.3c │ │ │ ├── Libpng │ │ │ ├── MIT │ │ │ ├── MPL-1.0 │ │ │ ├── MPL-1.1 │ │ │ ├── MPL-2.0 │ │ │ ├── MS-PL │ │ │ ├── MS-RL │ │ │ ├── MirOS │ │ │ ├── Motosoto │ │ │ ├── Multics │ │ │ ├── NASA-1.3 │ │ │ ├── NCSA │ │ │ ├── NGPL │ │ │ ├── NPOSL-3.0 │ │ │ ├── NTP │ │ │ ├── Nauman │ │ │ ├── Nokia │ │ │ ├── OASIS │ │ │ ├── OCLC-2.0 │ │ │ ├── ODbL-1.0 │ │ │ ├── OFL-1.1 │ │ │ ├── OGTSL │ │ │ ├── OLDAP-2.8 │ │ │ ├── OSL-1.0 │ │ │ ├── OSL-2.0 │ │ │ ├── OSL-3.0 │ │ │ ├── OpenSSL │ │ │ ├── PD │ │ │ ├── PHP-3.0 │ │ │ ├── PSF-2.0 │ │ │ ├── ParaTypeFFL-1.3 │ │ │ ├── PostgreSQL │ │ │ ├── Proprietary │ │ │ ├── Python-2.0 │ │ │ ├── QPL-1.0 │ │ │ ├── RHeCos-1 │ │ │ ├── RHeCos-1.1 │ │ │ ├── RPL-1.5 │ │ │ ├── RPSL-1.0 │ │ │ ├── RSCPL │ │ │ ├── Ruby │ │ │ ├── SAX-PD │ │ │ ├── SGI-1 │ │ │ ├── SMAIL_GPL │ │ │ ├── SPL-1.0 │ │ │ ├── Simple-2.0 │ │ │ ├── Sleepycat │ │ │ ├── SugarCRM-1 │ │ │ ├── SugarCRM-1.1.3 │ │ │ ├── UCB │ │ │ ├── Unlicense │ │ │ ├── VSL-1.0 │ │ │ ├── W3C │ │ │ ├── WXwindows │ │ │ ├── Watcom-1.0 │ │ │ ├── XFree86-1.0 │ │ │ ├── XFree86-1.1 │ │ │ ├── XSL │ │ │ ├── Xnet │ │ │ ├── YPL-1.1 │ │ │ ├── ZPL-1.1 │ │ │ ├── ZPL-2.0 │ │ │ ├── ZPL-2.1 │ │ │ ├── Zimbra-1.3 │ │ │ ├── Zlib │ │ │ ├── bzip2-1.0.4 │ │ │ ├── bzip2-1.0.6 │ │ │ ├── eCos-2.0 │ │ │ ├── gSOAP-1 │ │ │ ├── gSOAP-1.3b │ │ │ ├── pkgconf │ │ │ ├── tcl │ │ │ ├── unfs3 │ │ │ └── vim │ │ ├── device_table-minimal.txt │ │ ├── ext-sdk-prepare.py │ │ ├── fs-perms-persistent-log.txt │ │ ├── fs-perms.txt │ │ ├── ptest-perl │ │ │ └── run-ptest │ │ ├── toolchain-shar-extract.sh │ │ └── toolchain-shar-relocate.sh │ ├── lib │ │ ├── bblayers │ │ │ ├── create.py │ │ │ └── templates │ │ │ │ ├── README │ │ │ │ ├── example.bb │ │ │ │ └── layer.conf │ │ ├── buildstats.py │ │ ├── oe │ │ │ ├── __init__.py │ │ │ ├── buildhistory_analysis.py │ │ │ ├── cachedpath.py │ │ │ ├── classextend.py │ │ │ ├── classutils.py │ │ │ ├── copy_buildsystem.py │ │ │ ├── cve_check.py │ │ │ ├── data.py │ │ │ ├── distro_check.py │ │ │ ├── elf.py │ │ │ ├── gpg_sign.py │ │ │ ├── license.py │ │ │ ├── lsb.py │ │ │ ├── maketype.py │ │ │ ├── manifest.py │ │ │ ├── package.py │ │ │ ├── package_manager │ │ │ │ ├── __init__.py │ │ │ │ ├── deb │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── rootfs.py │ │ │ │ │ └── sdk.py │ │ │ │ ├── ipk │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── rootfs.py │ │ │ │ │ └── sdk.py │ │ │ │ └── rpm │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── rootfs.py │ │ │ │ │ └── sdk.py │ │ │ ├── packagedata.py │ │ │ ├── packagegroup.py │ │ │ ├── patch.py │ │ │ ├── path.py │ │ │ ├── prservice.py │ │ │ ├── qa.py │ │ │ ├── recipeutils.py │ │ │ ├── reproducible.py │ │ │ ├── rootfs.py │ │ │ ├── sdk.py │ │ │ ├── sstatesig.py │ │ │ ├── terminal.py │ │ │ ├── types.py │ │ │ ├── useradd.py │ │ │ └── utils.py │ │ ├── oeqa │ │ │ ├── buildperf │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ └── test_basic.py │ │ │ ├── controllers │ │ │ │ ├── __init__.py │ │ │ │ ├── masterimage.py │ │ │ │ └── testtargetloader.py │ │ │ ├── core │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── case.py │ │ │ │ ├── cases │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── example │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ └── test_basic.py │ │ │ │ ├── context.py │ │ │ │ ├── decorator │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── data.py │ │ │ │ │ ├── depends.py │ │ │ │ │ └── oetimeout.py │ │ │ │ ├── exception.py │ │ │ │ ├── loader.py │ │ │ │ ├── runner.py │ │ │ │ ├── target │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── qemu.py │ │ │ │ │ └── ssh.py │ │ │ │ ├── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cases │ │ │ │ │ │ ├── data.py │ │ │ │ │ │ ├── depends.py │ │ │ │ │ │ ├── loader │ │ │ │ │ │ │ └── valid │ │ │ │ │ │ │ │ └── another.py │ │ │ │ │ │ ├── oetag.py │ │ │ │ │ │ └── timeout.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── test_data.py │ │ │ │ │ ├── test_decorators.py │ │ │ │ │ ├── test_loader.py │ │ │ │ │ └── test_runner.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── concurrencytest.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── path.py │ │ │ │ │ └── test.py │ │ │ ├── files │ │ │ │ ├── buildhistory_filelist1.txt │ │ │ │ ├── buildhistory_filelist2.txt │ │ │ │ ├── test.c │ │ │ │ ├── test.cpp │ │ │ │ └── testresults │ │ │ │ │ └── testresults.json │ │ │ ├── manual │ │ │ │ ├── abat.patch │ │ │ │ ├── bsp-hw.json │ │ │ │ ├── build-appliance.json │ │ │ │ ├── crops.json │ │ │ │ ├── eclipse-plugin.json │ │ │ │ ├── kernel-dev.json │ │ │ │ ├── oe-core.json │ │ │ │ ├── sdk.json │ │ │ │ ├── toaster-managed-mode.json │ │ │ │ └── toaster-unmanaged-mode.json │ │ │ ├── oetest.py │ │ │ ├── runexported.py │ │ │ ├── runtime │ │ │ │ ├── case.py │ │ │ │ ├── cases │ │ │ │ │ ├── _qemutiny.py │ │ │ │ │ ├── apt.py │ │ │ │ │ ├── boot.py │ │ │ │ │ ├── buildcpio.py │ │ │ │ │ ├── buildgalculator.py │ │ │ │ │ ├── buildlzip.py │ │ │ │ │ ├── connman.py │ │ │ │ │ ├── date.py │ │ │ │ │ ├── df.py │ │ │ │ │ ├── dnf.py │ │ │ │ │ ├── ethernet_ip_connman.py │ │ │ │ │ ├── gcc.py │ │ │ │ │ ├── gi.py │ │ │ │ │ ├── gstreamer.py │ │ │ │ │ ├── kernelmodule.py │ │ │ │ │ ├── ksample.py │ │ │ │ │ ├── ldd.py │ │ │ │ │ ├── logrotate.py │ │ │ │ │ ├── ltp.py │ │ │ │ │ ├── ltp_compliance.py │ │ │ │ │ ├── ltp_stress.py │ │ │ │ │ ├── multilib.py │ │ │ │ │ ├── oe_syslog.py │ │ │ │ │ ├── opkg.py │ │ │ │ │ ├── pam.py │ │ │ │ │ ├── parselogs.py │ │ │ │ │ ├── perl.py │ │ │ │ │ ├── ping.py │ │ │ │ │ ├── ptest.py │ │ │ │ │ ├── python.py │ │ │ │ │ ├── rpm.py │ │ │ │ │ ├── rtc.py │ │ │ │ │ ├── runlevel.py │ │ │ │ │ ├── scons.py │ │ │ │ │ ├── scp.py │ │ │ │ │ ├── skeletoninit.py │ │ │ │ │ ├── ssh.py │ │ │ │ │ ├── stap.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── suspend.py │ │ │ │ │ ├── systemd.py │ │ │ │ │ ├── terminal.py │ │ │ │ │ ├── usb_hid.py │ │ │ │ │ ├── weston.py │ │ │ │ │ ├── x32lib.py │ │ │ │ │ └── xorg.py │ │ │ │ ├── context.py │ │ │ │ ├── decorator │ │ │ │ │ └── package.py │ │ │ │ ├── files │ │ │ │ │ ├── SConstruct │ │ │ │ │ ├── hello.c │ │ │ │ │ ├── hello.stp │ │ │ │ │ ├── hellomod.c │ │ │ │ │ ├── hellomod_makefile │ │ │ │ │ └── testmakefile │ │ │ │ ├── loader.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── targetbuildproject.py │ │ │ ├── sdk │ │ │ │ ├── __init__.py │ │ │ │ ├── case.py │ │ │ │ ├── cases │ │ │ │ │ ├── assimp.py │ │ │ │ │ ├── buildcpio.py │ │ │ │ │ ├── buildepoxy.py │ │ │ │ │ ├── buildgalculator.py │ │ │ │ │ ├── buildlzip.py │ │ │ │ │ ├── gcc.py │ │ │ │ │ ├── perl.py │ │ │ │ │ └── python.py │ │ │ │ ├── context.py │ │ │ │ ├── files │ │ │ │ │ └── testsdkmakefile │ │ │ │ ├── testsdk.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── sdkbuildproject.py │ │ │ ├── sdkext │ │ │ │ ├── __init__.py │ │ │ │ ├── case.py │ │ │ │ ├── cases │ │ │ │ │ └── devtool.py │ │ │ │ ├── context.py │ │ │ │ ├── files │ │ │ │ │ ├── myapp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── myapp.c │ │ │ │ │ └── myapp_cmake │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── myapp.c │ │ │ │ └── testsdk.py │ │ │ ├── selftest │ │ │ │ ├── case.py │ │ │ │ ├── cases │ │ │ │ │ ├── _sstatetests_noauto.py │ │ │ │ │ ├── archiver.py │ │ │ │ │ ├── bblayers.py │ │ │ │ │ ├── bbtests.py │ │ │ │ │ ├── binutils.py │ │ │ │ │ ├── buildhistory.py │ │ │ │ │ ├── buildoptions.py │ │ │ │ │ ├── containerimage.py │ │ │ │ │ ├── cve_check.py │ │ │ │ │ ├── devtool.py │ │ │ │ │ ├── diffoscope │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── file.txt │ │ │ │ │ │ └── B │ │ │ │ │ │ │ └── file.txt │ │ │ │ │ ├── distrodata.py │ │ │ │ │ ├── eSDK.py │ │ │ │ │ ├── efibootpartition.py │ │ │ │ │ ├── fetch.py │ │ │ │ │ ├── fitimage.py │ │ │ │ │ ├── gcc.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── gotoolchain.py │ │ │ │ │ ├── image_typedep.py │ │ │ │ │ ├── imagefeatures.py │ │ │ │ │ ├── incompatible_lic.py │ │ │ │ │ ├── kerneldevelopment.py │ │ │ │ │ ├── layerappend.py │ │ │ │ │ ├── liboe.py │ │ │ │ │ ├── lic_checksum.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── meta_ide.py │ │ │ │ │ ├── multiconfig.py │ │ │ │ │ ├── oelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── buildhistory.py │ │ │ │ │ │ ├── elf.py │ │ │ │ │ │ ├── license.py │ │ │ │ │ │ ├── path.py │ │ │ │ │ │ ├── types.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── oescripts.py │ │ │ │ │ ├── package.py │ │ │ │ │ ├── pkgdata.py │ │ │ │ │ ├── prservice.py │ │ │ │ │ ├── pseudo.py │ │ │ │ │ ├── recipetool.py │ │ │ │ │ ├── recipeutils.py │ │ │ │ │ ├── reproducible.py │ │ │ │ │ ├── resulttooltests.py │ │ │ │ │ ├── runcmd.py │ │ │ │ │ ├── runqemu.py │ │ │ │ │ ├── runtime_test.py │ │ │ │ │ ├── selftest.py │ │ │ │ │ ├── signing.py │ │ │ │ │ ├── sstate.py │ │ │ │ │ ├── sstatetests.py │ │ │ │ │ ├── sysroot.py │ │ │ │ │ ├── tinfoil.py │ │ │ │ │ └── wic.py │ │ │ │ └── context.py │ │ │ ├── targetcontrol.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── buildproject.py │ │ │ │ ├── commands.py │ │ │ │ ├── decorators.py │ │ │ │ ├── dump.py │ │ │ │ ├── ftools.py │ │ │ │ ├── git.py │ │ │ │ ├── gitarchive.py │ │ │ │ ├── httpserver.py │ │ │ │ ├── logparser.py │ │ │ │ ├── metadata.py │ │ │ │ ├── network.py │ │ │ │ ├── nfs.py │ │ │ │ ├── package_manager.py │ │ │ │ ├── qemurunner.py │ │ │ │ ├── qemutinyrunner.py │ │ │ │ ├── sshcontrol.py │ │ │ │ ├── subprocesstweak.py │ │ │ │ ├── targetbuild.py │ │ │ │ └── testexport.py │ │ └── rootfspostcommands.py │ ├── recipes-bsp │ │ ├── acpid │ │ │ ├── acpid.inc │ │ │ ├── acpid │ │ │ │ ├── acpid.service │ │ │ │ └── init │ │ │ └── acpid_2.0.32.bb │ │ ├── alsa-state │ │ │ ├── alsa-state.bb │ │ │ └── alsa-state │ │ │ │ ├── alsa-state-init │ │ │ │ ├── asound.conf │ │ │ │ └── asound.state │ │ ├── apmd │ │ │ ├── apmd │ │ │ │ ├── apmd.service │ │ │ │ ├── apmd_proxy │ │ │ │ ├── apmd_proxy.conf │ │ │ │ ├── default │ │ │ │ ├── init │ │ │ │ ├── legacy.patch │ │ │ │ ├── libtool.patch │ │ │ │ ├── linkage.patch │ │ │ │ ├── unlinux.patch │ │ │ │ └── wexitcode.patch │ │ │ └── apmd_3.2.2-15.bb │ │ ├── efibootmgr │ │ │ ├── efibootmgr │ │ │ │ ├── 0001-remove-extra-decl.patch │ │ │ │ └── 97668ae0bce776a36ea2001dea63d376be8274ac.patch │ │ │ └── efibootmgr_17.bb │ │ ├── efivar │ │ │ ├── efivar │ │ │ │ ├── determinism.patch │ │ │ │ └── no-werror.patch │ │ │ └── efivar_37.bb │ │ ├── formfactor │ │ │ ├── files │ │ │ │ ├── config │ │ │ │ ├── machconfig │ │ │ │ ├── qemuarm │ │ │ │ │ └── machconfig │ │ │ │ ├── qemuarmv6 │ │ │ │ │ └── machconfig │ │ │ │ ├── qemuarmv7 │ │ │ │ │ └── machconfig │ │ │ │ ├── qemumips │ │ │ │ │ └── machconfig │ │ │ │ ├── qemumips64 │ │ │ │ │ └── machconfig │ │ │ │ ├── qemuppc │ │ │ │ │ └── machconfig │ │ │ │ ├── qemuppc64 │ │ │ │ │ └── machconfig │ │ │ │ ├── qemux86-64 │ │ │ │ │ └── machconfig │ │ │ │ └── qemux86 │ │ │ │ │ └── machconfig │ │ │ └── formfactor_0.0.bb │ │ ├── gnu-efi │ │ │ ├── gnu-efi │ │ │ │ ├── gnu-efi-3.0.9-fix-clang-build.patch │ │ │ │ ├── lib-Makefile-fix-parallel-issue.patch │ │ │ │ └── parallel-make-archives.patch │ │ │ └── gnu-efi_3.0.12.bb │ │ ├── grub │ │ │ ├── files │ │ │ │ ├── 0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch │ │ │ │ ├── 0001-RISC-V-Restore-the-typcast-to-long.patch │ │ │ │ ├── 0001-grub.d-10_linux.in-add-oe-s-kernel-name.patch │ │ │ │ ├── autogen.sh-exclude-pc.patch │ │ │ │ ├── cfg │ │ │ │ ├── determinism.patch │ │ │ │ └── grub-module-explicitly-keeps-symbole-.module_license.patch │ │ │ ├── grub-bootconf_1.00.bb │ │ │ ├── grub-efi_git.bb │ │ │ ├── grub2.inc │ │ │ └── grub_git.bb │ │ ├── keymaps │ │ │ ├── files │ │ │ │ ├── GPLv2.patch │ │ │ │ └── keymap.sh │ │ │ └── keymaps_1.0.bb │ │ ├── libacpi │ │ │ ├── files │ │ │ │ ├── 0001-libacpi-Fix-build-witth-fno-commom.patch │ │ │ │ ├── ldflags.patch │ │ │ │ ├── libacpi_fix_for_x32.patch │ │ │ │ ├── makefile-fix.patch │ │ │ │ └── use_correct_strip_in_cross_environment.patch │ │ │ └── libacpi_0.2.bb │ │ ├── lrzsz │ │ │ ├── lrzsz-0.12.20 │ │ │ │ ├── 0001-Fix-cross-compilation-using-autoconf-detected-AR.patch │ │ │ │ ├── autotools-update.patch │ │ │ │ ├── autotools.patch │ │ │ │ ├── cve-2018-10195.patch │ │ │ │ ├── include.patch │ │ │ │ ├── lrzsz-check-locale.h.patch │ │ │ │ └── makefile.patch │ │ │ └── lrzsz_0.12.20.bb │ │ ├── opensbi │ │ │ ├── files │ │ │ │ └── 0001-Makefile-Don-t-specify-mabi-or-march.patch │ │ │ ├── opensbi-payloads.inc │ │ │ └── opensbi_0.9.bb │ │ ├── pciutils │ │ │ ├── pciutils │ │ │ │ └── configure.patch │ │ │ └── pciutils_3.7.0.bb │ │ ├── pm-utils │ │ │ └── pm-utils_1.4.1.bb │ │ ├── setserial │ │ │ ├── setserial │ │ │ │ ├── add_stdlib.patch │ │ │ │ └── ldflags.patch │ │ │ └── setserial_2.17.bb │ │ ├── u-boot │ │ │ ├── files │ │ │ │ ├── 0001-add-valid-fdt-check.patch │ │ │ │ ├── 0001-riscv32-Use-double-float-ABI-for-rv32.patch │ │ │ │ ├── CVE-2021-27097-1.patch │ │ │ │ ├── CVE-2021-27097-2.patch │ │ │ │ ├── CVE-2021-27097-3.patch │ │ │ │ ├── CVE-2021-27097-4.patch │ │ │ │ ├── CVE-2021-27138-1.patch │ │ │ │ └── CVE-2021-27138-2.patch │ │ │ ├── libubootenv_0.3.1.bb │ │ │ ├── u-boot-common.inc │ │ │ ├── u-boot-tools.inc │ │ │ ├── u-boot-tools_2021.01.bb │ │ │ ├── u-boot.inc │ │ │ └── u-boot_2021.01.bb │ │ ├── usbinit │ │ │ ├── usbinit.bb │ │ │ └── usbinit │ │ │ │ ├── COPYING.GPL │ │ │ │ └── usb-gether │ │ ├── usbutils │ │ │ └── usbutils_013.bb │ │ └── v86d │ │ │ ├── v86d │ │ │ ├── Support-for-cross-compilation.patch │ │ │ ├── Update-x86emu-from-X.org.patch │ │ │ └── ar-from-env.patch │ │ │ └── v86d_0.1.10.bb │ ├── recipes-connectivity │ │ ├── avahi │ │ │ ├── avahi_0.8.bb │ │ │ └── files │ │ │ │ ├── 0001-Fix-opening-etc-resolv.conf-error.patch │ │ │ │ ├── 00avahi-autoipd │ │ │ │ ├── 99avahi-autoipd │ │ │ │ └── initscript.patch │ │ ├── bind │ │ │ ├── bind-9.16.12 │ │ │ │ ├── 0001-avoid-start-failure-with-bind-user.patch │ │ │ │ ├── 0001-named-lwresd-V-and-start-log-hide-build-options.patch │ │ │ │ ├── bind-ensure-searching-for-json-headers-searches-sysr.patch │ │ │ │ ├── bind9 │ │ │ │ ├── conf.patch │ │ │ │ ├── generate-rndc-key.sh │ │ │ │ ├── init.d-add-support-for-read-only-rootfs.patch │ │ │ │ ├── make-etc-initd-bind-stop-work.patch │ │ │ │ └── named.service │ │ │ └── bind_9.16.12.bb │ │ ├── bluez5 │ │ │ ├── bluez5.inc │ │ │ ├── bluez5 │ │ │ │ ├── 0001-Allow-using-obexd-without-systemd-in-the-user-sessio.patch │ │ │ │ ├── 0001-test-gatt-Fix-hung-issue.patch │ │ │ │ ├── 0001-tests-add-a-target-for-building-tests-without-runnin.patch │ │ │ │ ├── init │ │ │ │ └── run-ptest │ │ │ └── bluez5_5.56.bb │ │ ├── connman │ │ │ ├── connman-conf.bb │ │ │ ├── connman-conf │ │ │ │ └── qemuall │ │ │ │ │ ├── wired-connection.service │ │ │ │ │ ├── wired-setup │ │ │ │ │ └── wired.config │ │ │ ├── connman-gnome │ │ │ │ ├── 0001-Port-to-Gtk3.patch │ │ │ │ ├── 0001-Removed-icon-from-connman-gnome-about-applet.patch │ │ │ │ ├── connman-gnome-fix-dbus-interface-name.patch │ │ │ │ ├── images │ │ │ │ │ ├── connman-signal-01.png │ │ │ │ │ ├── connman-signal-02.png │ │ │ │ │ ├── connman-signal-03.png │ │ │ │ │ ├── connman-signal-04.png │ │ │ │ │ └── connman-signal-05.png │ │ │ │ └── null_check_for_ipv4_config.patch │ │ │ ├── connman-gnome_0.7.bb │ │ │ ├── connman.inc │ │ │ ├── connman │ │ │ │ ├── 0001-connman.service-stop-systemd-resolved-when-we-use-co.patch │ │ │ │ ├── 0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch │ │ │ │ ├── 0002-resolve-musl-does-not-implement-res_ninit.patch │ │ │ │ ├── connman │ │ │ │ └── no-version-scripts.patch │ │ │ └── connman_1.39.bb │ │ ├── dhcpcd │ │ │ ├── dhcpcd_9.4.0.bb │ │ │ └── files │ │ │ │ ├── 0001-remove-INCLUDEDIR-to-prevent-build-issues.patch │ │ │ │ ├── dhcpcd.service │ │ │ │ └── dhcpcd@.service │ │ ├── inetutils │ │ │ ├── inetutils │ │ │ │ ├── 0001-ftpd-telnetd-Fix-multiple-definitions-of-errcatch-an.patch │ │ │ │ ├── fix-buffer-fortify-tfpt.patch │ │ │ │ ├── fix-disable-ipv6.patch │ │ │ │ ├── inetutils-1.8-0001-printf-parse-pull-in-features.h-for-__GLIBC__.patch │ │ │ │ ├── inetutils-1.8-0003-wchar.patch │ │ │ │ ├── inetutils-1.9-PATH_PROCNET_DEV.patch │ │ │ │ ├── inetutils-only-check-pam_appl.h-when-pam-enabled.patch │ │ │ │ ├── rexec.xinetd.inetutils │ │ │ │ ├── rlogin.xinetd.inetutils │ │ │ │ ├── rsh.xinetd.inetutils │ │ │ │ ├── telnet.xinetd.inetutils │ │ │ │ └── tftpd.xinetd.inetutils │ │ │ └── inetutils_2.0.bb │ │ ├── iproute2 │ │ │ ├── iproute2.inc │ │ │ ├── iproute2 │ │ │ │ └── 0001-libc-compat.h-add-musl-workaround.patch │ │ │ └── iproute2_5.11.0.bb │ │ ├── iw │ │ │ ├── iw │ │ │ │ ├── 0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch │ │ │ │ └── separate-objdir.patch │ │ │ └── iw_5.9.bb │ │ ├── kea │ │ │ ├── files │ │ │ │ ├── 0001-ax_cpp11.m4-Include-memory-header.patch │ │ │ │ ├── 0001-include-limits.h.patch │ │ │ │ ├── 0001-keactrl.in-create-var-lib-kea-and-var-run-kea-folder.patch │ │ │ │ ├── 0001-src-lib-log-logger_unittest_support.cc-do-not-write-.patch │ │ │ │ ├── fix-multilib-conflict.patch │ │ │ │ ├── fix_pid_keactrl.patch │ │ │ │ ├── kea-dhcp-ddns-server │ │ │ │ ├── kea-dhcp-ddns.service │ │ │ │ ├── kea-dhcp4-server │ │ │ │ ├── kea-dhcp4.service │ │ │ │ ├── kea-dhcp6-server │ │ │ │ └── kea-dhcp6.service │ │ │ └── kea_1.8.2.bb │ │ ├── libnss-mdns │ │ │ └── libnss-mdns_0.14.1.bb │ │ ├── libpcap │ │ │ └── libpcap_1.10.0.bb │ │ ├── libuv │ │ │ └── libuv_1.41.0.bb │ │ ├── mobile-broadband-provider-info │ │ │ └── mobile-broadband-provider-info_git.bb │ │ ├── neard │ │ │ ├── neard │ │ │ │ ├── 0001-Add-header-dependency-to-nciattach.o.patch │ │ │ │ ├── Makefile.am-do-not-ship-version.h.patch │ │ │ │ ├── Makefile.am-fix-parallel-issue.patch │ │ │ │ └── neard.in │ │ │ └── neard_0.16.bb │ │ ├── nfs-utils │ │ │ ├── nfs-utils │ │ │ │ ├── 0001-Makefile.am-fix-undefined-function-for-libnsm.a.patch │ │ │ │ ├── bugfix-adjust-statd-service-name.patch │ │ │ │ ├── clang-warnings.patch │ │ │ │ ├── nfs-mountd.service │ │ │ │ ├── nfs-server.service │ │ │ │ ├── nfs-statd.service │ │ │ │ ├── nfs-utils-debianize-start-statd.patch │ │ │ │ ├── nfs-utils.conf │ │ │ │ ├── nfscommon │ │ │ │ ├── nfsserver │ │ │ │ └── proc-fs-nfsd.mount │ │ │ └── nfs-utils_2.5.3.bb │ │ ├── ofono │ │ │ ├── ofono │ │ │ │ ├── 0001-mbim-add-an-optional-TEMP_FAILURE_RETRY-macro-copy.patch │ │ │ │ └── ofono │ │ │ └── ofono_1.31.bb │ │ ├── openssh │ │ │ ├── openssh │ │ │ │ ├── add-test-support-for-busybox.patch │ │ │ │ ├── fix-potential-signed-overflow-in-pointer-arithmatic.patch │ │ │ │ ├── init │ │ │ │ ├── run-ptest │ │ │ │ ├── ssh_config │ │ │ │ ├── sshd │ │ │ │ ├── sshd.socket │ │ │ │ ├── sshd@.service │ │ │ │ ├── sshd_check_keys │ │ │ │ ├── sshd_config │ │ │ │ ├── sshdgenkeys.service │ │ │ │ └── volatiles.99_sshd │ │ │ └── openssh_8.5p1.bb │ │ ├── openssl │ │ │ ├── files │ │ │ │ └── environment.d-openssl.sh │ │ │ ├── openssl │ │ │ │ ├── 0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch │ │ │ │ ├── 0001-skip-test_symbol_presence.patch │ │ │ │ ├── 0003-Add-support-for-io_pgetevents_time64-syscall.patch │ │ │ │ ├── 0004-Fixup-support-for-io_pgetevents_time64-syscall.patch │ │ │ │ ├── afalg.patch │ │ │ │ ├── reproducible.patch │ │ │ │ └── run-ptest │ │ │ └── openssl_1.1.1k.bb │ │ ├── ppp-dialin │ │ │ ├── files │ │ │ │ ├── host-peer │ │ │ │ └── ppp-dialin │ │ │ └── ppp-dialin_0.1.bb │ │ ├── ppp │ │ │ ├── ppp │ │ │ │ ├── 08setupdns │ │ │ │ ├── 92removedns │ │ │ │ ├── init │ │ │ │ ├── ip-down │ │ │ │ ├── ip-up │ │ │ │ ├── makefix.patch │ │ │ │ ├── pap │ │ │ │ ├── poff │ │ │ │ ├── pon │ │ │ │ ├── ppp@.service │ │ │ │ ├── ppp_on_boot │ │ │ │ └── provider │ │ │ └── ppp_2.4.9.bb │ │ ├── resolvconf │ │ │ ├── resolvconf │ │ │ │ ├── 99_resolvconf │ │ │ │ └── fix-path-for-busybox.patch │ │ │ └── resolvconf_1.87.bb │ │ ├── socat │ │ │ └── socat_1.7.4.1.bb │ │ ├── ssh-pregen-hostkeys │ │ │ ├── ssh-pregen-hostkeys │ │ │ │ ├── dropbear_rsa_host_key │ │ │ │ └── openssh │ │ │ │ │ ├── ssh_host_ecdsa_key │ │ │ │ │ ├── ssh_host_ecdsa_key.pub │ │ │ │ │ ├── ssh_host_ed25519_key │ │ │ │ │ ├── ssh_host_ed25519_key.pub │ │ │ │ │ ├── ssh_host_rsa_key │ │ │ │ │ └── ssh_host_rsa_key.pub │ │ │ └── ssh-pregen-hostkeys_1.0.bb │ │ └── wpa-supplicant │ │ │ ├── wpa-supplicant │ │ │ ├── 0001-AP-Silently-ignore-management-frame-from-unexpected-.patch │ │ │ ├── 0001-WPS-UPnP-Do-not-allow-event-subscriptions-with-URLs-.patch │ │ │ ├── 0001-replace-systemd-install-Alias-with-WantedBy.patch │ │ │ ├── 0002-WPS-UPnP-Fix-event-message-generation-using-a-long-U.patch │ │ │ ├── 0003-WPS-UPnP-Handle-HTTP-initiation-failures-for-events-.patch │ │ │ ├── 99_wpa_supplicant │ │ │ ├── CVE-2021-0326.patch │ │ │ ├── CVE-2021-27803.patch │ │ │ ├── defconfig │ │ │ ├── wpa-supplicant.sh │ │ │ ├── wpa_supplicant.conf │ │ │ └── wpa_supplicant.conf-sane │ │ │ └── wpa-supplicant_2.9.bb │ ├── recipes-core │ │ ├── base-files │ │ │ ├── base-files │ │ │ │ ├── fstab │ │ │ │ ├── host.conf │ │ │ │ ├── hosts │ │ │ │ ├── issue │ │ │ │ ├── issue.net │ │ │ │ ├── licenses │ │ │ │ │ └── GPL-2 │ │ │ │ ├── motd │ │ │ │ ├── nsswitch.conf │ │ │ │ ├── profile │ │ │ │ ├── rotation │ │ │ │ ├── share │ │ │ │ │ ├── dot.bashrc │ │ │ │ │ └── dot.profile │ │ │ │ └── shells │ │ │ └── base-files_3.0.14.bb │ │ ├── base-passwd │ │ │ ├── base-passwd │ │ │ │ ├── add_shutdown.patch │ │ │ │ ├── disable-docs.patch │ │ │ │ ├── input.patch │ │ │ │ ├── kvm.patch │ │ │ │ ├── nobash.patch │ │ │ │ └── noshadow.patch │ │ │ └── base-passwd_3.5.29.bb │ │ ├── busybox │ │ │ ├── busybox-inittab_1.33.0.bb │ │ │ ├── busybox.inc │ │ │ ├── busybox │ │ │ │ ├── 0001-Use-CC-when-linking-instead-of-LD-and-use-CFLAGS-and.patch │ │ │ │ ├── 0001-du-l-works-fix-to-use-145-instead-of-144.patch │ │ │ │ ├── 0001-sysctl-ignore-EIO-of-stable_secret-below-proc-sys-ne.patch │ │ │ │ ├── 0001-testsuite-check-uudecode-before-using-it.patch │ │ │ │ ├── 0001-testsuite-use-www.example.org-for-wget-test-cases.patch │ │ │ │ ├── busybox-cross-menuconfig.patch │ │ │ │ ├── busybox-udhcpc-no_deconfig.patch │ │ │ │ ├── defconfig │ │ │ │ ├── fail_on_no_media.patch │ │ │ │ ├── getopts.cfg │ │ │ │ ├── init.cfg │ │ │ │ ├── login-utilities.cfg │ │ │ │ ├── makefile-libbb-race.patch │ │ │ │ ├── mdev.cfg │ │ │ │ ├── mount-via-label.cfg │ │ │ │ ├── musl.cfg │ │ │ │ ├── pgrep.cfg │ │ │ │ ├── recognize_connmand.patch │ │ │ │ ├── resize.cfg │ │ │ │ ├── rev.cfg │ │ │ │ ├── sha1sum.cfg │ │ │ │ ├── sha256sum.cfg │ │ │ │ ├── syslog.cfg │ │ │ │ └── unicode.cfg │ │ │ ├── busybox_1.33.0.bb │ │ │ └── files │ │ │ │ ├── busybox-cron │ │ │ │ ├── busybox-httpd │ │ │ │ ├── busybox-klogd.service.in │ │ │ │ ├── busybox-syslog.default │ │ │ │ ├── busybox-syslog.service.in │ │ │ │ ├── busybox-udhcpd │ │ │ │ ├── default.script │ │ │ │ ├── find-touchscreen.sh │ │ │ │ ├── hwclock.sh │ │ │ │ ├── inetd │ │ │ │ ├── inetd.conf │ │ │ │ ├── inittab │ │ │ │ ├── mdev │ │ │ │ ├── mdev-mount.sh │ │ │ │ ├── mdev.conf │ │ │ │ ├── rcK │ │ │ │ ├── rcS │ │ │ │ ├── rcS.default │ │ │ │ ├── run-ptest │ │ │ │ ├── simple.script │ │ │ │ ├── syslog │ │ │ │ ├── syslog-startup.conf │ │ │ │ └── syslog.conf │ │ ├── coreutils │ │ │ ├── coreutils │ │ │ │ ├── 0001-local.mk-fix-cross-compiling-problem.patch │ │ │ │ ├── 0001-ls-restore-8.31-behavior-on-removed-directories.patch │ │ │ │ ├── 0001-uname-report-processor-and-hardware-correctly.patch │ │ │ │ ├── disable-ls-output-quoting.patch │ │ │ │ ├── fix-selinux-flask.patch │ │ │ │ ├── remove-usr-local-lib-from-m4.patch │ │ │ │ └── run-ptest │ │ │ └── coreutils_8.32.bb │ │ ├── dbus-wait │ │ │ └── dbus-wait_git.bb │ │ ├── dbus │ │ │ ├── dbus-glib │ │ │ │ ├── no-examples.patch │ │ │ │ └── test-install-makefile.patch │ │ │ ├── dbus-glib_0.110.bb │ │ │ ├── dbus-test_1.12.20.bb │ │ │ ├── dbus.inc │ │ │ ├── dbus │ │ │ │ ├── clear-guid_from_server-if-send_negotiate_unix_f.patch │ │ │ │ ├── dbus-1.init │ │ │ │ ├── python-config.patch │ │ │ │ ├── run-ptest │ │ │ │ └── tmpdir.patch │ │ │ └── dbus_1.12.20.bb │ │ ├── dropbear │ │ │ ├── dropbear.inc │ │ │ ├── dropbear │ │ │ │ ├── 0001-urandom-xauth-changes-to-options.h.patch │ │ │ │ ├── 0005-dropbear-enable-pam.patch │ │ │ │ ├── 0006-dropbear-configuration-file.patch │ │ │ │ ├── dropbear │ │ │ │ ├── dropbear-disable-weak-ciphers.patch │ │ │ │ ├── dropbear.default │ │ │ │ ├── dropbear.socket │ │ │ │ ├── dropbear@.service │ │ │ │ ├── dropbearkey.service │ │ │ │ └── init │ │ │ └── dropbear_2020.81.bb │ │ ├── ell │ │ │ ├── ell │ │ │ │ └── 0001-pem.c-do-not-use-rawmemchr.patch │ │ │ └── ell_0.38.bb │ │ ├── expat │ │ │ ├── expat │ │ │ │ ├── 0001-Add-output-of-tests-result.patch │ │ │ │ ├── libtool-tag.patch │ │ │ │ └── run-ptest │ │ │ └── expat_2.2.10.bb │ │ ├── fts │ │ │ └── fts_1.2.7.bb │ │ ├── gettext │ │ │ ├── gettext-0.21 │ │ │ │ ├── 0001-init-env.in-do-not-add-C-CXX-parameters.patch │ │ │ │ ├── 0001-msgmerge-29-Add-executable-file-mode-bits.patch │ │ │ │ ├── 0001-tests-autopoint-3-unset-MAKEFLAGS.patch │ │ │ │ ├── mingw.patch │ │ │ │ ├── parallel.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── serial-tests-config.patch │ │ │ │ └── use-pkgconfig.patch │ │ │ ├── gettext-minimal-0.21 │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.in.in │ │ │ │ ├── aclocal │ │ │ │ │ ├── gettext.m4 │ │ │ │ │ ├── host-cpu-c-abi.m4 │ │ │ │ │ ├── iconv.m4 │ │ │ │ │ ├── intlmacosx.m4 │ │ │ │ │ ├── lib-ld.m4 │ │ │ │ │ ├── lib-link.m4 │ │ │ │ │ ├── lib-prefix.m4 │ │ │ │ │ ├── nls.m4 │ │ │ │ │ ├── po.m4 │ │ │ │ │ └── progtest.m4 │ │ │ │ ├── config.rpath │ │ │ │ └── remove-potcdate.sin │ │ │ ├── gettext-minimal-native_0.21.bb │ │ │ └── gettext_0.21.bb │ │ ├── glib-2.0 │ │ │ ├── glib-2.0 │ │ │ │ ├── 0001-Do-not-ignore-return-value-of-write.patch │ │ │ │ ├── 0001-Do-not-write-bindir-into-pkg-config-files.patch │ │ │ │ ├── 0001-Fix-DATADIRNAME-on-uclibc-Linux.patch │ │ │ │ ├── 0001-Install-gio-querymodules-as-libexec_PROGRAM.patch │ │ │ │ ├── 0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch │ │ │ │ ├── 0001-Set-host_machine-correctly-when-building-with-mingw3.patch │ │ │ │ ├── 0001-gio-tests-codegen.py-bump-timeout-to-100-seconds.patch │ │ │ │ ├── 0001-gio-tests-resources.c-comment-out-a-build-host-only-.patch │ │ │ │ ├── 0001-gobject-Drop-use-of-volatile-from-get_type-macros.patch │ │ │ │ ├── 0001-meson-Run-atomics-test-on-clang-as-well.patch │ │ │ │ ├── 0001-tests-codegen.py-removing-unecessary-print-statement.patch │ │ │ │ ├── 0002-tests-Fix-non-atomic-access-to-a-shared-variable.patch │ │ │ │ ├── 0003-tests-Fix-non-atomic-access-to-a-shared-variable.patch │ │ │ │ ├── 0004-tests-Drop-unnecessary-volatile-qualifiers-from-test.patch │ │ │ │ ├── 0005-tests-Fix-non-atomic-access-to-some-shared-variables.patch │ │ │ │ ├── 0006-tests-Drop-unnecessary-volatile-qualifiers-from-test.patch │ │ │ │ ├── 0007-gdbusconnection-Drop-unnecessary-volatile-qualifiers.patch │ │ │ │ ├── 0008-gdbuserror-Drop-unnecessary-volatile-qualifiers-from.patch │ │ │ │ ├── 0009-gio-Drop-unnecessary-volatile-qualifiers-from-intern.patch │ │ │ │ ├── 0010-Do-not-hardcode-python-path-into-various-tools.patch │ │ │ │ ├── 0010-kqueue-Fix-unlocked-access-to-shared-variable.patch │ │ │ │ ├── 0011-tests-Drop-unnecessary-volatile-qualifiers-from-test.patch │ │ │ │ ├── 0012-tests-Fix-non-atomic-access-to-some-shared-variables.patch │ │ │ │ ├── 0013-gatomic-Drop-unnecessary-volatile-qualifiers-from-in.patch │ │ │ │ ├── 0014-gatomic-Drop-unnecessary-volatile-qualifiers-from-ma.patch │ │ │ │ ├── 0015-glib-Drop-unnecessary-volatile-qualifiers-from-inter.patch │ │ │ │ ├── 0016-gobject-Drop-unnecessary-volatile-qualifiers-from-in.patch │ │ │ │ ├── 0017-gmessages-Drop-unnecessary-volatile-qualifiers-from-.patch │ │ │ │ ├── 0018-gtypes-Drop-volatile-qualifier-from-gatomicrefcount.patch │ │ │ │ ├── 0019-gatomicarray-Drop-volatile-qualifier-from-GAtomicArr.patch │ │ │ │ ├── 0020-gobject-Drop-volatile-qualifier-from-GObject.ref_cou.patch │ │ │ │ ├── 0021-tests-Drop-unnecessary-volatile-qualifiers-from-test.patch │ │ │ │ ├── 0022-build-Drop-unnecessary-volatile-qualifiers-from-conf.patch │ │ │ │ ├── 0023-gdbusprivate-Avoid-a-warning-about-a-statement-with-.patch │ │ │ │ ├── 0024-tests-Add-comment-to-volatile-atomic-tests.patch │ │ │ │ ├── 0025-gthread-Use-g_atomic-primitives-correctly-in-destruc.patch │ │ │ │ ├── 0026-gtype-Fix-some-typos-in-comments.patch │ │ │ │ ├── 0027-gtype-Add-some-missing-atomic-accesses-to-init_state.patch │ │ │ │ ├── 0028-gresource-Fix-a-pointer-mismatch-with-an-atomic-load.patch │ │ │ │ ├── 0029-docs-Document-not-to-use-volatile-qualifiers.patch │ │ │ │ ├── Enable-more-tests-while-cross-compiling.patch │ │ │ │ ├── meson.cross.d │ │ │ │ │ ├── common │ │ │ │ │ ├── common-glibc │ │ │ │ │ ├── common-linux │ │ │ │ │ ├── common-mingw │ │ │ │ │ └── common-musl │ │ │ │ ├── relocate-modules.patch │ │ │ │ └── run-ptest │ │ │ ├── glib-2.0_2.66.7.bb │ │ │ └── glib.inc │ │ ├── glib-networking │ │ │ ├── glib-networking │ │ │ │ └── run-ptest │ │ │ └── glib-networking_2.66.0.bb │ │ ├── glibc │ │ │ ├── cross-localedef-native_2.33.bb │ │ │ ├── glibc-collateral.inc │ │ │ ├── glibc-common.inc │ │ │ ├── glibc-ld.inc │ │ │ ├── glibc-locale.inc │ │ │ ├── glibc-locale_2.33.bb │ │ │ ├── glibc-mtrace.inc │ │ │ ├── glibc-mtrace_2.33.bb │ │ │ ├── glibc-package.inc │ │ │ ├── glibc-scripts.inc │ │ │ ├── glibc-scripts_2.33.bb │ │ │ ├── glibc-testsuite_2.33.bb │ │ │ ├── glibc-version.inc │ │ │ ├── glibc.inc │ │ │ ├── glibc │ │ │ │ ├── 0001-localedef-Add-hardlink-resolver-from-util-linux.patch │ │ │ │ ├── 0001-nptl-Remove-private-futex-optimization-BZ-27304.patch │ │ │ │ ├── 0002-localedef-fix-ups-hardlink-to-make-it-compile.patch │ │ │ │ ├── 0003-nativesdk-glibc-Look-for-host-system-ld.so.cache-as-.patch │ │ │ │ ├── 0004-nativesdk-glibc-Fix-buffer-overrun-with-a-relocated-.patch │ │ │ │ ├── 0005-nativesdk-glibc-Raise-the-size-of-arrays-containing-.patch │ │ │ │ ├── 0006-nativesdk-glibc-Allow-64-bit-atomics-for-x86.patch │ │ │ │ ├── 0007-nativesdk-glibc-Make-relocatable-install-for-locales.patch │ │ │ │ ├── 0008-fsl-e500-e5500-e6500-603e-fsqrt-implementation.patch │ │ │ │ ├── 0009-ppc-sqrt-Fix-undefined-reference-to-__sqrt_finite.patch │ │ │ │ ├── 0010-__ieee754_sqrt-f-are-now-inline-functions-and-call-o.patch │ │ │ │ ├── 0011-Quote-from-bug-1443-which-explains-what-the-patch-do.patch │ │ │ │ ├── 0012-eglibc-run-libm-err-tab.pl-with-specific-dirs-in-S.patch │ │ │ │ ├── 0013-__ieee754_sqrt-f-are-now-inline-functions-and-call-o.patch │ │ │ │ ├── 0014-sysdeps-gnu-configure.ac-handle-correctly-libc_cv_ro.patch │ │ │ │ ├── 0015-yes-within-the-path-sets-wrong-config-variables.patch │ │ │ │ ├── 0016-timezone-re-written-tzselect-as-posix-sh.patch │ │ │ │ ├── 0017-Remove-bash-dependency-for-nscd-init-script.patch │ │ │ │ ├── 0018-eglibc-Cross-building-and-testing-instructions.patch │ │ │ │ ├── 0019-eglibc-Help-bootstrap-cross-toolchain.patch │ │ │ │ ├── 0020-eglibc-Resolve-__fpscr_values-on-SH4.patch │ │ │ │ ├── 0021-eglibc-Forward-port-cross-locale-generation-support.patch │ │ │ │ ├── 0022-Define-DUMMY_LOCALE_T-if-not-defined.patch │ │ │ │ ├── 0023-localedef-add-to-archive-uses-a-hard-coded-locale-pa.patch │ │ │ │ ├── 0024-elf-dl-deps.c-Make-_dl_build_local_scope-breadth-fir.patch │ │ │ │ ├── 0025-intl-Emit-no-lines-in-bison-generated-files.patch │ │ │ │ ├── 0027-locale-prevent-maybe-uninitialized-errors-with-Os-BZ.patch │ │ │ │ ├── 0028-readlib-Add-OECORE_KNOWN_INTERPRETER_NAMES-to-known-.patch │ │ │ │ ├── 0029-wordsize.h-Unify-the-header-between-arm-and-aarch64.patch │ │ │ │ ├── 0030-powerpc-Do-not-ask-compiler-for-finding-arch.patch │ │ │ │ ├── 0031-x86-Require-full-ISA-support-for-x86-64-level-marker.patch │ │ │ │ ├── 0032-string-Work-around-GCC-PR-98512-in-rawmemchr.patch │ │ │ │ ├── 0033-x86-Handle-_SC_LEVEL1_ICACHE_LINESIZE-BZ-27444.patch │ │ │ │ ├── CVE-2021-27645.patch │ │ │ │ ├── check-test-wrapper │ │ │ │ ├── etc │ │ │ │ │ └── ld.so.conf │ │ │ │ ├── faccessat2-perm.patch │ │ │ │ ├── generate-supported.mk │ │ │ │ └── makedbs.sh │ │ │ ├── glibc_2.33.bb │ │ │ ├── ldconfig-native-2.12.1 │ │ │ │ ├── 32and64bit.patch │ │ │ │ ├── README │ │ │ │ ├── add-64-bit-flag-for-ELF64-entries.patch │ │ │ │ ├── endian-ness_handling.patch │ │ │ │ ├── endian-ness_handling_fix.patch │ │ │ │ ├── endianess-header.patch │ │ │ │ ├── flag_fix.patch │ │ │ │ ├── ldconfig-default-to-all-multilib-dirs.patch │ │ │ │ ├── ldconfig-native-2.12.1.tar.bz2 │ │ │ │ ├── ldconfig.patch │ │ │ │ ├── ldconfig_aux-cache_path_fix.patch │ │ │ │ └── no-aux-cache.patch │ │ │ └── ldconfig-native_2.12.1.bb │ │ ├── ifupdown │ │ │ ├── files │ │ │ │ ├── 0001-Define-FNM_EXTMATCH-for-musl.patch │ │ │ │ ├── 0001-Makefile-do-not-use-dpkg-for-determining-OS-type.patch │ │ │ │ ├── 99_network │ │ │ │ ├── defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch │ │ │ │ ├── run-ptest │ │ │ │ └── tweak-ptest-script.patch │ │ │ └── ifupdown_0.8.36.bb │ │ ├── images │ │ │ ├── build-appliance-image │ │ │ │ ├── README_VirtualBox_Guest_Additions.txt │ │ │ │ ├── README_VirtualBox_Toaster.txt │ │ │ │ ├── Yocto_Build_Appliance.vmx │ │ │ │ └── Yocto_Build_Appliance.vmxf │ │ │ ├── build-appliance-image_15.0.0.bb │ │ │ ├── core-image-base.bb │ │ │ ├── core-image-minimal-dev.bb │ │ │ ├── core-image-minimal-initramfs.bb │ │ │ ├── core-image-minimal-mtdutils.bb │ │ │ ├── core-image-minimal.bb │ │ │ └── core-image-tiny-initramfs.bb │ │ ├── init-ifupdown │ │ │ ├── init-ifupdown-1.0 │ │ │ │ ├── copyright │ │ │ │ ├── init │ │ │ │ ├── interfaces │ │ │ │ ├── nfsroot │ │ │ │ └── qemuall │ │ │ │ │ └── interfaces │ │ │ └── init-ifupdown_1.0.bb │ │ ├── initrdscripts │ │ │ ├── files │ │ │ │ ├── init-boot.sh │ │ │ │ ├── init-install-efi-testfs.sh │ │ │ │ ├── init-install-efi.sh │ │ │ │ ├── init-install-testfs.sh │ │ │ │ ├── init-install.sh │ │ │ │ └── init-live.sh │ │ │ ├── initramfs-boot_1.0.bb │ │ │ ├── initramfs-framework │ │ │ │ ├── debug │ │ │ │ ├── e2fs │ │ │ │ ├── exec │ │ │ │ ├── finish │ │ │ │ ├── init │ │ │ │ ├── lvm │ │ │ │ ├── mdev │ │ │ │ ├── nfsrootfs │ │ │ │ ├── rootfs │ │ │ │ ├── setup-live │ │ │ │ └── udev │ │ │ ├── initramfs-framework_1.0.bb │ │ │ ├── initramfs-live-boot-tiny_1.0.bb │ │ │ ├── initramfs-live-boot_1.0.bb │ │ │ ├── initramfs-live-install-efi-testfs_1.0.bb │ │ │ ├── initramfs-live-install-efi_1.0.bb │ │ │ ├── initramfs-live-install-testfs_1.0.bb │ │ │ ├── initramfs-live-install_1.0.bb │ │ │ ├── initramfs-module-install-efi_1.0.bb │ │ │ ├── initramfs-module-install_1.0.bb │ │ │ └── initramfs-module-setup-live_1.0.bb │ │ ├── initscripts │ │ │ ├── init-system-helpers_1.60.bb │ │ │ ├── initscripts-1.0 │ │ │ │ ├── GPLv2.patch │ │ │ │ ├── alignment.sh │ │ │ │ ├── banner.sh │ │ │ │ ├── bootmisc.sh │ │ │ │ ├── checkfs.sh │ │ │ │ ├── checkroot.sh │ │ │ │ ├── devpts │ │ │ │ ├── devpts.sh │ │ │ │ ├── dmesg.sh │ │ │ │ ├── functions │ │ │ │ ├── halt │ │ │ │ ├── hostname.sh │ │ │ │ ├── logrotate-dmesg.conf │ │ │ │ ├── mountall.sh │ │ │ │ ├── mountnfs.sh │ │ │ │ ├── populate-volatile.sh │ │ │ │ ├── read-only-rootfs-hook.sh │ │ │ │ ├── reboot │ │ │ │ ├── rmnologin.sh │ │ │ │ ├── save-rtc.sh │ │ │ │ ├── sendsigs │ │ │ │ ├── single │ │ │ │ ├── sushell │ │ │ │ ├── sysfs.sh │ │ │ │ ├── umountfs │ │ │ │ ├── umountnfs.sh │ │ │ │ ├── urandom │ │ │ │ └── volatiles │ │ │ └── initscripts_1.0.bb │ │ ├── kbd │ │ │ └── kbd_2.4.0.bb │ │ ├── libcgroup │ │ │ ├── libcgroup │ │ │ │ ├── CVE-2018-14348.patch │ │ │ │ └── musl-decls-compat.patch │ │ │ └── libcgroup_0.41.bb │ │ ├── libxcrypt │ │ │ ├── files │ │ │ │ └── 0001-configure.ac-do-not-use-compute-symver-floor.patch │ │ │ ├── libxcrypt-compat_4.4.18.bb │ │ │ ├── libxcrypt.inc │ │ │ └── libxcrypt_4.4.18.bb │ │ ├── libxml │ │ │ ├── libxml2 │ │ │ │ ├── 0001-Make-ptest-run-the-python-tests-if-python-is-enabled.patch │ │ │ │ ├── CVE-2019-20388.patch │ │ │ │ ├── CVE-2020-24977.patch │ │ │ │ ├── CVE-2020-7595.patch │ │ │ │ ├── fix-execution-of-ptests.patch │ │ │ │ ├── fix-python39.patch │ │ │ │ ├── libxml-64bit.patch │ │ │ │ ├── libxml-m4-use-pkgconfig.patch │ │ │ │ ├── python-sitepackages-dir.patch │ │ │ │ ├── run-ptest │ │ │ │ └── runtest.patch │ │ │ └── libxml2_2.9.10.bb │ │ ├── meta │ │ │ ├── build-sysroots.bb │ │ │ ├── buildtools-extended-tarball.bb │ │ │ ├── buildtools-tarball.bb │ │ │ ├── cve-update-db-native.bb │ │ │ ├── dummy-sdk-package.inc │ │ │ ├── meta-environment-extsdk.bb │ │ │ ├── meta-environment.bb │ │ │ ├── meta-extsdk-toolchain.bb │ │ │ ├── meta-go-toolchain.bb │ │ │ ├── meta-ide-support.bb │ │ │ ├── meta-toolchain.bb │ │ │ ├── meta-world-pkgdata.bb │ │ │ ├── nativesdk-buildtools-perl-dummy.bb │ │ │ ├── nativesdk-sdk-provides-dummy.bb │ │ │ ├── package-index.bb │ │ │ ├── signing-keys.bb │ │ │ ├── target-sdk-provides-dummy.bb │ │ │ ├── testexport-tarball.bb │ │ │ ├── uninative-tarball.bb │ │ │ └── wic-tools.bb │ │ ├── musl │ │ │ ├── bsd-headers.bb │ │ │ ├── bsd-headers │ │ │ │ ├── sys-cdefs.h │ │ │ │ ├── sys-queue.h │ │ │ │ └── sys-tree.h │ │ │ ├── libssp-nonshared.bb │ │ │ ├── libssp-nonshared │ │ │ │ └── ssp-local.c │ │ │ ├── libucontext_git.bb │ │ │ ├── musl-obstack.bb │ │ │ ├── musl-utils.bb │ │ │ ├── musl.inc │ │ │ ├── musl │ │ │ │ ├── 0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch │ │ │ │ └── 0002-ldso-Use-syslibdir-and-libdir-as-default-pathes-to-l.patch │ │ │ └── musl_git.bb │ │ ├── ncurses │ │ │ ├── files │ │ │ │ ├── 0001-tic-hang.patch │ │ │ │ ├── 0002-configure-reproducible.patch │ │ │ │ └── 0003-gen-pkgconfig.in-Do-not-include-LDFLAGS-in-generated.patch │ │ │ ├── ncurses.inc │ │ │ ├── ncurses_6.2.bb │ │ │ └── site_config │ │ │ │ └── headers │ │ ├── netbase │ │ │ └── netbase_6.2.bb │ │ ├── newlib │ │ │ ├── libgloss │ │ │ │ ├── fix-rs6000-crt0.patch │ │ │ │ └── fix_makefile_include_arm_h.patch │ │ │ ├── libgloss_4.1.0.bb │ │ │ ├── newlib.inc │ │ │ └── newlib_4.1.0.bb │ │ ├── os-release │ │ │ └── os-release.bb │ │ ├── ovmf │ │ │ ├── ovmf-shell-image.bb │ │ │ ├── ovmf │ │ │ │ ├── 0001-ovmf-update-path-to-native-BaseTools.patch │ │ │ │ ├── 0002-BaseTools-makefile-adjust-to-build-in-under-bitbake.patch │ │ │ │ ├── 0004-ovmf-Update-to-latest.patch │ │ │ │ ├── ovmf-shell-image.wks │ │ │ │ └── zero.patch │ │ │ └── ovmf_git.bb │ │ ├── packagegroups │ │ │ ├── nativesdk-packagegroup-sdk-host.bb │ │ │ ├── packagegroup-base.bb │ │ │ ├── packagegroup-core-boot.bb │ │ │ ├── packagegroup-core-buildessential.bb │ │ │ ├── packagegroup-core-eclipse-debug.bb │ │ │ ├── packagegroup-core-nfs.bb │ │ │ ├── packagegroup-core-sdk.bb │ │ │ ├── packagegroup-core-ssh-dropbear.bb │ │ │ ├── packagegroup-core-ssh-openssh.bb │ │ │ ├── packagegroup-core-standalone-sdk-target.bb │ │ │ ├── packagegroup-core-tools-debug.bb │ │ │ ├── packagegroup-core-tools-profile.bb │ │ │ ├── packagegroup-core-tools-testapps.bb │ │ │ ├── packagegroup-cross-canadian.bb │ │ │ ├── packagegroup-go-cross-canadian.bb │ │ │ ├── packagegroup-go-sdk-target.bb │ │ │ └── packagegroup-self-hosted.bb │ │ ├── psplash │ │ │ ├── files │ │ │ │ ├── psplash-init │ │ │ │ ├── psplash-poky-img.h │ │ │ │ ├── psplash-start.service │ │ │ │ └── psplash-systemd.service │ │ │ └── psplash_git.bb │ │ ├── readline │ │ │ ├── files │ │ │ │ └── inputrc │ │ │ ├── readline-8.1 │ │ │ │ ├── configure-fix.patch │ │ │ │ ├── norpath.patch │ │ │ │ └── rl-native.map │ │ │ ├── readline.inc │ │ │ └── readline_8.1.bb │ │ ├── sysfsutils │ │ │ ├── sysfsutils-2.1.0 │ │ │ │ ├── obsolete_automake_macros.patch │ │ │ │ ├── separatebuild.patch │ │ │ │ └── sysfsutils-2.0.0-class-dup.patch │ │ │ └── sysfsutils_2.1.0.bb │ │ ├── systemd │ │ │ ├── systemd-boot_247.4.bb │ │ │ ├── systemd-bootconf_1.00.bb │ │ │ ├── systemd-compat-units.bb │ │ │ ├── systemd-conf │ │ │ │ ├── journald.conf │ │ │ │ ├── logind.conf │ │ │ │ ├── system.conf │ │ │ │ ├── system.conf-qemuall │ │ │ │ └── wired.network │ │ │ ├── systemd-conf_247.3.bb │ │ │ ├── systemd-machine-units_1.0.bb │ │ │ ├── systemd-serialgetty.bb │ │ │ ├── systemd-serialgetty │ │ │ │ └── serial-getty@.service │ │ │ ├── systemd-systemctl-native.bb │ │ │ ├── systemd-systemctl │ │ │ │ └── systemctl │ │ │ ├── systemd.inc │ │ │ ├── systemd │ │ │ │ ├── 00-create-volatile.conf │ │ │ │ ├── 00-hostnamed-network-user.conf │ │ │ │ ├── 0001-analyze-resolve-executable-path-if-it-is-relative.patch │ │ │ │ ├── 0001-binfmt-Don-t-install-dependency-links-at-install-tim.patch │ │ │ │ ├── 0001-logind-Restore-chvt-as-non-root-user-without-polkit.patch │ │ │ │ ├── 0001-systemd.pc.in-use-ROOTPREFIX-without-suffixed-slash.patch │ │ │ │ ├── 0002-don-t-use-glibc-specific-qsort_r.patch │ │ │ │ ├── 0003-implment-systemd-sysv-install-for-OE.patch │ │ │ │ ├── 0003-missing_type.h-add-__compare_fn_t-and-comparison_fn_.patch │ │ │ │ ├── 0004-add-fallback-parse_printf_format-implementation.patch │ │ │ │ ├── 0005-src-basic-missing.h-check-for-missing-strndupa.patch │ │ │ │ ├── 0006-Include-netinet-if_ether.h.patch │ │ │ │ ├── 0007-don-t-fail-if-GLOB_BRACE-and-GLOB_ALTDIRFUNC-is-not-.patch │ │ │ │ ├── 0008-add-missing-FTW_-macros-for-musl.patch │ │ │ │ ├── 0009-fix-missing-of-__register_atfork-for-non-glibc-build.patch │ │ │ │ ├── 0010-Use-uintmax_t-for-handling-rlim_t.patch │ │ │ │ ├── 0011-test-sizeof.c-Disable-tests-for-missing-typedefs-in-.patch │ │ │ │ ├── 0012-don-t-pass-AT_SYMLINK_NOFOLLOW-flag-to-faccessat.patch │ │ │ │ ├── 0013-Define-glibc-compatible-basename-for-non-glibc-syste.patch │ │ │ │ ├── 0014-Do-not-disable-buffering-when-writing-to-oom_score_a.patch │ │ │ │ ├── 0015-distinguish-XSI-compliant-strerror_r-from-GNU-specif.patch │ │ │ │ ├── 0016-Hide-__start_BUS_ERROR_MAP-and-__stop_BUS_ERROR_MAP.patch │ │ │ │ ├── 0017-missing_type.h-add-__compar_d_fn_t-definition.patch │ │ │ │ ├── 0018-avoid-redefinition-of-prctl_mm_map-structure.patch │ │ │ │ ├── 0019-Handle-missing-LOCK_EX.patch │ │ │ │ ├── 0020-Fix-incompatible-pointer-type-struct-sockaddr_un.patch │ │ │ │ ├── 0021-test-json.c-define-M_PIl.patch │ │ │ │ ├── 0022-do-not-disable-buffer-in-writing-files.patch │ │ │ │ ├── 0025-Handle-__cpu_mask-usage.patch │ │ │ │ ├── 0026-Handle-missing-gshadow.patch │ │ │ │ ├── 0027-proc-dont-trigger-mount-error-with-invalid-options-o.patch │ │ │ │ ├── 99-default.preset │ │ │ │ ├── init │ │ │ │ ├── org.freedesktop.hostname1_no_polkit.conf │ │ │ │ ├── systemd-pager.sh │ │ │ │ └── touchscreen.rules │ │ │ └── systemd_247.4.bb │ │ ├── sysvinit │ │ │ ├── sysvinit-inittab │ │ │ │ ├── inittab │ │ │ │ └── start_getty │ │ │ ├── sysvinit-inittab_2.88dsf.bb │ │ │ ├── sysvinit │ │ │ │ ├── 0001-include-sys-sysmacros.h-for-major-minor-defines-in-g.patch │ │ │ │ ├── 01_bootlogd │ │ │ │ ├── bootlogd.init │ │ │ │ ├── crypt-lib.patch │ │ │ │ ├── install.patch │ │ │ │ ├── pidof-add-m-option.patch │ │ │ │ ├── rc │ │ │ │ ├── rcS │ │ │ │ ├── rcS-default │ │ │ │ └── realpath.patch │ │ │ └── sysvinit_2.99.bb │ │ ├── udev │ │ │ ├── eudev │ │ │ │ ├── 0014-Revert-rules-remove-firmware-loading-rules.patch │ │ │ │ ├── Revert-udev-remove-userspace-firmware-loading-suppor.patch │ │ │ │ ├── devfs-udev.rules │ │ │ │ ├── init │ │ │ │ ├── links.conf │ │ │ │ ├── local.rules │ │ │ │ ├── permissions.rules │ │ │ │ ├── run.rules │ │ │ │ └── udev.rules │ │ │ ├── eudev_3.2.10.bb │ │ │ ├── udev-extraconf │ │ │ │ ├── automount.rules │ │ │ │ ├── autonet.rules │ │ │ │ ├── localextra.rules │ │ │ │ ├── mount.blacklist │ │ │ │ ├── mount.sh │ │ │ │ └── network.sh │ │ │ └── udev-extraconf_1.1.bb │ │ ├── update-rc.d │ │ │ └── update-rc.d_0.8.bb │ │ ├── util-linux │ │ │ ├── util-linux-libuuid_2.36.2.bb │ │ │ ├── util-linux.inc │ │ │ ├── util-linux │ │ │ │ ├── Automake-use-EXTRA_LTLIBRARIES-instead-of-noinst_LTL.patch │ │ │ │ ├── avoid_parallel_tests.patch │ │ │ │ ├── configure-sbindir.patch │ │ │ │ ├── display_testname_for_subtest.patch │ │ │ │ ├── ptest.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── runuser-l.pamd │ │ │ │ └── runuser.pamd │ │ │ └── util-linux_2.36.2.bb │ │ ├── volatile-binds │ │ │ ├── files │ │ │ │ ├── COPYING.MIT │ │ │ │ ├── mount-copybind │ │ │ │ └── volatile-binds.service.in │ │ │ └── volatile-binds.bb │ │ └── zlib │ │ │ ├── site_config │ │ │ └── headers │ │ │ ├── zlib │ │ │ ├── ldflags-tests.patch │ │ │ └── run-ptest │ │ │ └── zlib_1.2.11.bb │ ├── recipes-devtools │ │ ├── apt │ │ │ ├── apt │ │ │ │ ├── 0001-CMakeLists.txt-avoid-changing-install-paths-based-on.patch │ │ │ │ ├── 0001-Disable-documentation-directory-altogether.patch │ │ │ │ ├── 0001-Do-not-init-tables-from-dpkg-configuration.patch │ │ │ │ ├── 0001-Fix-musl-build.patch │ │ │ │ ├── 0001-Revert-always-run-dpkg-configure-a-at-the-end-of-our.patch │ │ │ │ ├── 0001-cmake-Do-not-build-po-files.patch │ │ │ │ ├── 0001-srvrec-Keep-support-for-older-resolver.patch │ │ │ │ └── triehash │ │ │ └── apt_2.2.2.bb │ │ ├── autoconf-archive │ │ │ └── autoconf-archive_2019.01.06.bb │ │ ├── autoconf │ │ │ ├── autoconf │ │ │ │ ├── autoreconf-exclude.patch │ │ │ │ ├── autotest-automake-result-format.patch │ │ │ │ ├── man-host-perl.patch │ │ │ │ ├── no-man.patch │ │ │ │ ├── preferbash.patch │ │ │ │ ├── program_prefix.patch │ │ │ │ └── remove-usr-local-lib-from-m4.patch │ │ │ └── autoconf_2.71.bb │ │ ├── automake │ │ │ ├── automake.inc │ │ │ ├── automake │ │ │ │ ├── 0001-automake-Add-default-libtool_tag-to-cppasm.patch │ │ │ │ ├── 0001-build-fix-race-in-parallel-builds.patch │ │ │ │ ├── buildtest.patch │ │ │ │ ├── new_rt_path_for_test-driver.patch │ │ │ │ ├── performance.patch │ │ │ │ └── python-libdir.patch │ │ │ └── automake_1.16.3.bb │ │ ├── binutils │ │ │ ├── binutils-2.36.inc │ │ │ ├── binutils-cross-canadian.inc │ │ │ ├── binutils-cross-canadian_2.36.bb │ │ │ ├── binutils-cross-testsuite_2.36.bb │ │ │ ├── binutils-cross.inc │ │ │ ├── binutils-cross_2.36.bb │ │ │ ├── binutils-crosssdk_2.36.bb │ │ │ ├── binutils.inc │ │ │ ├── binutils │ │ │ │ ├── 0001-binutils-crosssdk-Generate-relocatable-SDKs.patch │ │ │ │ ├── 0002-binutils-cross-Do-not-generate-linker-script-directo.patch │ │ │ │ ├── 0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch │ │ │ │ ├── 0004-configure-widen-the-regexp-for-SH-architectures.patch │ │ │ │ ├── 0005-Point-scripts-location-to-libdir.patch │ │ │ │ ├── 0006-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch │ │ │ │ ├── 0007-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch │ │ │ │ ├── 0008-warn-for-uses-of-system-directories-when-cross-linki.patch │ │ │ │ ├── 0009-Change-default-emulation-for-mips64-linux.patch │ │ │ │ ├── 0010-Add-support-for-Netlogic-XLP.patch │ │ │ │ ├── 0011-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch │ │ │ │ ├── 0012-Detect-64-bit-MIPS-targets.patch │ │ │ │ ├── 0013-Use-libtool-2.4.patch │ │ │ │ ├── 0014-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch │ │ │ │ ├── 0015-sync-with-OE-libtool-changes.patch │ │ │ │ └── 0016-Check-for-clang-before-checking-gcc-version.patch │ │ │ └── binutils_2.36.bb │ │ ├── bison │ │ │ ├── bison │ │ │ │ ├── 0001-Use-mapped-file-name-for-symbols.patch │ │ │ │ └── add-with-bisonlocaledir.patch │ │ │ └── bison_3.7.5.bb │ │ ├── bootchart2 │ │ │ ├── bootchart2 │ │ │ │ ├── 0001-bootchart2-support-usrmerge.patch │ │ │ │ ├── 0001-collector-Allocate-space-on-heap-for-chunks.patch │ │ │ │ └── bootchartd_stop.sh │ │ │ └── bootchart2_0.14.9.bb │ │ ├── btrfs-tools │ │ │ ├── btrfs-tools │ │ │ │ └── 0001-Add-a-possibility-to-specify-where-python-modules-ar.patch │ │ │ └── btrfs-tools_5.10.1.bb │ │ ├── ccache │ │ │ └── ccache_4.2.bb │ │ ├── cdrtools │ │ │ ├── cdrtools-native_3.01.bb │ │ │ └── cdrtools │ │ │ │ └── 0001-Don-t-set-uid-gid-during-install.patch │ │ ├── chrpath │ │ │ ├── chrpath │ │ │ │ └── standarddoc.patch │ │ │ └── chrpath_0.16.bb │ │ ├── cmake │ │ │ ├── cmake-native_3.19.5.bb │ │ │ ├── cmake.inc │ │ │ ├── cmake │ │ │ │ ├── 0001-CMakeDetermineSystem-use-oe-environment-vars-to-load.patch │ │ │ │ ├── 0002-cmake-Prevent-the-detection-of-Qt5.patch │ │ │ │ ├── 0003-cmake-support-OpenEmbedded-Qt4-tool-binary-names.patch │ │ │ │ ├── 0004-Fail-silently-if-system-Qt-installation-is-broken.patch │ │ │ │ ├── 0005-Disable-use-of-ext2fs-ext2_fs.h-by-cmake-s-internal-.patch │ │ │ │ ├── OEToolchainConfig.cmake │ │ │ │ └── environment.d-cmake.sh │ │ │ └── cmake_3.19.5.bb │ │ ├── createrepo-c │ │ │ ├── createrepo-c │ │ │ │ └── 0001-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch │ │ │ └── createrepo-c_0.17.0.bb │ │ ├── dejagnu │ │ │ └── dejagnu_1.6.2.bb │ │ ├── desktop-file-utils │ │ │ └── desktop-file-utils_0.26.bb │ │ ├── devel-config │ │ │ ├── distcc-config.bb │ │ │ ├── distcc-config │ │ │ │ └── distcc.sh │ │ │ ├── nfs-export-root.bb │ │ │ └── nfs-export-root │ │ │ │ └── exports │ │ ├── diffstat │ │ │ ├── diffstat │ │ │ │ ├── 0001-aclocal.m4-add-missing-header-defines.patch │ │ │ │ ├── avoid-check-user-break-cc.patch │ │ │ │ └── run-ptest │ │ │ └── diffstat_1.64.bb │ │ ├── distcc │ │ │ ├── distcc_3.3.5.bb │ │ │ └── files │ │ │ │ ├── default │ │ │ │ ├── distcc │ │ │ │ └── distcc.service │ │ ├── dmidecode │ │ │ ├── dmidecode │ │ │ │ └── 0001-Committing-changes-from-do_unpack_extra.patch │ │ │ └── dmidecode_3.3.bb │ │ ├── dnf │ │ │ ├── dnf │ │ │ │ ├── 0001-Corretly-install-tmpfiles.d-configuration.patch │ │ │ │ ├── 0001-Do-not-hardcode-etc-and-systemd-unit-directories.patch │ │ │ │ ├── 0001-dnf-write-the-log-lock-to-root.patch │ │ │ │ ├── 0001-set-python-path-for-completion_helper.patch │ │ │ │ ├── 0005-Do-not-prepend-installroot-to-logdir.patch │ │ │ │ ├── 0029-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch │ │ │ │ └── 0030-Run-python-scripts-using-env.patch │ │ │ └── dnf_4.6.0.bb │ │ ├── docbook-xml │ │ │ ├── docbook-xml-dtd4 │ │ │ │ ├── LICENSE-OASIS │ │ │ │ └── docbook-xml-update-catalog.xml.patch │ │ │ ├── docbook-xml-dtd4_4.5.bb │ │ │ ├── docbook-xsl-stylesheets │ │ │ │ └── docbook-xsl-stylesheets-no-bashism-in-docbook-xsl-up.patch │ │ │ └── docbook-xsl-stylesheets_1.79.1.bb │ │ ├── dosfstools │ │ │ └── dosfstools_4.2.bb │ │ ├── dpkg │ │ │ ├── dpkg.inc │ │ │ ├── dpkg │ │ │ │ ├── 0001-Add-support-for-riscv32-CPU.patch │ │ │ │ ├── 0001-build.c-ignore-return-of-1-from-tar-cf.patch │ │ │ │ ├── 0001-dpkg-Support-muslx32-build.patch │ │ │ │ ├── 0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch │ │ │ │ ├── 0003-Our-pre-postinsts-expect-D-to-be-set-when-running-in.patch │ │ │ │ ├── 0004-The-lutimes-function-doesn-t-work-properly-for-all-s.patch │ │ │ │ ├── 0006-add-musleabi-to-known-target-tripets.patch │ │ │ │ ├── 0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch │ │ │ │ ├── 0013-scripts-dpkg-fsys-usrunmess.pl-correct-shebang.patch │ │ │ │ ├── add_armeb_triplet_entry.patch │ │ │ │ ├── arch_pm.patch │ │ │ │ ├── noman.patch │ │ │ │ ├── pager.patch │ │ │ │ └── remove-tar-no-timestamp.patch │ │ │ └── dpkg_1.20.7.1.bb │ │ ├── dwarfsrcfiles │ │ │ ├── dwarfsrcfiles.bb │ │ │ └── files │ │ │ │ └── dwarfsrcfiles.c │ │ ├── e2fsprogs │ │ │ ├── e2fsprogs.inc │ │ │ ├── e2fsprogs │ │ │ │ ├── e2fsprogs-fix-missing-check-for-permission-denied.patch │ │ │ │ ├── mkdir_p.patch │ │ │ │ ├── ptest.patch │ │ │ │ ├── quiet-debugfs.patch │ │ │ │ ├── remove.ldconfig.call.patch │ │ │ │ └── run-ptest │ │ │ └── e2fsprogs_1.46.1.bb │ │ ├── elfutils │ │ │ ├── elfutils_0.183.bb │ │ │ └── files │ │ │ │ ├── 0001-add-support-for-ipkg-to-debuginfod.cxx.patch │ │ │ │ ├── 0001-dso-link-change.patch │ │ │ │ ├── 0001-libasm-may-link-with-libbz2-if-found.patch │ │ │ │ ├── 0001-libelf-elf_end.c-check-data_list.data.d.d_buf-before.patch │ │ │ │ ├── 0001-skip-the-test-when-gcc-not-deployed.patch │ │ │ │ ├── 0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch │ │ │ │ ├── 0002-Fix-elf_cvt_gunhash-if-dest-and-src-are-same.patch │ │ │ │ ├── 0002-musl-libs.patch │ │ │ │ ├── 0003-fixheadercheck.patch │ │ │ │ ├── 0003-musl-utils.patch │ │ │ │ ├── 0004-Fix-error-on-musl.patch │ │ │ │ ├── 0006-Fix-build-on-aarch64-musl.patch │ │ │ │ ├── 0015-config-eu.am-do-not-use-Werror.patch │ │ │ │ ├── ptest.patch │ │ │ │ └── run-ptest │ │ ├── expect │ │ │ ├── expect │ │ │ │ ├── 0001-Resolve-string-formatting-issues.patch │ │ │ │ ├── 0001-configure.in.patch │ │ │ │ ├── 0001-exp_main_sub.c-Use-PATH_MAX-for-path.patch │ │ │ │ ├── 0001-expect-Fix-segfaults-if-Tcl-is-built-with-stubs-and-.patch │ │ │ │ ├── 0001-expect-install-scripts-without-using-the-fixline1-tc.patch │ │ │ │ ├── 0002-tcl.m4.patch │ │ │ │ └── 01-example-shebang.patch │ │ │ └── expect_5.45.4.bb │ │ ├── fdisk │ │ │ ├── gptfdisk │ │ │ │ └── 0001-gptcurses-correctly-include-curses.h.patch │ │ │ └── gptfdisk_1.0.7.bb │ │ ├── file │ │ │ ├── file_5.39.bb │ │ │ └── files │ │ │ │ └── 0001-src-compress.c-correct-header-define-for-xz-lzma.patch │ │ ├── flex │ │ │ ├── flex │ │ │ │ ├── 0001-Emit-no-line-directives-if-gen_line_dirs-is-false.patch │ │ │ │ ├── 0001-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch │ │ │ │ ├── 0001-tests-add-a-target-for-building-tests-without-runnin.patch │ │ │ │ ├── check-funcs.patch │ │ │ │ ├── disable-tests.patch │ │ │ │ └── run-ptest │ │ │ └── flex_2.6.4.bb │ │ ├── gcc │ │ │ ├── gcc-10.2.inc │ │ │ ├── gcc-common.inc │ │ │ ├── gcc-configure-common.inc │ │ │ ├── gcc-cross-canadian.inc │ │ │ ├── gcc-cross-canadian_10.2.bb │ │ │ ├── gcc-cross.inc │ │ │ ├── gcc-cross_10.2.bb │ │ │ ├── gcc-crosssdk.inc │ │ │ ├── gcc-crosssdk_10.2.bb │ │ │ ├── gcc-multilib-config.inc │ │ │ ├── gcc-runtime.inc │ │ │ ├── gcc-runtime_10.2.bb │ │ │ ├── gcc-sanitizers.inc │ │ │ ├── gcc-sanitizers_10.2.bb │ │ │ ├── gcc-shared-source.inc │ │ │ ├── gcc-source.inc │ │ │ ├── gcc-source_10.2.bb │ │ │ ├── gcc-target.inc │ │ │ ├── gcc-testsuite.inc │ │ │ ├── gcc │ │ │ │ ├── 0001-aarch64-Fix-up-__aarch64_cas16_acq_rel-fallback.patch │ │ │ │ ├── 0001-aarch64-New-Straight-Line-Speculation-SLS-mitigation.patch │ │ │ │ ├── 0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch │ │ │ │ ├── 0001-libatomic-libgomp-libitc-Fix-bootstrap-PR70454.patch │ │ │ │ ├── 0002-aarch64-Introduce-SLS-mitigation-for-RET-and-BR-inst.patch │ │ │ │ ├── 0002-gcc-poison-system-directories.patch │ │ │ │ ├── 0003-aarch64-Mitigate-SLS-for-BLR-instruction.patch │ │ │ │ ├── 0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch │ │ │ │ ├── 0004-64-bit-multilib-hack.patch │ │ │ │ ├── 0005-optional-libstdc.patch │ │ │ │ ├── 0006-COLLECT_GCC_OPTIONS.patch │ │ │ │ ├── 0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch │ │ │ │ ├── 0008-fortran-cross-compile-hack.patch │ │ │ │ ├── 0009-cpp-honor-sysroot.patch │ │ │ │ ├── 0010-MIPS64-Default-to-N64-ABI.patch │ │ │ │ ├── 0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch │ │ │ │ ├── 0012-gcc-Fix-argument-list-too-long-error.patch │ │ │ │ ├── 0013-Disable-sdt.patch │ │ │ │ ├── 0014-libtool.patch │ │ │ │ ├── 0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch │ │ │ │ ├── 0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch │ │ │ │ ├── 0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch │ │ │ │ ├── 0018-export-CPP.patch │ │ │ │ ├── 0019-Ensure-target-gcc-headers-can-be-included.patch │ │ │ │ ├── 0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch │ │ │ │ ├── 0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch │ │ │ │ ├── 0022-aarch64-Add-support-for-musl-ldso.patch │ │ │ │ ├── 0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch │ │ │ │ ├── 0024-handle-sysroot-support-for-nativesdk-gcc.patch │ │ │ │ ├── 0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch │ │ │ │ ├── 0026-Fix-various-_FOR_BUILD-and-related-variables.patch │ │ │ │ ├── 0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch │ │ │ │ ├── 0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch │ │ │ │ ├── 0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch │ │ │ │ ├── 0030-sync-gcc-stddef.h-with-musl.patch │ │ │ │ ├── 0031-fix-segmentation-fault-in-precompiled-header-generat.patch │ │ │ │ ├── 0032-Fix-for-testsuite-failure.patch │ │ │ │ ├── 0033-Re-introduce-spe-commandline-options.patch │ │ │ │ ├── 0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch │ │ │ │ ├── 0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch │ │ │ │ ├── 0036-mingw32-Enable-operation_not_supported.patch │ │ │ │ └── 0037-libatomic-Do-not-enforce-march-on-aarch64.patch │ │ │ ├── gcc_10.2.bb │ │ │ ├── libgcc-common.inc │ │ │ ├── libgcc-initial.inc │ │ │ ├── libgcc-initial_10.2.bb │ │ │ ├── libgcc.inc │ │ │ ├── libgcc_10.2.bb │ │ │ ├── libgfortran.inc │ │ │ └── libgfortran_10.2.bb │ │ ├── gdb │ │ │ ├── gdb-10.1.inc │ │ │ ├── gdb-common.inc │ │ │ ├── gdb-cross-canadian.inc │ │ │ ├── gdb-cross-canadian_10.1.bb │ │ │ ├── gdb-cross.inc │ │ │ ├── gdb-cross_10.1.bb │ │ │ ├── gdb.inc │ │ │ ├── gdb │ │ │ │ ├── 0001-make-man-install-relative-to-DESTDIR.patch │ │ │ │ ├── 0002-mips-linux-nat-Define-_ABIO32-if-not-defined.patch │ │ │ │ ├── 0003-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ │ │ ├── 0004-Add-support-for-Renesas-SH-sh4-architecture.patch │ │ │ │ ├── 0005-Dont-disable-libreadline.a-when-using-disable-static.patch │ │ │ │ ├── 0006-use-asm-sgidefs.h.patch │ │ │ │ ├── 0008-Change-order-of-CFLAGS.patch │ │ │ │ ├── 0009-resolve-restrict-keyword-conflict.patch │ │ │ │ ├── 0010-Fix-invalid-sigprocmask-call.patch │ │ │ │ └── 0011-gdbserver-ctrl-c-handling.patch │ │ │ └── gdb_10.1.bb │ │ ├── git │ │ │ ├── git.inc │ │ │ ├── git │ │ │ │ └── fixsort.patch │ │ │ └── git_2.31.1.bb │ │ ├── glide │ │ │ └── glide_0.13.3.bb │ │ ├── gnu-config │ │ │ ├── gnu-config │ │ │ │ └── gnu-configize.in │ │ │ └── gnu-config_git.bb │ │ ├── go │ │ │ ├── go-1.16.2.inc │ │ │ ├── go-1.16 │ │ │ │ ├── 0001-allow-CC-and-CXX-to-have-multiple-words.patch │ │ │ │ ├── 0002-cmd-go-make-content-based-hash-generation-less-pedan.patch │ │ │ │ ├── 0003-allow-GOTOOLDIR-to-be-overridden-in-the-environment.patch │ │ │ │ ├── 0004-ld-add-soname-to-shareable-objects.patch │ │ │ │ ├── 0005-make.bash-override-CC-when-building-dist-and-go_boot.patch │ │ │ │ ├── 0006-cmd-dist-separate-host-and-target-builds.patch │ │ │ │ ├── 0007-cmd-go-make-GOROOT-precious-by-default.patch │ │ │ │ ├── 0008-use-GOBUILDMODE-to-set-buildmode.patch │ │ │ │ └── 0009-Revert-cmd-go-make-sure-CC-and-CXX-are-absolute.patch │ │ │ ├── go-binary-native_1.16.2.bb │ │ │ ├── go-common.inc │ │ │ ├── go-cross-canadian.inc │ │ │ ├── go-cross-canadian_1.16.2.bb │ │ │ ├── go-cross.inc │ │ │ ├── go-cross_1.16.2.bb │ │ │ ├── go-crosssdk.inc │ │ │ ├── go-crosssdk_1.16.2.bb │ │ │ ├── go-native_1.16.2.bb │ │ │ ├── go-runtime.inc │ │ │ ├── go-runtime_1.16.2.bb │ │ │ ├── go-target.inc │ │ │ └── go_1.16.2.bb │ │ ├── help2man │ │ │ └── help2man_1.48.2.bb │ │ ├── i2c-tools │ │ │ └── i2c-tools_4.2.bb │ │ ├── icecc-create-env │ │ │ ├── icecc-create-env │ │ │ │ └── icecc-create-env │ │ │ └── icecc-create-env_0.1.bb │ │ ├── icecc-toolchain │ │ │ ├── icecc-toolchain │ │ │ │ ├── icecc-env.sh │ │ │ │ └── icecc-setup.sh │ │ │ └── nativesdk-icecc-toolchain_0.1.bb │ │ ├── intltool │ │ │ ├── intltool │ │ │ │ ├── intltool-nowarn.patch │ │ │ │ ├── noperlcheck.patch │ │ │ │ ├── perl-522-deprecations.patch │ │ │ │ └── remove-perl-check.patch │ │ │ └── intltool_0.51.0.bb │ │ ├── jquery │ │ │ └── jquery_3.6.0.bb │ │ ├── json-c │ │ │ └── json-c_0.15.bb │ │ ├── libcomps │ │ │ ├── libcomps │ │ │ │ ├── 0001-Add-crc32.c-to-sources-list.patch │ │ │ │ └── 0002-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch │ │ │ └── libcomps_0.1.15.bb │ │ ├── libdnf │ │ │ ├── libdnf │ │ │ │ ├── 0001-Add-WITH_TESTS-option.patch │ │ │ │ ├── 0001-FindGtkDoc.cmake-drop-the-requirement-for-GTKDOC_SCA.patch │ │ │ │ ├── 0001-Get-parameters-for-both-libsolv-and-libsolvext-libdn.patch │ │ │ │ ├── 0001-Look-fo-sphinx-only-if-documentation-is-actually-ena.patch │ │ │ │ ├── 0001-libdnf-config.h-avoid-the-use-of-non-portable-__WORD.patch │ │ │ │ ├── 0004-Set-libsolv-variables-with-pkg-config-cmake-s-own-mo.patch │ │ │ │ └── enable_test_data_dir_set.patch │ │ │ └── libdnf_0.58.0.bb │ │ ├── libedit │ │ │ ├── libedit │ │ │ │ └── stdc-predef.patch │ │ │ └── libedit_20210216-3.1.bb │ │ ├── libmodulemd │ │ │ ├── libmodulemd │ │ │ │ └── 0001-modulemd-generate-the-manpage-only-if-the-feature-is.patch │ │ │ └── libmodulemd_git.bb │ │ ├── librepo │ │ │ ├── librepo │ │ │ │ ├── 0002-Do-not-try-to-obtain-PYTHON_INSTALL_DIR-by-running-p.patch │ │ │ │ └── 0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch │ │ │ └── librepo_1.13.0.bb │ │ ├── libtool │ │ │ ├── libtool-2.4.6.inc │ │ │ ├── libtool-cross_2.4.6.bb │ │ │ ├── libtool-native_2.4.6.bb │ │ │ ├── libtool │ │ │ │ ├── 0001-Makefile.am-make-sure-autoheader-run-before-autoconf.patch │ │ │ │ ├── 0001-libtool-Check-for-static-libs-for-internal-compiler-.patch │ │ │ │ ├── 0001-libtool-Fix-support-for-NIOS2-processor.patch │ │ │ │ ├── debian-no_hostname.patch │ │ │ │ ├── dont-depend-on-help2man.patch │ │ │ │ ├── fix-final-rpath.patch │ │ │ │ ├── fix-resolve-lt-sysroot.patch │ │ │ │ ├── fix-rpath.patch │ │ │ │ ├── fixinstall.patch │ │ │ │ ├── multilib.patch │ │ │ │ ├── nohardcodepaths.patch │ │ │ │ ├── norm-rpath.patch │ │ │ │ ├── prefix.patch │ │ │ │ ├── rename-with-sysroot.patch │ │ │ │ ├── trailingslash.patch │ │ │ │ ├── unwind-opt-parsing.patch │ │ │ │ └── use-sysroot-in-libpath.patch │ │ │ ├── libtool_2.4.6.bb │ │ │ └── nativesdk-libtool_2.4.6.bb │ │ ├── llvm │ │ │ ├── llvm │ │ │ │ ├── 0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch │ │ │ │ ├── 0001-nfc-Fix-missing-include.patch │ │ │ │ ├── 0006-llvm-TargetLibraryInfo-Undefine-libc-functions-if-th.patch │ │ │ │ └── 0007-llvm-allow-env-override-of-exe-path.patch │ │ │ └── llvm_git.bb │ │ ├── log4cplus │ │ │ └── log4cplus_2.0.6.bb │ │ ├── m4 │ │ │ ├── m4-1.4.18.inc │ │ │ ├── m4-native_1.4.18.bb │ │ │ ├── m4 │ │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ │ ├── 0001-test-getopt-posix-fix.patch │ │ │ │ ├── ac_config_links.patch │ │ │ │ ├── m4-1.4.18-glibc-change-work-around.patch │ │ │ │ ├── run-ptest │ │ │ │ └── serial-tests-config.patch │ │ │ └── m4_1.4.18.bb │ │ ├── make │ │ │ ├── make.inc │ │ │ ├── make │ │ │ │ ├── 0001-m4-getloadavg.m4-restrict-AIX-specific-test-on-AIX.patch │ │ │ │ ├── 0001-makeinst-Do-not-undef-POSIX-on-clang-arm.patch │ │ │ │ ├── 0001-src-dir.c-fix-buffer-overflow-warning.patch │ │ │ │ ├── 0002-modules-fcntl-allow-being-detected-by-importing-proj.patch │ │ │ │ ├── 0002-w32-compat-dirent.c-follow-header.patch │ │ │ │ └── 0003-posixfcn-fcntl-gnulib-make-emulated.patch │ │ │ └── make_4.3.bb │ │ ├── makedevs │ │ │ ├── makedevs │ │ │ │ ├── COPYING.patch │ │ │ │ └── makedevs.c │ │ │ └── makedevs_1.0.1.bb │ │ ├── meson │ │ │ ├── meson.inc │ │ │ ├── meson │ │ │ │ ├── 0001-Make-CPU-family-warnings-fatal.patch │ │ │ │ ├── 0001-gtkdoc-fix-issues-that-arise-when-cross-compiling.patch │ │ │ │ ├── 0001-minstall-Correctly-set-uid-gid-of-installed-files.patch │ │ │ │ ├── 0001-modules-python.py-do-not-substitute-python-s-install.patch │ │ │ │ ├── 0001-python-module-do-not-manipulate-the-environment-when.patch │ │ │ │ ├── 0002-Support-building-allarch-recipes-again.patch │ │ │ │ ├── 0003-native_bindir.patch │ │ │ │ ├── cross-prop-default.patch │ │ │ │ ├── disable-rpath-handling.patch │ │ │ │ ├── gi-target-dep.patch │ │ │ │ ├── meson-setup.py │ │ │ │ └── meson-wrapper │ │ │ ├── meson_0.57.1.bb │ │ │ └── nativesdk-meson_0.57.1.bb │ │ ├── mklibs │ │ │ ├── files │ │ │ │ ├── ac_init_fix.patch │ │ │ │ ├── avoid-failure-on-symbol-provided-by-application.patch │ │ │ │ ├── fix_STT_GNU_IFUNC.patch │ │ │ │ ├── fix_cross_compile.patch │ │ │ │ ├── show-GNU-unique-symbols-as-provided-symbols.patch │ │ │ │ └── sysrooted-ldso.patch │ │ │ └── mklibs-native_0.1.44.bb │ │ ├── mmc │ │ │ ├── mmc-utils │ │ │ │ └── 0001-mmc_cmd.c-Use-extra-braces-when-initializing-subobje.patch │ │ │ └── mmc-utils_git.bb │ │ ├── mtd │ │ │ ├── mtd-utils │ │ │ │ └── add-exclusion-to-mkfs-jffs2-git-2.patch │ │ │ └── mtd-utils_git.bb │ │ ├── mtools │ │ │ ├── mtools │ │ │ │ ├── clang_UNUSED.patch │ │ │ │ ├── disable-hardcoded-configs.patch │ │ │ │ ├── mtools-makeinfo.patch │ │ │ │ └── no-x11.gplv3.patch │ │ │ └── mtools_4.0.26.bb │ │ ├── nasm │ │ │ ├── nasm │ │ │ │ ├── 0001-stdlib-Add-strlcat.patch │ │ │ │ └── 0002-Add-debug-prefix-map-option.patch │ │ │ └── nasm_2.15.05.bb │ │ ├── ninja │ │ │ └── ninja_1.10.2.bb │ │ ├── opkg-utils │ │ │ ├── opkg-utils │ │ │ │ └── 0001-update-alternatives-correctly-match-priority.patch │ │ │ └── opkg-utils_0.4.3.bb │ │ ├── opkg │ │ │ ├── opkg-arch-config_1.0.bb │ │ │ ├── opkg-keyrings_1.0.bb │ │ │ ├── opkg │ │ │ │ ├── 0001-opkg_conf-create-opkg.lock-in-run-instead-of-var-run.patch │ │ │ │ ├── 0001-tests-let-the-OS-negotiate-relative-package-dirs.patch │ │ │ │ ├── opkg.conf │ │ │ │ ├── run-ptest │ │ │ │ └── sourcedateepoch.patch │ │ │ └── opkg_0.4.4.bb │ │ ├── orc │ │ │ └── orc_0.4.32.bb │ │ ├── patch │ │ │ ├── patch.inc │ │ │ ├── patch │ │ │ │ ├── 0001-Don-t-leak-temporary-file-on-failed-ed-style-patch.patch │ │ │ │ ├── 0001-Don-t-leak-temporary-file-on-failed-multi-file-ed.patch │ │ │ │ ├── 0001-Fix-swapping-fake-lines-in-pch_swap.patch │ │ │ │ ├── 0001-Invoke-ed-directly-instead-of-using-the-shell.patch │ │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ │ ├── 0002-Fix-segfault-with-mangled-rename-patch.patch │ │ │ │ ├── 0003-Allow-input-files-to-be-missing-for-ed-style-patches.patch │ │ │ │ ├── 0004-Fix-arbitrary-command-execution-in-ed-style-patches-.patch │ │ │ │ ├── CVE-2019-13636.patch │ │ │ │ └── CVE-2019-20633.patch │ │ │ └── patch_2.7.6.bb │ │ ├── patchelf │ │ │ ├── patchelf │ │ │ │ └── handle-read-only-files.patch │ │ │ └── patchelf_0.12.bb │ │ ├── perl │ │ │ ├── files │ │ │ │ ├── 0001-CheckLib.pm-do-not-attempt-to-run-a-cross-executable.patch │ │ │ │ ├── 0001-ExtUtils-MakeMaker-add-LDFLAGS-when-linking-binary-m.patch │ │ │ │ ├── 0001-Somehow-this-module-breaks-through-the-perl-wrapper-.patch │ │ │ │ ├── 0001-configure_path.sh-do-not-hardcode-prefix-lib-as-libr.patch │ │ │ │ ├── 0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch │ │ │ │ ├── 0001-perl-cross-add-LDFLAGS-when-linking-libperl.patch │ │ │ │ ├── 0002-Constant-Fix-up-shebang.patch │ │ │ │ ├── determinism.patch │ │ │ │ ├── encodefix.patch │ │ │ │ ├── errno_ver.diff │ │ │ │ ├── native-perlinc.patch │ │ │ │ ├── perl-configpm-switch.patch │ │ │ │ ├── perl-dynloader.patch │ │ │ │ ├── perl-rdepends.txt │ │ │ │ └── run-ptest │ │ │ ├── liberror-perl_0.17029.bb │ │ │ ├── libmodule-build-perl │ │ │ │ └── run-ptest │ │ │ ├── libmodule-build-perl_0.4231.bb │ │ │ ├── libtest-needs-perl_0.002006.bb │ │ │ ├── liburi-perl_5.08.bb │ │ │ ├── libxml-parser-perl_2.46.bb │ │ │ ├── libxml-perl_0.08.bb │ │ │ ├── libxml-simple-perl_2.25.bb │ │ │ ├── perl-ptest.inc │ │ │ └── perl_5.32.1.bb │ │ ├── pkgconf │ │ │ ├── pkgconf │ │ │ │ ├── pkg-config-esdk.in │ │ │ │ ├── pkg-config-native.in │ │ │ │ └── pkg-config-wrapper │ │ │ └── pkgconf_1.7.3.bb │ │ ├── pkgconfig │ │ │ ├── pkgconfig │ │ │ │ ├── 0001-glib-gettext.m4-Update-AM_GLIB_GNU_GETTEXT-to-match-.patch │ │ │ │ ├── fix-glib-configure-libtool-usage.patch │ │ │ │ ├── pkg-config-esdk.in │ │ │ │ └── pkg-config-native.in │ │ │ └── pkgconfig_git.bb │ │ ├── prelink │ │ │ ├── prelink │ │ │ │ ├── 0001-Add-MIPS-gnu-hash-support.patch │ │ │ │ ├── macros.prelink │ │ │ │ ├── prelink.conf │ │ │ │ ├── prelink.cron.daily │ │ │ │ └── prelink.default │ │ │ └── prelink_git.bb │ │ ├── pseudo │ │ │ ├── files │ │ │ │ ├── 0001-configure-Prune-PIE-flags.patch │ │ │ │ ├── fallback-group │ │ │ │ └── fallback-passwd │ │ │ ├── pseudo.inc │ │ │ └── pseudo_git.bb │ │ ├── python-numpy │ │ │ ├── files │ │ │ │ ├── 0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch │ │ │ │ ├── 0001-numpy-core-Define-RISCV-32-support.patch │ │ │ │ └── run-ptest │ │ │ └── python3-numpy_1.20.1.bb │ │ ├── python │ │ │ ├── files │ │ │ │ └── 0001-conditionally-do-not-fetch-code-by-easy_install.patch │ │ │ ├── python-async.inc │ │ │ ├── python-cython.inc │ │ │ ├── python-extras.inc │ │ │ ├── python-gitdb.inc │ │ │ ├── python-nose.inc │ │ │ ├── python-pbr.inc │ │ │ ├── python-pycryptodome.inc │ │ │ ├── python-pyparsing.inc │ │ │ ├── python-six.inc │ │ │ ├── python-smmap.inc │ │ │ ├── python-subunit.inc │ │ │ ├── python-testtools.inc │ │ │ ├── python3-async_0.6.2.bb │ │ │ ├── python3-atomicwrites │ │ │ │ └── run-ptest │ │ │ ├── python3-atomicwrites_1.4.0.bb │ │ │ ├── python3-attrs_20.3.0.bb │ │ │ ├── python3-cython_0.29.22.bb │ │ │ ├── python3-dbus_1.2.16.bb │ │ │ ├── python3-dbusmock_0.22.0.bb │ │ │ ├── python3-docutils_0.16.bb │ │ │ ├── python3-extras_1.0.0.bb │ │ │ ├── python3-git_3.1.14.bb │ │ │ ├── python3-gitdb_4.0.5.bb │ │ │ ├── python3-hypothesis_6.2.0.bb │ │ │ ├── python3-importlib-metadata_3.4.0.bb │ │ │ ├── python3-iniconfig_1.1.1.bb │ │ │ ├── python3-iniparse │ │ │ │ └── 0001-Add-python-3-compatibility.patch │ │ │ ├── python3-iniparse_0.4.bb │ │ │ ├── python3-jinja2 │ │ │ │ └── run-ptest │ │ │ ├── python3-jinja2_2.11.3.bb │ │ │ ├── python3-libarchive-c_2.9.bb │ │ │ ├── python3-magic_0.4.22.bb │ │ │ ├── python3-mako_1.1.4.bb │ │ │ ├── python3-markupsafe │ │ │ │ └── run-ptest │ │ │ ├── python3-markupsafe_1.1.1.bb │ │ │ ├── python3-more-itertools │ │ │ │ └── run-ptest │ │ │ ├── python3-more-itertools_8.7.0.bb │ │ │ ├── python3-nose_1.3.7.bb │ │ │ ├── python3-packaging_20.9.bb │ │ │ ├── python3-pathlib2_2.3.5.bb │ │ │ ├── python3-pbr │ │ │ │ └── 0001-change-shebang-to-python3.patch │ │ │ ├── python3-pbr_5.4.4.bb │ │ │ ├── python3-pip │ │ │ │ └── 0001-change-shebang-to-python3.patch │ │ │ ├── python3-pip_20.0.2.bb │ │ │ ├── python3-pluggy │ │ │ │ └── run-ptest │ │ │ ├── python3-pluggy_0.13.1.bb │ │ │ ├── python3-py_1.10.0.bb │ │ │ ├── python3-pycairo_1.20.0.bb │ │ │ ├── python3-pycryptodome_3.10.1.bb │ │ │ ├── python3-pycryptodomex_3.10.1.bb │ │ │ ├── python3-pyelftools_0.27.bb │ │ │ ├── python3-pygments_2.8.1.bb │ │ │ ├── python3-pygobject │ │ │ │ └── 0001-Do-not-build-tests.patch │ │ │ ├── python3-pygobject_3.38.0.bb │ │ │ ├── python3-pyparsing_2.4.7.bb │ │ │ ├── python3-pytest │ │ │ │ └── 0001-setup.py-remove-the-setup_requires-for-setuptools-scm.patch │ │ │ ├── python3-pytest_6.2.2.bb │ │ │ ├── python3-scons-native_3.1.2.bb │ │ │ ├── python3-scons_3.1.2.bb │ │ │ ├── python3-setuptools-scm_5.0.1.bb │ │ │ ├── python3-setuptools │ │ │ │ └── 0001-change-shebang-to-python3.patch │ │ │ ├── python3-setuptools_54.1.1.bb │ │ │ ├── python3-six_1.15.0.bb │ │ │ ├── python3-smmap_4.0.0.bb │ │ │ ├── python3-sortedcontainers_2.3.0.bb │ │ │ ├── python3-subunit_1.4.0.bb │ │ │ ├── python3-testtools │ │ │ │ └── no_traceback2.patch │ │ │ ├── python3-testtools_2.4.0.bb │ │ │ ├── python3-toml_0.10.2.bb │ │ │ ├── python3-wcwidth │ │ │ │ └── run-ptest │ │ │ ├── python3-wcwidth_0.2.5.bb │ │ │ ├── python3-zipp_3.4.1.bb │ │ │ ├── python3 │ │ │ │ ├── 0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch │ │ │ │ ├── 0001-Do-not-use-the-shell-version-of-python-config-that-w.patch │ │ │ │ ├── 0001-Don-t-search-system-for-headers-libraries.patch │ │ │ │ ├── 0001-Lib-sysconfig.py-use-libdir-values-from-configuratio.patch │ │ │ │ ├── 0001-Makefile-do-not-compile-.pyc-in-parallel.patch │ │ │ │ ├── 0001-Makefile-fix-Issue36464-parallel-build-race-problem.patch │ │ │ │ ├── 0001-Makefile.pre-use-qemu-wrapper-when-gathering-profile.patch │ │ │ │ ├── 0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch │ │ │ │ ├── 0001-Use-FLAG_REF-always-for-interned-strings.patch │ │ │ │ ├── 0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch │ │ │ │ ├── 0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch │ │ │ │ ├── 0001-python3-use-cc_basename-to-replace-CC-for-checking-c.patch │ │ │ │ ├── 0001-setup.py-pass-missing-libraries-to-Extension-for-mul.patch │ │ │ │ ├── 0001-test_locale.py-correct-the-test-output-format.patch │ │ │ │ ├── 0017-setup.py-do-not-report-missing-dependencies-for-disa.patch │ │ │ │ ├── 0020-configure.ac-setup.py-do-not-add-a-curses-include-pa.patch │ │ │ │ ├── 12-distutils-prefix-is-inside-staging-area.patch │ │ │ │ ├── avoid_warning_about_tkinter.patch │ │ │ │ ├── cgi_py.patch │ │ │ │ ├── check_build_completeness.py │ │ │ │ ├── create_manifest3.py │ │ │ │ ├── crosspythonpath.patch │ │ │ │ ├── get_module_deps3.py │ │ │ │ ├── python-config.patch │ │ │ │ ├── python3-manifest.json │ │ │ │ ├── reformat_sysconfig.py │ │ │ │ └── run-ptest │ │ │ └── python3_3.9.2.bb │ │ ├── qemu │ │ │ ├── nativesdk-qemu-helper_1.0.bb │ │ │ ├── qemu-helper-native_1.0.bb │ │ │ ├── qemu-helper │ │ │ │ ├── qemu-oe-bridge-helper │ │ │ │ └── tunctl.c │ │ │ ├── qemu-native.inc │ │ │ ├── qemu-native_5.2.0.bb │ │ │ ├── qemu-system-native_5.2.0.bb │ │ │ ├── qemu-targets.inc │ │ │ ├── qemu.inc │ │ │ ├── qemu │ │ │ │ ├── 0001-Add-enable-disable-udev.patch │ │ │ │ ├── 0001-qemu-Add-missing-wacom-HID-descriptor.patch │ │ │ │ ├── 0001-qemu-Do-not-include-file-if-not-exists.patch │ │ │ │ ├── 0001-tests-meson.build-use-relative-path-to-refer-to-file.patch │ │ │ │ ├── 0003-qemu-Add-addition-environment-space-to-boot-loader-q.patch │ │ │ │ ├── 0004-qemu-disable-Valgrind.patch │ │ │ │ ├── 0006-chardev-connect-socket-to-a-spawned-command.patch │ │ │ │ ├── 0007-apic-fixup-fallthrough-to-PIC.patch │ │ │ │ ├── 0010-configure-Add-pkg-config-handling-for-libgcrypt.patch │ │ │ │ ├── CVE-2021-20203.patch │ │ │ │ ├── cross.patch │ │ │ │ ├── determinism.patch │ │ │ │ ├── mingwfix.patch │ │ │ │ ├── mmap.patch │ │ │ │ ├── mmap2.patch │ │ │ │ ├── powerpc_rom.bin │ │ │ │ └── run-ptest │ │ │ ├── qemu_5.2.0.bb │ │ │ └── qemuwrapper-cross_1.0.bb │ │ ├── quilt │ │ │ ├── quilt-native_0.66.bb │ │ │ ├── quilt.inc │ │ │ ├── quilt │ │ │ │ ├── 0001-tests-Allow-different-output-from-mv.patch │ │ │ │ ├── Makefile │ │ │ │ ├── gnu_patch_test_fix_target.patch │ │ │ │ ├── run-ptest │ │ │ │ └── test.sh │ │ │ └── quilt_0.66.bb │ │ ├── rpm │ │ │ ├── files │ │ │ │ ├── 0001-Add-a-color-setting-for-mips64_n32-binaries.patch │ │ │ │ ├── 0001-Do-not-add-an-unsatisfiable-dependency-when-building.patch │ │ │ │ ├── 0001-Do-not-hardcode-lib-rpm-as-the-installation-path-for.patch │ │ │ │ ├── 0001-Do-not-read-config-files-from-HOME.patch │ │ │ │ ├── 0001-Do-not-reset-the-PATH-environment-variable-before-ru.patch │ │ │ │ ├── 0001-Fix-build-with-musl-C-library.patch │ │ │ │ ├── 0001-Rip-out-partial-support-for-unused-MD2-and-RIPEMD160.patch │ │ │ │ ├── 0001-When-cross-installing-execute-package-scriptlets-wit.patch │ │ │ │ ├── 0001-lib-transaction.c-fix-file-conflicts-for-MIPS64-N32.patch │ │ │ │ ├── 0001-perl-disable-auto-reqs.patch │ │ │ │ ├── 0001-rpm-rpmio.c-restrict-virtual-memory-usage-if-limit-s.patch │ │ │ │ ├── 0001-tools-Add-error.h-for-non-glibc-case.patch │ │ │ │ ├── 0002-Add-support-for-prefixing-etc-from-RPM_ETCCONFIGDIR-.patch │ │ │ │ ├── 0011-Do-not-require-that-ELF-binaries-are-executable-to-b.patch │ │ │ │ ├── 0016-rpmscript.c-change-logging-level-around-scriptlets-t.patch │ │ │ │ └── environment.d-rpm.sh │ │ │ └── rpm_4.16.1.2.bb │ │ ├── rsync │ │ │ ├── files │ │ │ │ ├── determism.patch │ │ │ │ ├── makefile-no-rebuild.patch │ │ │ │ └── rsyncd.conf │ │ │ └── rsync_3.2.3.bb │ │ ├── ruby │ │ │ ├── ruby.inc │ │ │ ├── ruby │ │ │ │ ├── 0001-extmk-fix-cross-compilation-of-external-gems.patch │ │ │ │ ├── 0001-template-Makefile.in-do-not-write-host-cross-cc-item.patch │ │ │ │ ├── 0002-Obey-LDFLAGS-for-the-link-of-libruby.patch │ │ │ │ ├── remove_has_include_macros.patch │ │ │ │ └── run-ptest │ │ │ └── ruby_3.0.0.bb │ │ ├── run-postinsts │ │ │ ├── run-postinsts │ │ │ │ ├── run-postinsts │ │ │ │ ├── run-postinsts.init │ │ │ │ └── run-postinsts.service │ │ │ └── run-postinsts_1.0.bb │ │ ├── squashfs-tools │ │ │ ├── files │ │ │ │ └── 0001-squashfs-tools-fix-build-failure-against-gcc-10.patch │ │ │ └── squashfs-tools_git.bb │ │ ├── strace │ │ │ ├── strace │ │ │ │ ├── 0001-caps-abbrev.awk-fix-gawk-s-path.patch │ │ │ │ ├── 0001-strace-fix-reproducibilty-issues.patch │ │ │ │ ├── Makefile-ptest.patch │ │ │ │ ├── mips-SIGEMT.patch │ │ │ │ ├── ptest-spacesave.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── uintptr_t.patch │ │ │ │ └── update-gawk-paths.patch │ │ │ └── strace_5.11.bb │ │ ├── subversion │ │ │ ├── subversion │ │ │ │ ├── 0001-Fix-libtool-name-in-configure.ac.patch │ │ │ │ ├── disable_macos.patch │ │ │ │ └── serfmacro.patch │ │ │ └── subversion_1.14.1.bb │ │ ├── swig │ │ │ ├── swig.inc │ │ │ ├── swig │ │ │ │ ├── 0001-Add-Node-7.x-aka-V8-5.2-support.patch │ │ │ │ ├── 0001-Fix-generated-code-for-constant-expressions-containi.patch │ │ │ │ ├── 0001-Use-proc-self-exe-for-swig-swiglib-on-non-Win32-plat.patch │ │ │ │ ├── 0001-configure-use-pkg-config-for-pcre-detection.patch │ │ │ │ ├── Python-Fix-new-GCC8-warnings-in-generated-code.patch │ │ │ │ ├── determinism.patch │ │ │ │ └── swig-3.0.12-Coverity-fix-issue-reported-for-SWIG_Python_FixMetho.patch │ │ │ └── swig_3.0.12.bb │ │ ├── syslinux │ │ │ ├── syslinux │ │ │ │ ├── 0001-install-don-t-install-obsolete-file-com32.ld.patch │ │ │ │ ├── 0001-linux-syslinux-support-ext2-3-4-device.patch │ │ │ │ ├── 0002-linux-syslinux-implement-open_ext2_fs.patch │ │ │ │ ├── 0003-linux-syslinux-implement-install_to_ext2.patch │ │ │ │ ├── 0004-linux-syslinux-add-ext_file_read-and-ext_file_write.patch │ │ │ │ ├── 0005-linux-syslinux-implement-handle_adv_on_ext.patch │ │ │ │ ├── 0006-linux-syslinux-implement-write_to_ext-and-add-syslin.patch │ │ │ │ ├── 0007-linux-syslinux-implement-ext_construct_sectmap_fs.patch │ │ │ │ ├── 0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch │ │ │ │ ├── 0009-linux-syslinux-implement-install_bootblock.patch │ │ │ │ ├── 0010-Workaround-multiple-definition-of-symbol-errors.patch │ │ │ │ ├── determinism.patch │ │ │ │ └── syslinux-remove-clean-script.patch │ │ │ └── syslinux_6.04-pre2.bb │ │ ├── systemd-bootchart │ │ │ ├── systemd-bootchart │ │ │ │ ├── 0001-architecture-Recognise-RISCV-32-RISCV-64.patch │ │ │ │ ├── 0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch │ │ │ │ ├── 0002-musl-does-not-provide-printf-h.patch │ │ │ │ ├── 0003-musl-does-not-provide-canonicalize_file_name.patch │ │ │ │ ├── mips64.patch │ │ │ │ └── no_lto.patch │ │ │ └── systemd-bootchart_234.bb │ │ ├── tcf-agent │ │ │ ├── tcf-agent │ │ │ │ ├── fix_ranlib.patch │ │ │ │ ├── ldflags.patch │ │ │ │ ├── tcf-agent.init │ │ │ │ └── tcf-agent.service │ │ │ └── tcf-agent_git.bb │ │ ├── tcltk │ │ │ ├── tcl │ │ │ │ ├── alter-includedir.patch │ │ │ │ ├── fix_issue_with_old_distro_glibc.patch │ │ │ │ ├── fix_non_native_build_issue.patch │ │ │ │ ├── no_packages.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── tcl-add-soname.patch │ │ │ │ └── tcl-remove-hardcoded-install-path.patch │ │ │ └── tcl_8.6.11.bb │ │ ├── unfs3 │ │ │ ├── unfs3 │ │ │ │ ├── 0001-Add-listen-action-for-a-tcp-socket.patch │ │ │ │ ├── 0001-attr-fix-utime-for-symlink.patch │ │ │ │ ├── 0001-daemon.c-Libtirpc-porting-fixes.patch │ │ │ │ ├── alternate_rpc_ports.patch │ │ │ │ ├── fix_compile_warning.patch │ │ │ │ ├── fix_pid_race_parent_writes_child_pid.patch │ │ │ │ ├── no-yywrap.patch │ │ │ │ ├── relative_max_socket_path_len.patch │ │ │ │ ├── rename_fh_cache.patch │ │ │ │ ├── tcp_no_delay.patch │ │ │ │ └── unfs3_parallel_build.patch │ │ │ └── unfs3_git.bb │ │ ├── unifdef │ │ │ └── unifdef_2.12.bb │ │ ├── vala │ │ │ ├── vala.inc │ │ │ ├── vala │ │ │ │ └── 0001-vapigen.m4-use-PKG_CONFIG_SYSROOT_DIR.patch │ │ │ └── vala_0.50.4.bb │ │ ├── valgrind │ │ │ ├── valgrind │ │ │ │ ├── 0001-Fix-nlcontrolc.vgtest-hanging-on-newer-glibc-and-or-.patch │ │ │ │ ├── 0001-Guard-against-__GLIBC_PREREQ-for-musl-libc.patch │ │ │ │ ├── 0001-Make-local-functions-static-to-avoid-assembler-error.patch │ │ │ │ ├── 0001-Remove-tests-that-fail-to-build-on-some-PPC32-config.patch │ │ │ │ ├── 0001-Return-a-valid-exit_code-from-vg_regtest.patch │ │ │ │ ├── 0001-drd-Port-to-Fedora-33.patch │ │ │ │ ├── 0001-drd-musl-fix.patch │ │ │ │ ├── 0001-fix-opcode-not-supported-on-mips32-linux.patch │ │ │ │ ├── 0001-helgrind-Intercept-libc-functions.patch │ │ │ │ ├── 0001-lmw-lswi-and-related-PowerPC-insns-aren-t-allowed-on.patch │ │ │ │ ├── 0001-makefiles-Drop-setting-mcpu-to-cortex-a8-on-arm-arch.patch │ │ │ │ ├── 0001-memcheck-arm64-Define-__THROW-if-not-already-defined.patch │ │ │ │ ├── 0001-memcheck-tests-Fix-timerfd-syscall-test.patch │ │ │ │ ├── 0001-memcheck-vgtests-remove-fullpath-after-flags.patch │ │ │ │ ├── 0001-none-tests-fdleak_cmsg.stderr.exp-adjust-tmp-paths.patch │ │ │ │ ├── 0001-sigqueue-Rename-_sifields-to-__si_fields-on-musl.patch │ │ │ │ ├── 0001-str_tester.c-Limit-rawmemchr-test-to-glibc.patch │ │ │ │ ├── 0001-valgrind-filter_xml_frames-do-not-filter-usr.patch │ │ │ │ ├── 0002-context-APIs-are-not-available-on-musl.patch │ │ │ │ ├── 0002-memcheck-x86-Define-__THROW-if-not-defined.patch │ │ │ │ ├── 0003-correct-include-directive-path-for-config.h.patch │ │ │ │ ├── 0003-tests-seg_override-Replace-__modify_ldt-with-syscall.patch │ │ │ │ ├── 0004-Fix-out-of-tree-builds.patch │ │ │ │ ├── 0005-Modify-vg_test-wrapper-to-support-PTEST-formats.patch │ │ │ │ ├── 0005-tc20_verifywrap.c-Fake-__GLIBC_PREREQ-with-musl.patch │ │ │ │ ├── Added-support-for-PPC-instructions-mfatbu-mfatbl.patch │ │ │ │ ├── avoid-neon-for-targets-which-don-t-support-it.patch │ │ │ │ ├── fixed-perl-path.patch │ │ │ │ ├── remove-for-aarch64 │ │ │ │ ├── remove-for-all │ │ │ │ ├── run-ptest │ │ │ │ ├── s390x_vec_op_t.patch │ │ │ │ ├── use-appropriate-march-mcpu-mfpu-for-ARM-test-apps.patch │ │ │ │ └── valgrind-make-ld-XXX.so-strlen-intercept-optional.patch │ │ │ └── valgrind_3.16.1.bb │ │ └── xmlto │ │ │ ├── xmlto-0.0.28 │ │ │ └── configure.in-drop-the-test-of-xmllint-and-xsltproc.patch │ │ │ └── xmlto_0.0.28.bb │ ├── recipes-extended │ │ ├── acpica │ │ │ └── acpica_20210105.bb │ │ ├── asciidoc │ │ │ └── asciidoc_9.1.0.bb │ │ ├── at │ │ │ ├── at │ │ │ │ ├── 0001-remove-glibc-assumption.patch │ │ │ │ ├── atd.init │ │ │ │ ├── atd.service │ │ │ │ ├── configure-add-enable-pam.patch │ │ │ │ ├── file_replacement_with_gplv2.patch │ │ │ │ ├── fix_parallel_build_error.patch │ │ │ │ ├── makefile-fix-parallel.patch │ │ │ │ ├── pam.conf.patch │ │ │ │ ├── posixtm.c │ │ │ │ └── posixtm.h │ │ │ └── at_3.2.1.bb │ │ ├── bash │ │ │ ├── bash.inc │ │ │ ├── bash │ │ │ │ ├── build-tests.patch │ │ │ │ ├── execute_cmd.patch │ │ │ │ ├── fix-run-builtins.patch │ │ │ │ ├── makerace.patch │ │ │ │ ├── mkbuiltins_have_stringize.patch │ │ │ │ ├── run-bash-ptests │ │ │ │ ├── run-ptest │ │ │ │ ├── test-output.patch │ │ │ │ └── use_aclocal.patch │ │ │ └── bash_5.1.bb │ │ ├── bc │ │ │ ├── bc │ │ │ │ ├── 0001-dc-fix-exit-code-of-q-command.patch │ │ │ │ ├── libmath.h │ │ │ │ └── no-gen-libmath.patch │ │ │ └── bc_1.07.1.bb │ │ ├── blktool │ │ │ ├── blktool │ │ │ │ ├── 0001-fix-typos-in-manpage.patch │ │ │ │ ├── 0002-fix-string-error.patch │ │ │ │ ├── 0003-Fix-3-d-argument-for-BLKROSET-it-must-be-const-int.patch │ │ │ │ └── 0004-fix-ftbfs-glibc-2.28.patch │ │ │ └── blktool_4-7.1.bb │ │ ├── bzip2 │ │ │ ├── bzip2 │ │ │ │ ├── Makefile.am │ │ │ │ ├── configure.ac │ │ │ │ └── run-ptest │ │ │ └── bzip2_1.0.8.bb │ │ ├── cpio │ │ │ ├── cpio-2.13 │ │ │ │ ├── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ │ └── 0002-src-global.c-Remove-superfluous-declaration-of-progr.patch │ │ │ └── cpio_2.13.bb │ │ ├── cracklib │ │ │ ├── cracklib │ │ │ │ ├── 0001-Apply-patch-to-fix-CVE-2016-6318.patch │ │ │ │ ├── 0001-packlib.c-support-dictionary-byte-order-dependent.patch │ │ │ │ └── 0002-craklib-fix-testnum-and-teststr-failed.patch │ │ │ └── cracklib_2.9.5.bb │ │ ├── cronie │ │ │ ├── cronie │ │ │ │ ├── crond.init │ │ │ │ ├── crond.service │ │ │ │ ├── crond_pam_config.patch │ │ │ │ └── crontab │ │ │ └── cronie_1.5.5.bb │ │ ├── cups │ │ │ ├── cups.inc │ │ │ ├── cups │ │ │ │ ├── 0001-use-echo-only-in-init.patch │ │ │ │ ├── 0002-don-t-try-to-run-generated-binaries.patch │ │ │ │ ├── 0003-cups_1.4.6.bb-Fix-build-on-ppc64.patch │ │ │ │ ├── 0004-cups-fix-multilib-install-file-conflicts.patch │ │ │ │ ├── CVE-2020-10001.patch │ │ │ │ ├── cups-volatiles.conf │ │ │ │ └── volatiles.99_cups │ │ │ └── cups_2.3.3.bb │ │ ├── cwautomacros │ │ │ └── cwautomacros_20110201.bb │ │ ├── diffutils │ │ │ ├── diffutils.inc │ │ │ ├── diffutils │ │ │ │ ├── 0001-Skip-strip-trailing-cr-test-case.patch │ │ │ │ └── run-ptest │ │ │ └── diffutils_3.7.bb │ │ ├── ed │ │ │ └── ed_1.17.bb │ │ ├── ethtool │ │ │ ├── ethtool │ │ │ │ ├── avoid_parallel_tests.patch │ │ │ │ └── run-ptest │ │ │ └── ethtool_5.10.bb │ │ ├── findutils │ │ │ ├── findutils.inc │ │ │ └── findutils_4.8.0.bb │ │ ├── gawk │ │ │ ├── gawk │ │ │ │ ├── 0001-Use-cross-AR-during-compile.patch │ │ │ │ └── run-ptest │ │ │ └── gawk_5.1.0.bb │ │ ├── ghostscript │ │ │ ├── files │ │ │ │ └── do-not-check-local-libpng-source.patch │ │ │ ├── ghostscript │ │ │ │ ├── avoid-host-contamination.patch │ │ │ │ ├── base-genht.c-add-a-preprocessor-define-to-allow-fope.patch │ │ │ │ ├── cups-no-gcrypt.patch │ │ │ │ ├── ghostscript-9.15-parallel-make.patch │ │ │ │ ├── ghostscript-9.16-Werror-return-type.patch │ │ │ │ ├── ghostscript-9.21-native-fix-disable-system-libtiff.patch │ │ │ │ ├── ghostscript-9.21-prevent_recompiling.patch │ │ │ │ └── mkdir-p.patch │ │ │ └── ghostscript_9.53.3.bb │ │ ├── go-examples │ │ │ └── go-helloworld_0.1.bb │ │ ├── gperf │ │ │ └── gperf_3.1.bb │ │ ├── grep │ │ │ └── grep_3.6.bb │ │ ├── groff │ │ │ ├── files │ │ │ │ ├── 0001-Include-config.h.patch │ │ │ │ ├── 0001-Make-manpages-mulitlib-identical.patch │ │ │ │ ├── 0001-replace-perl-w-with-use-warnings.patch │ │ │ │ ├── 0001-support-musl.patch │ │ │ │ └── groff-not-search-fonts-on-build-host.patch │ │ │ └── groff_1.22.4.bb │ │ ├── gzip │ │ │ ├── files │ │ │ │ └── run-ptest │ │ │ ├── gzip-1.10 │ │ │ │ └── wrong-path-fix.patch │ │ │ ├── gzip.inc │ │ │ └── gzip_1.10.bb │ │ ├── hdparm │ │ │ ├── hdparm │ │ │ │ └── wiper.sh-fix-stat-path.patch │ │ │ └── hdparm_9.60.bb │ │ ├── images │ │ │ ├── core-image-full-cmdline.bb │ │ │ ├── core-image-kernel-dev.bb │ │ │ ├── core-image-testmaster-initramfs.bb │ │ │ └── core-image-testmaster.bb │ │ ├── iptables │ │ │ ├── iptables │ │ │ │ ├── 0001-configure-Add-option-to-enable-disable-libnfnetlink.patch │ │ │ │ ├── 0002-configure.ac-only-check-conntrack-when-libnfnetlink-enabled.patch │ │ │ │ ├── ip6tables.rules │ │ │ │ ├── ip6tables.service │ │ │ │ ├── iptables.rules │ │ │ │ └── iptables.service │ │ │ └── iptables_1.8.7.bb │ │ ├── iputils │ │ │ ├── iputils │ │ │ │ └── 0001-rarpd-rdisc-Drop-PrivateUsers.patch │ │ │ └── iputils_s20200821.bb │ │ ├── less │ │ │ └── less_563.bb │ │ ├── libaio │ │ │ ├── libaio │ │ │ │ ├── 00_arches.patch │ │ │ │ ├── libaio_fix_for_mips_syscalls.patch │ │ │ │ └── system-linkage.patch │ │ │ └── libaio_0.3.112.bb │ │ ├── libarchive │ │ │ └── libarchive_3.5.1.bb │ │ ├── libidn │ │ │ └── libidn2_2.3.0.bb │ │ ├── libmnl │ │ │ └── libmnl_1.0.4.bb │ │ ├── libnsl │ │ │ └── libnsl2_git.bb │ │ ├── libnss-nis │ │ │ └── libnss-nis.bb │ │ ├── libpipeline │ │ │ └── libpipeline_1.5.3.bb │ │ ├── libsolv │ │ │ └── libsolv_0.7.17.bb │ │ ├── libtirpc │ │ │ └── libtirpc_1.3.1.bb │ │ ├── lighttpd │ │ │ ├── lighttpd │ │ │ │ ├── 0001-Use-pkg-config-for-pcre-dependency-instead-of-config.patch │ │ │ │ ├── index.html.lighttpd │ │ │ │ ├── lighttpd │ │ │ │ └── lighttpd.conf │ │ │ └── lighttpd_1.4.59.bb │ │ ├── logrotate │ │ │ ├── logrotate │ │ │ │ ├── 0001-Update-the-manual.patch │ │ │ │ ├── act-as-mv-when-rotate.patch │ │ │ │ └── disable-check-different-filesystems.patch │ │ │ └── logrotate_3.18.0.bb │ │ ├── lsb │ │ │ ├── lsb-release │ │ │ │ ├── 0001-Remove-timestamp-from-manpage.patch │ │ │ │ └── 0001-fix-lsb_release-to-work-with-busybox-head-and-find.patch │ │ │ └── lsb-release_1.4.bb │ │ ├── lsof │ │ │ ├── files │ │ │ │ └── lsof-remove-host-information.patch │ │ │ └── lsof_4.91.bb │ │ ├── ltp │ │ │ ├── ltp │ │ │ │ ├── 0001-Add-more-musl-exclusions.patch │ │ │ │ ├── 0001-Remove-OOM-tests-from-runtest-mm.patch │ │ │ │ ├── 0001-build-Add-option-to-select-libc-implementation.patch │ │ │ │ ├── 0001-open_posix_testsuite-generate-makefiles.sh-Avoid-inc.patch │ │ │ │ ├── 0002-Makefile-Avoid-wildcard-determinism-issues.patch │ │ │ │ ├── 0003-syscalls-swapon-swapoff-Move-common-library-to-libs.patch │ │ │ │ ├── 0007-Fix-test_proc_kill-hanging.patch │ │ │ │ ├── determinism.patch │ │ │ │ └── libswapon.patch │ │ │ └── ltp_20210121.bb │ │ ├── lzip │ │ │ └── lzip_1.22.bb │ │ ├── man-db │ │ │ ├── files │ │ │ │ ├── 99_mandb │ │ │ │ └── man_db.conf-avoid-multilib-install-file-conflict.patch │ │ │ └── man-db_2.9.4.bb │ │ ├── man-pages │ │ │ └── man-pages_5.10.bb │ │ ├── mc │ │ │ ├── files │ │ │ │ ├── 0001-mc-replace-perl-w-with-use-warnings.patch │ │ │ │ └── nomandate.patch │ │ │ └── mc_4.8.26.bb │ │ ├── mdadm │ │ │ ├── files │ │ │ │ ├── 0001-Compute-abs-diff-in-a-standard-compliant-way.patch │ │ │ │ ├── 0001-Fix-the-path-of-corosync-and-dlm-header-files-check.patch │ │ │ │ ├── 0001-Revert-tests-wait-for-complete-rebuild-in-integrity-.patch │ │ │ │ ├── 0001-Use-CC-to-check-for-implicit-fallthrough-warning-sup.patch │ │ │ │ ├── 0001-fix-gcc-8-format-truncation-warning.patch │ │ │ │ ├── 0001-mdadm-add-option-y-for-use-syslog-to-recive-event-re.patch │ │ │ │ ├── 0001-mdadm-skip-test-11spare-migration.patch │ │ │ │ ├── 0001-mdadm.h-Undefine-dprintf-before-redefining.patch │ │ │ │ ├── debian-no-Werror.patch │ │ │ │ ├── include_sysmacros.patch │ │ │ │ ├── mdadm-3.3.2_x32_abi_time_t.patch │ │ │ │ ├── mdadm-fix-ptest-build-errors.patch │ │ │ │ ├── mdadm.init │ │ │ │ └── run-ptest │ │ │ └── mdadm_4.1.bb │ │ ├── mingetty │ │ │ └── mingetty_1.08.bb │ │ ├── minicom │ │ │ ├── minicom │ │ │ │ ├── 0001-Drop-superfluous-global-variable-definitions.patch │ │ │ │ ├── 0001-Fix-build-issus-surfaced-due-to-musl.patch │ │ │ │ ├── 0001-fix-minicom-h-v-return-value-is-not-0.patch │ │ │ │ ├── 0002-Drop-superfluous-global-variable-definitions.patch │ │ │ │ ├── 0003-Drop-superfluous-global-variable-definitions.patch │ │ │ │ └── allow.to.disable.lockdev.patch │ │ │ └── minicom_2.7.1.bb │ │ ├── msmtp │ │ │ └── msmtp_1.8.15.bb │ │ ├── net-tools │ │ │ ├── net-tools │ │ │ │ ├── Add_missing_headers.patch │ │ │ │ ├── net-tools-config.h │ │ │ │ └── net-tools-config.make │ │ │ └── net-tools_2.10.bb │ │ ├── newt │ │ │ ├── files │ │ │ │ ├── 0001-detect-gold-as-GNU-linker-too.patch │ │ │ │ ├── 0002-don-t-ignore-CFLAGS-when-building-snack.patch │ │ │ │ ├── Makefile.in-Add-tinfo-library-to-the-linking-librari.patch │ │ │ │ └── cross_ar.patch │ │ │ └── libnewt_0.52.21.bb │ │ ├── packagegroups │ │ │ ├── packagegroup-core-base-utils.bb │ │ │ └── packagegroup-core-full-cmdline.bb │ │ ├── pam │ │ │ ├── libpam │ │ │ │ ├── 0001-Makefile.am-support-usrmage.patch │ │ │ │ ├── 99_pam │ │ │ │ ├── crypt_configure.patch │ │ │ │ ├── libpam-xtests.patch │ │ │ │ ├── pam-security-abstract-securetty-handling.patch │ │ │ │ ├── pam-unix-nullok-secure.patch │ │ │ │ ├── pam.d │ │ │ │ │ ├── common-account │ │ │ │ │ ├── common-auth │ │ │ │ │ ├── common-password │ │ │ │ │ ├── common-session │ │ │ │ │ ├── common-session-noninteractive │ │ │ │ │ └── other │ │ │ │ └── run-ptest │ │ │ └── libpam_1.3.1.bb │ │ ├── parted │ │ │ ├── files │ │ │ │ ├── 0002-libparted_fs_resize-link-against-libuuid-explicitly-.patch │ │ │ │ ├── fix-doc-mandir.patch │ │ │ │ ├── no_check.patch │ │ │ │ └── run-ptest │ │ │ └── parted_3.4.bb │ │ ├── pbzip2 │ │ │ ├── pbzip2 │ │ │ │ └── 0001-pbzip2-Fix-invalid-suffix-on-literal-C-11-warning.patch │ │ │ └── pbzip2_1.1.13.bb │ │ ├── perl │ │ │ ├── libconvert-asn1-perl_0.27.bb │ │ │ ├── libtimedate-perl_2.30.bb │ │ │ ├── libxml-namespacesupport-perl_1.12.bb │ │ │ ├── libxml-sax-base-perl_1.09.bb │ │ │ └── libxml-sax-perl_1.02.bb │ │ ├── pigz │ │ │ └── pigz_2.6.bb │ │ ├── procps │ │ │ ├── procps │ │ │ │ ├── 0001-w.c-correct-musl-builds.patch │ │ │ │ ├── 0002-proc-escape.c-add-missing-include.patch │ │ │ │ └── sysctl.conf │ │ │ └── procps_3.3.17.bb │ │ ├── psmisc │ │ │ ├── psmisc.inc │ │ │ ├── psmisc │ │ │ │ └── 0001-Use-UINTPTR_MAX-instead-of-__WORDSIZE.patch │ │ │ └── psmisc_23.4.bb │ │ ├── quota │ │ │ ├── quota │ │ │ │ ├── 0001-quota-Use-realloc-3-instead-of-reallocarray-3.patch │ │ │ │ └── fcntl.patch │ │ │ └── quota_4.06.bb │ │ ├── rpcbind │ │ │ ├── rpcbind │ │ │ │ ├── 0001-systemd-use-EnvironmentFile.patch │ │ │ │ ├── init.d │ │ │ │ ├── rpcbind.conf │ │ │ │ └── rpcbind_add_option_to_fix_port_number.patch │ │ │ └── rpcbind_1.2.5.bb │ │ ├── rpcsvc-proto │ │ │ ├── rpcsvc-proto.bb │ │ │ └── rpcsvc-proto │ │ │ │ └── 0001-Use-cross-compiled-rpcgen.patch │ │ ├── screen │ │ │ ├── screen │ │ │ │ ├── 0001-Remove-more-compatibility-stuff.patch │ │ │ │ ├── 0001-fix-for-multijob-build.patch │ │ │ │ ├── 0002-comm.h-now-depends-on-term.h.patch │ │ │ │ ├── CVE-2021-26937.patch │ │ │ │ └── screen.pam │ │ │ └── screen_4.8.0.bb │ │ ├── sed │ │ │ ├── sed │ │ │ │ └── run-ptest │ │ │ └── sed_4.8.bb │ │ ├── shadow │ │ │ ├── files │ │ │ │ ├── 0001-Disable-use-of-syslog-for-sysroot.patch │ │ │ │ ├── 0002-Allow-for-setting-password-in-clear-text.patch │ │ │ │ ├── commonio.c-fix-unexpected-open-failure-in-chroot-env.patch │ │ │ │ ├── login.defs_shadow-sysroot │ │ │ │ ├── login_defs_pam.sed │ │ │ │ ├── pam.d │ │ │ │ │ ├── chfn │ │ │ │ │ ├── chpasswd │ │ │ │ │ ├── chsh │ │ │ │ │ ├── login │ │ │ │ │ ├── newusers │ │ │ │ │ ├── passwd │ │ │ │ │ └── su │ │ │ │ ├── securetty │ │ │ │ ├── shadow-4.1.3-dots-in-usernames.patch │ │ │ │ ├── shadow-relaxed-usernames.patch │ │ │ │ └── shadow-update-pam-conf.patch │ │ │ ├── shadow-securetty_4.6.bb │ │ │ ├── shadow-sysroot_4.6.bb │ │ │ ├── shadow.inc │ │ │ └── shadow_4.8.1.bb │ │ ├── slang │ │ │ ├── slang │ │ │ │ ├── array_test.patch │ │ │ │ ├── dont-link-to-host.patch │ │ │ │ ├── no-x.patch │ │ │ │ ├── run-ptest │ │ │ │ ├── terminfo_fixes.patch │ │ │ │ └── test-add-output-in-the-format-result-testname.patch │ │ │ └── slang_2.3.2.bb │ │ ├── stress-ng │ │ │ ├── stress-ng │ │ │ │ ├── 0001-Do-not-preserve-ownership-when-installing-example-jo.patch │ │ │ │ └── no_daddr_t.patch │ │ │ └── stress-ng_0.12.05.bb │ │ ├── sudo │ │ │ ├── files │ │ │ │ ├── 0001-sudo.conf.in-fix-conflict-with-multilib.patch │ │ │ │ └── sudo.pam │ │ │ ├── sudo.inc │ │ │ └── sudo_1.9.6p1.bb │ │ ├── sysklogd │ │ │ ├── files │ │ │ │ └── sysklogd │ │ │ └── sysklogd_2.2.2.bb │ │ ├── sysstat │ │ │ ├── sysstat.inc │ │ │ ├── sysstat │ │ │ │ ├── 0001-configure.in-remove-check-for-chkconfig.patch │ │ │ │ ├── 99_sysstat │ │ │ │ └── sysstat.service │ │ │ └── sysstat_12.4.3.bb │ │ ├── tar │ │ │ └── tar_1.34.bb │ │ ├── tcp-wrappers │ │ │ ├── tcp-wrappers-7.6 │ │ │ │ ├── 0001-Fix-build-with-clang.patch │ │ │ │ ├── 0001-Remove-fgets-extern-declaration.patch │ │ │ │ ├── 00_man_quoting.diff │ │ │ │ ├── 01_man_portability.patch │ │ │ │ ├── 05_wildcard_matching.patch │ │ │ │ ├── 06_fix_gethostbyname.patch │ │ │ │ ├── 10_usagi-ipv6.patch │ │ │ │ ├── 11_tcpd_blacklist.patch │ │ │ │ ├── 11_usagi_fix.patch │ │ │ │ ├── 12_makefile_config.patch │ │ │ │ ├── 13_shlib_weaksym.patch │ │ │ │ ├── 14_cidr_support.patch │ │ │ │ ├── 15_match_clarify.patch │ │ │ │ ├── expand_remote_port.patch │ │ │ │ ├── fix_warnings.patch │ │ │ │ ├── fix_warnings2.patch │ │ │ │ ├── have_strerror.patch │ │ │ │ ├── ldflags.patch │ │ │ │ ├── makefile-fix-parallel.patch │ │ │ │ ├── man_fromhost.patch │ │ │ │ ├── musl-decls.patch │ │ │ │ ├── rename_strings_variable.patch │ │ │ │ ├── restore_sigalarm.patch │ │ │ │ ├── rfc931.diff │ │ │ │ ├── safe_finger.8 │ │ │ │ ├── safe_finger.patch │ │ │ │ ├── sig_fix.patch │ │ │ │ ├── siglongjmp.patch │ │ │ │ ├── socklen_t.patch │ │ │ │ ├── tcpdchk_libwrapped.patch │ │ │ │ └── try-from.8 │ │ │ └── tcp-wrappers_7.6.bb │ │ ├── texinfo-dummy-native │ │ │ ├── texinfo-dummy-native.bb │ │ │ └── texinfo-dummy │ │ │ │ ├── COPYING │ │ │ │ └── template.py │ │ ├── texinfo │ │ │ ├── texinfo │ │ │ │ ├── disable-native-tools.patch │ │ │ │ ├── dont-depend-on-help2man.patch │ │ │ │ ├── link-zip.patch │ │ │ │ ├── texinfo-4.12-zlib.patch │ │ │ │ └── use_host_makedoc.patch │ │ │ └── texinfo_6.7.bb │ │ ├── time │ │ │ └── time_1.9.bb │ │ ├── timezone │ │ │ ├── timezone.inc │ │ │ ├── tzcode-native.bb │ │ │ └── tzdata.bb │ │ ├── unzip │ │ │ ├── unzip │ │ │ │ ├── 0001-unzip-fix-CVE-2018-1000035.patch │ │ │ │ ├── 06-unzip60-alt-iconv-utf8_CVE-2015-1315.patch │ │ │ │ ├── 09-cve-2014-8139-crc-overflow.patch │ │ │ │ ├── 10-cve-2014-8140-test-compr-eb.patch │ │ │ │ ├── 11-cve-2014-8141-getzip64data.patch │ │ │ │ ├── 18-cve-2014-9913-unzip-buffer-overflow.patch │ │ │ │ ├── 19-cve-2016-9844-zipinfo-buffer-overflow.patch │ │ │ │ ├── CVE-2015-7696.patch │ │ │ │ ├── CVE-2015-7697.patch │ │ │ │ ├── CVE-2018-18384.patch │ │ │ │ ├── CVE-2019-13232_p1.patch │ │ │ │ ├── CVE-2019-13232_p2.patch │ │ │ │ ├── CVE-2019-13232_p3.patch │ │ │ │ ├── avoid-strip.patch │ │ │ │ ├── cve-2014-9636.patch │ │ │ │ ├── define-ldflags.patch │ │ │ │ ├── fix-security-format.patch │ │ │ │ └── symlink.patch │ │ │ └── unzip_6.0.bb │ │ ├── watchdog │ │ │ ├── watchdog-config.bb │ │ │ ├── watchdog-config │ │ │ │ ├── watchdog.conf │ │ │ │ └── watchdog.default │ │ │ ├── watchdog │ │ │ │ ├── 0001-watchdog-remove-interdependencies-of-watchdog-and-wd.patch │ │ │ │ ├── 0001-wd_keepalive.service-use-run-instead-of-var-run.patch │ │ │ │ ├── watchdog.init │ │ │ │ └── wd_keepalive.init │ │ │ └── watchdog_5.16.bb │ │ ├── wget │ │ │ ├── wget.inc │ │ │ ├── wget │ │ │ │ └── 0002-improve-reproducibility.patch │ │ │ └── wget_1.21.1.bb │ │ ├── which │ │ │ ├── which-2.21 │ │ │ │ └── automake.patch │ │ │ └── which_2.21.bb │ │ ├── xdg-utils │ │ │ ├── xdg-utils │ │ │ │ ├── 0001-Don-t-build-the-in-script-manual.patch │ │ │ │ └── 0001-Reinstate-xdg-terminal.patch │ │ │ └── xdg-utils_1.1.3.bb │ │ ├── xinetd │ │ │ ├── xinetd │ │ │ │ ├── xinetd.default │ │ │ │ ├── xinetd.init │ │ │ │ └── xinetd.service │ │ │ └── xinetd_2.3.15.4.bb │ │ ├── xz │ │ │ └── xz_5.2.5.bb │ │ ├── zip │ │ │ ├── zip-3.0 │ │ │ │ ├── 10-remove-build-date.patch │ │ │ │ ├── fix-security-format.patch │ │ │ │ └── zipnote-crashes-with-segfault.patch │ │ │ └── zip_3.0.bb │ │ └── zstd │ │ │ ├── zstd │ │ │ └── 0001-Makefile-sort-all-wildcard-file-list-expansions.patch │ │ │ └── zstd_1.4.9.bb │ ├── recipes-gnome │ │ ├── epiphany │ │ │ ├── epiphany_3.38.2.bb │ │ │ └── files │ │ │ │ ├── 0002-help-meson.build-disable-the-use-of-yelp.patch │ │ │ │ ├── distributor.patch │ │ │ │ └── migrator.patch │ │ ├── gcr │ │ │ └── gcr_3.38.1.bb │ │ ├── gdk-pixbuf │ │ │ ├── gdk-pixbuf │ │ │ │ ├── 0001-Fix-a-couple-of-decisions-around-cross-compilation.patch │ │ │ │ ├── 0001-Work-around-thumbnailer-cross-compile-failure.patch │ │ │ │ ├── 0003-target-only-Work-around-thumbnailer-cross-compile-fa.patch │ │ │ │ ├── 0004-Do-not-run-tests-when-building.patch │ │ │ │ ├── 0006-Build-thumbnailer-and-tests-also-in-cross-builds.patch │ │ │ │ ├── CVE-2020-29385.patch │ │ │ │ ├── fatal-loader.patch │ │ │ │ ├── missing-test-data.patch │ │ │ │ └── run-ptest │ │ │ └── gdk-pixbuf_2.40.0.bb │ │ ├── gnome │ │ │ ├── adwaita-icon-theme │ │ │ │ ├── 0001-Don-t-use-AC_CANONICAL_HOST-3.34.3.patch │ │ │ │ ├── 0001-Don-t-use-AC_CANONICAL_HOST.patch │ │ │ │ └── 0001-Run-installation-commands-as-shell-jobs.patch │ │ │ ├── adwaita-icon-theme_3.34.3.bb │ │ │ ├── adwaita-icon-theme_3.38.0.bb │ │ │ ├── gconf │ │ │ │ ├── create_config_directory.patch │ │ │ │ ├── python3.patch │ │ │ │ ├── remove_plus_from_invalid_characters_list.patch │ │ │ │ └── unable-connect-dbus.patch │ │ │ └── gconf_3.2.6.bb │ │ ├── gobject-introspection │ │ │ ├── gobject-introspection │ │ │ │ ├── 0001-Relocate-the-repository-directory-for-native-builds.patch │ │ │ │ ├── 0001-giscanner-ignore-error-return-codes-from-ldd-wrapper.patch │ │ │ │ └── 0001-meson.build-exclude-girepo_dep-if-introspection-data.patch │ │ │ └── gobject-introspection_1.66.1.bb │ │ ├── gsettings-desktop-schemas │ │ │ └── gsettings-desktop-schemas_3.38.0.bb │ │ ├── gtk+ │ │ │ ├── gtk+3.inc │ │ │ ├── gtk+3 │ │ │ │ ├── 0001-Hardcoded-libtool.patch │ │ │ │ ├── 0002-Do-not-try-to-initialize-GL-without-libGL.patch │ │ │ │ ├── 0003-Add-disable-opengl-configure-option.patch │ │ │ │ └── link_fribidi.patch │ │ │ └── gtk+3_3.24.25.bb │ │ ├── gtk-doc │ │ │ ├── files │ │ │ │ ├── 0001-Do-not-error-out-if-xsltproc-is-not-found.patch │ │ │ │ ├── 0001-Do-not-hardocode-paths-to-perl-python-in-scripts.patch │ │ │ │ ├── conditionaltests.patch │ │ │ │ ├── no-clobber.patch │ │ │ │ └── pkg-config-native.patch │ │ │ └── gtk-doc_1.33.2.bb │ │ ├── hicolor-icon-theme │ │ │ └── hicolor-icon-theme_0.17.bb │ │ ├── json-glib │ │ │ ├── json-glib │ │ │ │ └── run-ptest │ │ │ └── json-glib_1.6.2.bb │ │ ├── libdazzle │ │ │ └── libdazzle_3.38.0.bb │ │ ├── libgudev │ │ │ └── libgudev_234.bb │ │ ├── libhandy │ │ │ └── libhandy_1.2.0.bb │ │ ├── libnotify │ │ │ └── libnotify_0.7.9.bb │ │ ├── libportal │ │ │ └── libportal_0.3.bb │ │ ├── librsvg │ │ │ ├── librsvg │ │ │ │ ├── 0001-Auto-detect-Bsymbolic-fixes-configure-on-macOS.patch │ │ │ │ ├── 0001-Remove-non-reproducible-SRCDIR.patch │ │ │ │ └── gtk-option.patch │ │ │ └── librsvg_2.40.21.bb │ │ └── libsecret │ │ │ ├── libsecret │ │ │ └── determinism.patch │ │ │ └── libsecret_0.20.4.bb │ ├── recipes-graphics │ │ ├── builder │ │ │ ├── builder_0.1.bb │ │ │ └── files │ │ │ │ └── builder_session.sh │ │ ├── cairo │ │ │ ├── cairo │ │ │ │ ├── CVE-2018-19876.patch │ │ │ │ ├── CVE-2019-6461.patch │ │ │ │ ├── CVE-2019-6462.patch │ │ │ │ └── cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff │ │ │ └── cairo_1.16.0.bb │ │ ├── cantarell-fonts │ │ │ └── cantarell-fonts_0.301.bb │ │ ├── clutter │ │ │ ├── clutter-1.0.inc │ │ │ ├── clutter-1.0 │ │ │ │ ├── 0001-Remove-clutter.types-as-it-is-build-configuration-sp.patch │ │ │ │ ├── install-examples.patch │ │ │ │ ├── run-installed-tests-with-tap-output.patch │ │ │ │ └── run-ptest │ │ │ ├── clutter-1.0_1.26.4.bb │ │ │ ├── clutter-gst-3.0.inc │ │ │ ├── clutter-gst-3.0 │ │ │ │ └── 0001-Install-example-binary-needed-for-core-image-clutter.patch │ │ │ ├── clutter-gst-3.0_3.0.27.bb │ │ │ ├── clutter-gtk-1.0.inc │ │ │ ├── clutter-gtk-1.0 │ │ │ │ └── 0001-Add-a-config-variable-for-enabling-disabling-introsp.patch │ │ │ └── clutter-gtk-1.0_1.8.4.bb │ │ ├── cogl │ │ │ ├── cogl-1.0.inc │ │ │ ├── cogl-1.0 │ │ │ │ └── 0001-configure.ac-don-t-require-eglmesaext.h.patch │ │ │ └── cogl-1.0_1.22.8.bb │ │ ├── drm │ │ │ ├── libdrm │ │ │ │ └── 0001-meson-Also-search-for-rst2man.py.patch │ │ │ └── libdrm_2.4.104.bb │ │ ├── fontconfig │ │ │ ├── fontconfig │ │ │ │ └── revert-static-pkgconfig.patch │ │ │ └── fontconfig_2.13.1.bb │ │ ├── freetype │ │ │ ├── freetype │ │ │ │ └── use-right-libtool.patch │ │ │ └── freetype_2.10.4.bb │ │ ├── glew │ │ │ ├── glew │ │ │ │ └── no-strip.patch │ │ │ └── glew_2.2.0.bb │ │ ├── glslang │ │ │ ├── glslang │ │ │ │ └── 0001-generate-glslang-pkg-config.patch │ │ │ └── glslang_11.2.0.bb │ │ ├── harfbuzz │ │ │ └── harfbuzz_2.7.4.bb │ │ ├── igt-gpu-tools │ │ │ ├── igt-gpu-tools │ │ │ │ ├── 0001-lib-igt_edid-Allocate-raw-8-bytes-for-VSDB.patch │ │ │ │ └── reproducibility.patch │ │ │ └── igt-gpu-tools_git.bb │ │ ├── images │ │ │ ├── core-image-clutter.bb │ │ │ ├── core-image-weston.bb │ │ │ └── core-image-x11.bb │ │ ├── jpeg │ │ │ ├── files │ │ │ │ └── 0001-libjpeg-turbo-fix-package_qa-error.patch │ │ │ └── libjpeg-turbo_2.0.6.bb │ │ ├── kmscube │ │ │ └── kmscube_git.bb │ │ ├── libepoxy │ │ │ ├── files │ │ │ │ └── 0001-dispatch_common.h-define-also-EGL_NO_X11.patch │ │ │ └── libepoxy_1.5.5.bb │ │ ├── libfakekey │ │ │ └── libfakekey_git.bb │ │ ├── libmatchbox │ │ │ └── libmatchbox_1.12.bb │ │ ├── libsdl2 │ │ │ ├── libsdl2 │ │ │ │ └── more-gen-depends.patch │ │ │ └── libsdl2_2.0.14.bb │ │ ├── libva │ │ │ ├── libva-initial_2.10.0.bb │ │ │ ├── libva-utils_2.10.0.bb │ │ │ ├── libva.inc │ │ │ └── libva_2.10.0.bb │ │ ├── matchbox-session │ │ │ ├── matchbox-session │ │ │ │ └── matchbox-session │ │ │ └── matchbox-session_0.1.bb │ │ ├── matchbox-wm │ │ │ ├── matchbox-wm │ │ │ │ ├── 0001-Fix-build-with-gcc-10.patch │ │ │ │ └── kbdconfig │ │ │ └── matchbox-wm_1.2.2.bb │ │ ├── menu-cache │ │ │ ├── files │ │ │ │ └── 0001-Support-gcc10-compilation.patch │ │ │ └── menu-cache_1.1.0.bb │ │ ├── mesa │ │ │ ├── files │ │ │ │ ├── 0001-futex.h-Define-__NR_futex-if-it-does-not-exist.patch │ │ │ │ ├── 0001-meson-misdetects-64bit-atomics-on-mips-clang.patch │ │ │ │ ├── 0001-meson.build-check-for-all-linux-host_os-combinations.patch │ │ │ │ └── 0002-meson.build-make-TLS-ELF-optional.patch │ │ │ ├── libglu_9.0.1.bb │ │ │ ├── mesa-demos │ │ │ │ ├── 0001-mesa-demos-Add-missing-data-files.patch │ │ │ │ ├── 0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch │ │ │ │ ├── 0004-Use-DEMOS_DATA_DIR-to-locate-data-files.patch │ │ │ │ ├── 0007-Install-few-more-test-programs.patch │ │ │ │ ├── 0008-glsl-perf-Add-few-missing-.glsl-.vert-.frag-files-to.patch │ │ │ │ ├── 0009-glsl-perf-Install-.glsl-.vert-.frag-files.patch │ │ │ │ ├── 0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch │ │ │ │ └── 0013-only-build-GLX-demos-if-needed.patch │ │ │ ├── mesa-demos_8.4.0.bb │ │ │ ├── mesa-gl_21.0.1.bb │ │ │ ├── mesa.inc │ │ │ └── mesa_21.0.1.bb │ │ ├── mini-x-session │ │ │ ├── files │ │ │ │ └── mini-x-session │ │ │ └── mini-x-session_0.1.bb │ │ ├── mx │ │ │ ├── mx-1.0 │ │ │ │ └── fix-test-includes.patch │ │ │ ├── mx-1.0_1.4.7.bb │ │ │ └── mx.inc │ │ ├── packagegroups │ │ │ ├── packagegroup-core-clutter.bb │ │ │ ├── packagegroup-core-weston.bb │ │ │ ├── packagegroup-core-x11-base.bb │ │ │ ├── packagegroup-core-x11-xserver.bb │ │ │ └── packagegroup-core-x11.bb │ │ ├── pango │ │ │ ├── pango │ │ │ │ └── run-ptest │ │ │ └── pango_1.48.2.bb │ │ ├── piglit │ │ │ ├── piglit │ │ │ │ ├── 0001-Add-a-missing-include-for-htobe32-definition.patch │ │ │ │ ├── 0001-cmake-install-bash-completions-in-the-right-place.patch │ │ │ │ ├── 0001-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch │ │ │ │ ├── 0001-framework-profile.py-make-test-lists-reproducible.patch │ │ │ │ ├── 0001-generated_tests-gen_tcs-tes_input_tests.py-do-not-ha.patch │ │ │ │ ├── 0001-serializer.py-make-.gz-files-reproducible.patch │ │ │ │ ├── 0001-tests-shader.py-sort-the-file-list-before-working-on.patch │ │ │ │ └── 0002-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch │ │ │ └── piglit_git.bb │ │ ├── pong-clock │ │ │ ├── pong-clock │ │ │ │ └── pong-clock-no-flicker.c │ │ │ └── pong-clock_1.0.bb │ │ ├── shaderc │ │ │ ├── files │ │ │ │ ├── 0001-cmake-disable-building-external-dependencies.patch │ │ │ │ └── 0002-libshaderc_util-fix-glslang-header-file-location.patch │ │ │ └── shaderc_2020.5.bb │ │ ├── spir │ │ │ ├── files │ │ │ │ └── 0001-fix-strncpy-bound-error.patch │ │ │ ├── spirv-headers_1.5.4.bb │ │ │ └── spirv-tools_2020.7.bb │ │ ├── startup-notification │ │ │ ├── startup-notification-0.12 │ │ │ │ ├── obsolete_automake_macros.patch │ │ │ │ └── time_t.patch │ │ │ └── startup-notification_0.12.bb │ │ ├── ttf-fonts │ │ │ ├── liberation-fonts │ │ │ │ └── 30-liberation-aliases.conf │ │ │ ├── liberation-fonts_2.00.1.bb │ │ │ └── ttf-bitstream-vera_1.10.bb │ │ ├── virglrenderer │ │ │ ├── virglrenderer │ │ │ │ ├── 0001-gallium-Expand-libc-check-to-be-platform-OS-check.patch │ │ │ │ └── 0001-meson.build-use-python3-directly-for-python.patch │ │ │ └── virglrenderer_0.8.2.bb │ │ ├── vulkan │ │ │ ├── assimp │ │ │ │ ├── 0001-Use-ASSIMP_LIB_INSTALL_DIR-to-search-library.patch │ │ │ │ └── 0001-closes-https-github.com-assimp-assimp-issues-2733-up.patch │ │ │ ├── assimp_5.0.1.bb │ │ │ ├── vulkan-headers_1.2.170.0.bb │ │ │ ├── vulkan-loader_1.2.170.0.bb │ │ │ ├── vulkan-samples │ │ │ │ ├── 0001-CMakeLists.txt-do-not-hardcode-lib-as-installation-t.patch │ │ │ │ └── debugfix.patch │ │ │ ├── vulkan-samples_git.bb │ │ │ └── vulkan-tools_1.2.170.0.bb │ │ ├── waffle │ │ │ └── waffle_1.6.1.bb │ │ ├── wayland │ │ │ ├── libinput │ │ │ │ ├── determinism.patch │ │ │ │ └── run-ptest │ │ │ ├── libinput_1.16.4.bb │ │ │ ├── mtdev_1.1.6.bb │ │ │ ├── wayland-protocols_1.20.bb │ │ │ ├── wayland-utils_1.0.0.bb │ │ │ ├── wayland │ │ │ │ ├── 0001-build-Fix-strndup-detection-on-MinGW.patch │ │ │ │ ├── 0002-Do-not-hardcode-the-path-to-wayland-scanner.patch │ │ │ │ ├── 0002-meson.build-find-the-native-wayland-scanner-directly.patch │ │ │ │ └── run-ptest │ │ │ ├── wayland_1.19.0.bb │ │ │ ├── weston-init.bb │ │ │ ├── weston-init │ │ │ │ ├── init │ │ │ │ ├── weston-autologin │ │ │ │ ├── weston-start │ │ │ │ ├── weston.env │ │ │ │ ├── weston.ini │ │ │ │ ├── weston.service │ │ │ │ └── weston.socket │ │ │ ├── weston │ │ │ │ ├── 0001-tests-include-fcntl.h-for-open-O_RDWR-O_CLOEXEC-and-.patch │ │ │ │ ├── 0001-weston-launch-Provide-a-default-version-that-doesn-t.patch │ │ │ │ ├── dont-use-plane-add-prop.patch │ │ │ │ ├── weston.desktop │ │ │ │ ├── weston.png │ │ │ │ └── xwayland.weston-start │ │ │ └── weston_9.0.0.bb │ │ ├── x11-common │ │ │ ├── xserver-nodm-init │ │ │ │ ├── X11 │ │ │ │ │ ├── Xsession │ │ │ │ │ └── Xsession.d │ │ │ │ │ │ ├── 13xdgbasedirs.sh │ │ │ │ │ │ ├── 89xdgautostart.sh │ │ │ │ │ │ └── 90XWindowManager.sh │ │ │ │ ├── Xserver │ │ │ │ ├── capability.conf │ │ │ │ ├── gplv2-license.patch │ │ │ │ ├── xserver-nodm │ │ │ │ ├── xserver-nodm.conf.in │ │ │ │ └── xserver-nodm.service.in │ │ │ └── xserver-nodm-init_3.0.bb │ │ ├── xcursor-transparent-theme │ │ │ └── xcursor-transparent-theme_git.bb │ │ ├── xinput-calibrator │ │ │ ├── pointercal-xinput │ │ │ │ ├── pointercal.xinput │ │ │ │ └── qemuall │ │ │ │ │ └── pointercal.xinput │ │ │ ├── pointercal-xinput_0.0.bb │ │ │ ├── xinput-calibrator │ │ │ │ ├── 0001-calibrator.hh-Include-string-to-get-std-string.patch │ │ │ │ ├── 30xinput_calibrate.sh │ │ │ │ └── Allow-xinput_calibrator_pointercal.sh-to-be-run-as-n.patch │ │ │ └── xinput-calibrator_git.bb │ │ ├── xorg-app │ │ │ ├── mkfontscale_1.2.1.bb │ │ │ ├── rgb_1.0.6.bb │ │ │ ├── x11perf_1.6.1.bb │ │ │ ├── xauth_1.1.bb │ │ │ ├── xdpyinfo │ │ │ │ └── disable-xkb.patch │ │ │ ├── xdpyinfo_1.3.2.bb │ │ │ ├── xev │ │ │ │ └── diet-x11.patch │ │ │ ├── xev_1.2.4.bb │ │ │ ├── xeyes_1.1.2.bb │ │ │ ├── xhost_1.0.8.bb │ │ │ ├── xinit │ │ │ │ └── 0001-Make-manpage-multilib-identical.patch │ │ │ ├── xinit_1.4.1.bb │ │ │ ├── xinput_1.6.3.bb │ │ │ ├── xkbcomp_1.4.4.bb │ │ │ ├── xmodmap_1.0.10.bb │ │ │ ├── xorg-app-common.inc │ │ │ ├── xprop_1.2.5.bb │ │ │ ├── xrandr_1.5.1.bb │ │ │ ├── xset │ │ │ │ └── disable-xkb.patch │ │ │ ├── xset_1.2.4.bb │ │ │ ├── xvinfo_1.1.4.bb │ │ │ └── xwininfo_1.1.5.bb │ │ ├── xorg-driver │ │ │ ├── xf86-input-evdev_2.10.6.bb │ │ │ ├── xf86-input-keyboard_1.9.0.bb │ │ │ ├── xf86-input-libinput_0.30.0.bb │ │ │ ├── xf86-input-mouse_1.9.3.bb │ │ │ ├── xf86-input-synaptics │ │ │ │ └── 64bit_time_t_support.patch │ │ │ ├── xf86-input-synaptics_1.9.1.bb │ │ │ ├── xf86-input-vmmouse_13.1.0.bb │ │ │ ├── xf86-video-cirrus_1.5.3.bb │ │ │ ├── xf86-video-fbdev_0.5.0.bb │ │ │ ├── xf86-video-intel │ │ │ │ ├── 0001-Sync-i915_pciids-upto-8717c6b7414f.patch │ │ │ │ └── 0001-i810-Avoid-duplicate-definition-of-I810PatternROP.patch │ │ │ ├── xf86-video-intel_git.bb │ │ │ ├── xf86-video-vesa_2.5.0.bb │ │ │ ├── xf86-video-vmware │ │ │ │ └── 0002-add-option-for-vmwgfx.patch │ │ │ ├── xf86-video-vmware_13.3.0.bb │ │ │ ├── xorg-driver-common.inc │ │ │ ├── xorg-driver-input.inc │ │ │ └── xorg-driver-video.inc │ │ ├── xorg-font │ │ │ ├── encodings │ │ │ │ └── nocompiler.patch │ │ │ ├── encodings_1.0.5.bb │ │ │ ├── font-alias-1.0.4 │ │ │ │ └── nocompiler.patch │ │ │ ├── font-alias_1.0.4.bb │ │ │ ├── font-util_1.3.2.bb │ │ │ ├── xorg-font-common.inc │ │ │ ├── xorg-minimal-fonts.bb │ │ │ └── xorg-minimal-fonts │ │ │ │ └── misc │ │ │ │ ├── 6x13-ISO8859-1.pcf.gz │ │ │ │ ├── 6x13-ISO8859-10.pcf.gz │ │ │ │ ├── 6x13-ISO8859-11.pcf.gz │ │ │ │ ├── 6x13-ISO8859-13.pcf.gz │ │ │ │ ├── 6x13-ISO8859-14.pcf.gz │ │ │ │ ├── 6x13-ISO8859-15.pcf.gz │ │ │ │ ├── 6x13-ISO8859-16.pcf.gz │ │ │ │ ├── 6x13-ISO8859-2.pcf.gz │ │ │ │ ├── 6x13-ISO8859-3.pcf.gz │ │ │ │ ├── 6x13-ISO8859-4.pcf.gz │ │ │ │ ├── 6x13-ISO8859-5.pcf.gz │ │ │ │ ├── 6x13-ISO8859-7.pcf.gz │ │ │ │ ├── 6x13-ISO8859-8.pcf.gz │ │ │ │ ├── 6x13-ISO8859-9.pcf.gz │ │ │ │ ├── 6x13-KOI8-R.pcf.gz │ │ │ │ ├── 6x13.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-1.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-10.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-13.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-14.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-15.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-16.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-2.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-3.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-4.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-5.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-7.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-8.pcf.gz │ │ │ │ ├── 6x13B-ISO8859-9.pcf.gz │ │ │ │ ├── 6x13B.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-1.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-10.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-13.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-14.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-15.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-16.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-2.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-3.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-4.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-5.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-7.pcf.gz │ │ │ │ ├── 6x13O-ISO8859-9.pcf.gz │ │ │ │ ├── 6x13O.pcf.gz │ │ │ │ ├── cursor.pcf.gz │ │ │ │ └── fonts.dir │ │ ├── xorg-lib │ │ │ ├── libdmx_1.1.4.bb │ │ │ ├── libfontenc_1.1.4.bb │ │ │ ├── libice_1.0.10.bb │ │ │ ├── libpciaccess_0.16.bb │ │ │ ├── libpthread-stubs_0.4.bb │ │ │ ├── libsm_1.2.3.bb │ │ │ ├── libx11-compose-data │ │ │ │ └── 0001-Drop-x11-dependencies.patch │ │ │ ├── libx11-compose-data_1.6.8.bb │ │ │ ├── libx11 │ │ │ │ ├── Fix-hanging-issue-in-_XReply.patch │ │ │ │ └── disable_tests.patch │ │ │ ├── libx11_1.7.0.bb │ │ │ ├── libxau_1.0.9.bb │ │ │ ├── libxcb │ │ │ │ └── disable-check.patch │ │ │ ├── libxcb_1.14.bb │ │ │ ├── libxcomposite │ │ │ │ └── change-include-order.patch │ │ │ ├── libxcomposite_0.4.5.bb │ │ │ ├── libxcursor_1.2.0.bb │ │ │ ├── libxdamage_1.1.5.bb │ │ │ ├── libxdmcp_1.1.3.bb │ │ │ ├── libxext_1.3.4.bb │ │ │ ├── libxfixes_5.0.3.bb │ │ │ ├── libxfont2_2.0.4.bb │ │ │ ├── libxfont_1.5.4.bb │ │ │ ├── libxft_2.3.3.bb │ │ │ ├── libxi_1.7.10.bb │ │ │ ├── libxinerama_1.1.4.bb │ │ │ ├── libxkbcommon_1.0.3.bb │ │ │ ├── libxkbfile_1.1.0.bb │ │ │ ├── libxmu_1.1.3.bb │ │ │ ├── libxpm_3.5.13.bb │ │ │ ├── libxrandr_1.5.2.bb │ │ │ ├── libxrender_0.9.10.bb │ │ │ ├── libxres_1.2.0.bb │ │ │ ├── libxscrnsaver_1.2.3.bb │ │ │ ├── libxshmfence_1.3.bb │ │ │ ├── libxt │ │ │ │ └── libxt_fix_for_x32.patch │ │ │ ├── libxt_1.2.1.bb │ │ │ ├── libxtst_1.2.3.bb │ │ │ ├── libxv_1.0.11.bb │ │ │ ├── libxvmc_1.0.12.bb │ │ │ ├── libxxf86vm_1.1.4.bb │ │ │ ├── pixman │ │ │ │ └── 0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch │ │ │ ├── pixman_0.40.0.bb │ │ │ ├── xcb-util-image │ │ │ │ └── clang.patch │ │ │ ├── xcb-util-image_0.4.0.bb │ │ │ ├── xcb-util-keysyms_0.4.0.bb │ │ │ ├── xcb-util-renderutil_0.3.9.bb │ │ │ ├── xcb-util-wm_0.4.1.bb │ │ │ ├── xcb-util.inc │ │ │ ├── xcb-util_0.4.0.bb │ │ │ ├── xkeyboard-config_2.32.bb │ │ │ ├── xorg-lib-common.inc │ │ │ ├── xtrans │ │ │ │ └── multilibfix.patch │ │ │ └── xtrans_1.4.0.bb │ │ ├── xorg-proto │ │ │ ├── xcb-proto_1.14.1.bb │ │ │ └── xorgproto_2020.1.bb │ │ ├── xorg-util │ │ │ ├── makedepend_1.0.6.bb │ │ │ ├── util-macros_1.19.3.bb │ │ │ └── xorg-util-common.inc │ │ ├── xorg-xserver │ │ │ ├── xserver-xf86-config │ │ │ │ ├── qemuarm │ │ │ │ │ └── xorg.conf │ │ │ │ ├── qemuppc │ │ │ │ │ └── xorg.conf │ │ │ │ ├── qemush4 │ │ │ │ │ └── xorg.conf │ │ │ │ ├── qemux86-64 │ │ │ │ │ └── xorg.conf │ │ │ │ ├── qemux86 │ │ │ │ │ └── xorg.conf │ │ │ │ └── xorg.conf │ │ │ ├── xserver-xf86-config_0.1.bb │ │ │ ├── xserver-xorg.inc │ │ │ ├── xserver-xorg │ │ │ │ ├── 0001-Avoid-duplicate-definitions-of-IOPortBase.patch │ │ │ │ ├── 0001-Fix-segfault-on-probing-a-non-PCI-platform-device-on.patch │ │ │ │ ├── 0001-drmmode_display.c-add-missing-mi.h-include.patch │ │ │ │ ├── 0001-test-xtest-Initialize-array-with-braces.patch │ │ │ │ ├── 0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch │ │ │ │ ├── pkgconfig.patch │ │ │ │ └── sdksyms-no-build-path.patch │ │ │ └── xserver-xorg_1.20.10.bb │ │ └── xrestop │ │ │ └── xrestop_0.4.bb │ ├── recipes-kernel │ │ ├── blktrace │ │ │ ├── blktrace │ │ │ │ ├── CVE-2018-10689.patch │ │ │ │ ├── ldflags.patch │ │ │ │ └── make-btt-scripts-python3-ready.patch │ │ │ └── blktrace_git.bb │ │ ├── cryptodev │ │ │ ├── cryptodev-linux_1.12.bb │ │ │ ├── cryptodev-module_1.12.bb │ │ │ ├── cryptodev-tests_1.12.bb │ │ │ ├── cryptodev.inc │ │ │ └── files │ │ │ │ ├── 0001-Add-the-compile-and-install-rules-for-cryptodev-test.patch │ │ │ │ └── 0001-Disable-installing-header-file-provided-by-another-p.patch │ │ ├── dtc │ │ │ ├── dtc.inc │ │ │ ├── dtc │ │ │ │ ├── 0001-dtc-Fix-Makefile-to-add-CFLAGS-not-override.patch │ │ │ │ ├── 0001-fdtdump-Fix-gcc11-warning.patch │ │ │ │ └── make_install.patch │ │ │ └── dtc_1.6.0.bb │ │ ├── kern-tools │ │ │ └── kern-tools-native_git.bb │ │ ├── kexec │ │ │ ├── kexec-tools │ │ │ │ ├── 0001-arm64-kexec-disabled-check-if-kaslr-seed-dtb-propert.patch │ │ │ │ ├── 0001-kexec-arch-ppc-kexec-ppc.c-correct-double-definition.patch │ │ │ │ ├── 0001-powerpc-change-the-memory-size-limit.patch │ │ │ │ ├── 0002-purgatory-Pass-r-directly-to-linker.patch │ │ │ │ ├── 0003-kexec-ARM-Fix-add_buffer_phys_virt-align-issue.patch │ │ │ │ ├── 0005-Disable-PIE-during-link.patch │ │ │ │ ├── 0007-kexec-un-break-the-build-on-32-bit-x86.patch │ │ │ │ ├── kdump │ │ │ │ ├── kdump.conf │ │ │ │ └── kdump.service │ │ │ └── kexec-tools_2.0.21.bb │ │ ├── kmod │ │ │ ├── depmodwrapper-cross_1.0.bb │ │ │ ├── kmod-native_git.bb │ │ │ ├── kmod.inc │ │ │ ├── kmod │ │ │ │ ├── avoid_parallel_tests.patch │ │ │ │ ├── depmod-search.conf │ │ │ │ ├── ptest.patch │ │ │ │ └── run-ptest │ │ │ └── kmod_git.bb │ │ ├── linux-firmware │ │ │ └── linux-firmware_20210208.bb │ │ ├── linux-libc-headers │ │ │ ├── linux-libc-headers.inc │ │ │ ├── linux-libc-headers │ │ │ │ ├── 0001-include-linux-stddef.h-in-swab.h-uapi-header.patch │ │ │ │ ├── 0001-kbuild-install_headers.sh-Strip-_UAPI-from-if-define.patch │ │ │ │ ├── 0001-libc-compat.h-fix-some-issues-arising-from-in6.h.patch │ │ │ │ ├── 0001-libc-compat.h-musl-_does_-define-IFF_LOWER_UP-DORMAN.patch │ │ │ │ ├── 0001-scripts-Use-fixed-input-and-output-files-instead-of-.patch │ │ │ │ └── 0003-remove-inclusion-of-sysinfo.h-in-kernel.h.patch │ │ │ └── linux-libc-headers_5.10.bb │ │ ├── linux │ │ │ ├── kernel-devsrc.bb │ │ │ ├── linux-dummy.bb │ │ │ ├── linux-dummy │ │ │ │ └── COPYING.GPL │ │ │ ├── linux-yocto-dev.bb │ │ │ ├── linux-yocto-rt_5.10.bb │ │ │ ├── linux-yocto-rt_5.4.bb │ │ │ ├── linux-yocto-tiny_5.10.bb │ │ │ ├── linux-yocto-tiny_5.4.bb │ │ │ ├── linux-yocto.inc │ │ │ ├── linux-yocto_5.10.bb │ │ │ └── linux-yocto_5.4.bb │ │ ├── lttng │ │ │ ├── babeltrace │ │ │ │ └── run-ptest │ │ │ ├── babeltrace2 │ │ │ │ ├── 0001-Make-manpages-multilib-identical.patch │ │ │ │ ├── 0001-tests-do-not-run-test-applications-from-.libs.patch │ │ │ │ └── run-ptest │ │ │ ├── babeltrace2_2.0.3.bb │ │ │ ├── babeltrace_1.5.8.bb │ │ │ ├── lttng-modules │ │ │ │ ├── 0001-Fix-memory-leaks-on-event-destroy.patch │ │ │ │ ├── 0002-Fix-filter-interpreter-early-exits-on-uninitialized-.patch │ │ │ │ ├── 0003-fix-mm-tracing-record-slab-name-for-kmem_cache_free-.patch │ │ │ │ ├── 0004-Fix-kretprobe-null-ptr-deref-on-session-destroy.patch │ │ │ │ └── Makefile-Do-not-fail-if-CONFIG_TRACEPOINTS-is-not-en.patch │ │ │ ├── lttng-modules_2.12.5.bb │ │ │ ├── lttng-platforms.inc │ │ │ ├── lttng-tools │ │ │ │ ├── 0001-tests-do-not-strip-a-helper-library.patch │ │ │ │ ├── 0001-tests-regression-disable-the-tools-live-tests.patch │ │ │ │ ├── determinism.patch │ │ │ │ ├── lttng-sessiond.service │ │ │ │ └── run-ptest │ │ │ ├── lttng-tools_2.12.3.bb │ │ │ ├── lttng-ust │ │ │ │ └── 0001-python-lttngust-Makefile.am-Add-install-lib-to-setup.patch │ │ │ └── lttng-ust_2.12.1.bb │ │ ├── make-mod-scripts │ │ │ └── make-mod-scripts_1.0.bb │ │ ├── modutils-initscripts │ │ │ ├── files │ │ │ │ ├── PD.patch │ │ │ │ └── modutils.sh │ │ │ └── modutils-initscripts.bb │ │ ├── perf │ │ │ ├── perf-perl.inc │ │ │ ├── perf.bb │ │ │ └── perf │ │ │ │ └── sort-pmuevents.py │ │ ├── powertop │ │ │ ├── powertop │ │ │ │ └── 0001-wakeup_xxx.h-include-limits.h.patch │ │ │ └── powertop_2.13.bb │ │ ├── systemtap │ │ │ ├── systemtap-native_git.bb │ │ │ ├── systemtap-uprobes_git.bb │ │ │ ├── systemtap │ │ │ │ ├── 0001-Do-not-let-configure-write-a-python-location-into-th.patch │ │ │ │ ├── 0001-Install-python-modules-to-correct-library-dir.patch │ │ │ │ ├── 0001-improve-reproducibility-for-c-compiling.patch │ │ │ │ ├── 0001-staprun-stapbpf-don-t-support-installing-a-non-root.patch │ │ │ │ └── 0001-transport-protect-include-and-callsite-with-same-con.patch │ │ │ ├── systemtap_git.bb │ │ │ └── systemtap_git.inc │ │ └── wireless-regdb │ │ │ └── wireless-regdb_2020.11.20.bb │ ├── recipes-multimedia │ │ ├── alsa │ │ │ ├── alsa-lib │ │ │ │ └── ad8c8e5503980295dd8e5e54a6285d2d7e32eb1e.patch │ │ │ ├── alsa-lib_1.2.4.bb │ │ │ ├── alsa-plugins_1.2.2.bb │ │ │ ├── alsa-tools_1.2.2.bb │ │ │ ├── alsa-topology-conf_1.2.4.bb │ │ │ ├── alsa-ucm-conf_1.2.4.bb │ │ │ ├── alsa-utils-scripts_1.2.4.bb │ │ │ ├── alsa-utils.inc │ │ │ └── alsa-utils_1.2.4.bb │ │ ├── ffmpeg │ │ │ ├── ffmpeg │ │ │ │ ├── 0001-libavutil-include-assembly-with-full-path-from-sourc.patch │ │ │ │ └── mips64_cpu_detection.patch │ │ │ └── ffmpeg_4.3.2.bb │ │ ├── flac │ │ │ └── flac_1.3.3.bb │ │ ├── gstreamer │ │ │ ├── gst-devtools │ │ │ │ └── 0001-connect-has-a-different-signature-on-musl.patch │ │ │ ├── gst-devtools_1.18.4.bb │ │ │ ├── gst-examples │ │ │ │ ├── 0001-Make-player-examples-installable.patch │ │ │ │ └── gst-player.desktop │ │ │ ├── gst-examples_1.18.4.bb │ │ │ ├── gstreamer1.0-libav_1.18.4.bb │ │ │ ├── gstreamer1.0-meta-base.bb │ │ │ ├── gstreamer1.0-omx_1.18.4.bb │ │ │ ├── gstreamer1.0-plugins-bad │ │ │ │ ├── 0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch │ │ │ │ ├── 0002-avoid-including-sys-poll.h-directly.patch │ │ │ │ ├── 0003-ensure-valid-sentinals-for-gst_structure_get-etc.patch │ │ │ │ ├── 0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch │ │ │ │ └── 0005-msdk-fix-includedir-path.patch │ │ │ ├── gstreamer1.0-plugins-bad_1.18.4.bb │ │ │ ├── gstreamer1.0-plugins-base │ │ │ │ ├── 0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch │ │ │ │ ├── 0002-ssaparse-enhance-SSA-text-lines-parsing.patch │ │ │ │ ├── 0003-viv-fb-Make-sure-config.h-is-included.patch │ │ │ │ └── 0004-glimagesink-Downrank-to-marginal.patch │ │ │ ├── gstreamer1.0-plugins-base_1.18.4.bb │ │ │ ├── gstreamer1.0-plugins-common.inc │ │ │ ├── gstreamer1.0-plugins-good │ │ │ │ ├── 0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch │ │ │ │ └── 0002-rtpjitterbuffer-Fix-parsing-of-the-mediaclk-direct-f.patch │ │ │ ├── gstreamer1.0-plugins-good_1.18.4.bb │ │ │ ├── gstreamer1.0-plugins-packaging.inc │ │ │ ├── gstreamer1.0-plugins-ugly_1.18.4.bb │ │ │ ├── gstreamer1.0-ptest.inc │ │ │ ├── gstreamer1.0-python_1.18.4.bb │ │ │ ├── gstreamer1.0-rtsp-server_1.18.4.bb │ │ │ ├── gstreamer1.0-vaapi_1.18.4.bb │ │ │ ├── gstreamer1.0 │ │ │ │ ├── 0001-gst-gstpluginloader.c-when-env-var-is-set-do-not-fal.patch │ │ │ │ ├── 0001-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch │ │ │ │ ├── 0002-Remove-unused-valgrind-detection.patch │ │ │ │ └── 0003-meson-Add-option-for-installed-tests.patch │ │ │ └── gstreamer1.0_1.18.4.bb │ │ ├── lame │ │ │ ├── lame │ │ │ │ └── no-gtk1.patch │ │ │ └── lame_3.100.bb │ │ ├── liba52 │ │ │ ├── liba52 │ │ │ │ └── buildcleanup.patch │ │ │ └── liba52_0.7.4.bb │ │ ├── libid3tag │ │ │ ├── libid3tag │ │ │ │ ├── 0001-Fix-gperf-3.1-incompatibility.patch │ │ │ │ ├── 10_utf16.patch │ │ │ │ ├── addpkgconfig.patch │ │ │ │ ├── cflags_filter.patch │ │ │ │ ├── obsolete_automake_macros.patch │ │ │ │ └── unknown-encoding.patch │ │ │ └── libid3tag_0.15.1b.bb │ │ ├── libogg │ │ │ └── libogg_1.3.4.bb │ │ ├── libomxil │ │ │ ├── libomxil-0.9.3 │ │ │ │ ├── configure-fix.patch │ │ │ │ ├── disable-so-versioning.patch │ │ │ │ ├── dynamicloader-linking.patch │ │ │ │ ├── makefile-docdir-fix.patch │ │ │ │ └── parallel-make.patch │ │ │ └── libomxil_0.9.3.bb │ │ ├── libpng │ │ │ └── libpng_1.6.37.bb │ │ ├── libsamplerate │ │ │ ├── libsamplerate0 │ │ │ │ └── 0001-configure.ac-improve-alsa-handling.patch │ │ │ └── libsamplerate0_0.1.9.bb │ │ ├── libsndfile │ │ │ ├── libsndfile1 │ │ │ │ ├── 0001-a-ulaw-fix-multiple-buffer-overflows-432.patch │ │ │ │ ├── CVE-2017-12562.patch │ │ │ │ ├── CVE-2017-14634.patch │ │ │ │ ├── CVE-2017-6892.patch │ │ │ │ ├── CVE-2017-8361-8365.patch │ │ │ │ ├── CVE-2017-8362.patch │ │ │ │ ├── CVE-2017-8363.patch │ │ │ │ ├── CVE-2018-13139.patch │ │ │ │ ├── CVE-2018-19432.patch │ │ │ │ ├── CVE-2018-19758.patch │ │ │ │ └── CVE-2019-3832.patch │ │ │ └── libsndfile1_1.0.28.bb │ │ ├── libtheora │ │ │ ├── libtheora-1.1.1 │ │ │ │ └── no-docs.patch │ │ │ └── libtheora_1.1.1.bb │ │ ├── libtiff │ │ │ └── tiff_4.2.0.bb │ │ ├── libvorbis │ │ │ ├── libvorbis │ │ │ │ └── 0001-configure-Check-for-clang.patch │ │ │ └── libvorbis_1.3.7.bb │ │ ├── mpeg2dec │ │ │ ├── files │ │ │ │ ├── 0001-Import-revision-1206-from-upstream-to-fix-PIE-build.patch │ │ │ │ ├── 0001-check-for-available-arm-optimizations.patch │ │ │ │ ├── 0002-Set-visibility-of-global-symbols-used-in-ARM-specifi.patch │ │ │ │ ├── 61_global-symbol-test.patch │ │ │ │ └── altivec_h_needed.patch │ │ │ └── mpeg2dec_0.5.1.bb │ │ ├── mpg123 │ │ │ └── mpg123_1.26.4.bb │ │ ├── pulseaudio │ │ │ ├── pulseaudio.inc │ │ │ ├── pulseaudio │ │ │ │ ├── 0001-build-sys-Add-an-option-for-enabling-disabling-Valgr.patch │ │ │ │ ├── 0001-client-conf-Add-allow-autospawn-for-root.patch │ │ │ │ ├── 0001-meson-Check-for-__get_cpuid.patch │ │ │ │ ├── 0002-do-not-display-CLFAGS-to-improve-reproducibility-bui.patch │ │ │ │ └── volatiles.04_pulse │ │ │ └── pulseaudio_14.2.bb │ │ ├── sbc │ │ │ ├── sbc │ │ │ │ └── 0001-sbc_primitives-Fix-build-on-non-x86.patch │ │ │ └── sbc_1.5.bb │ │ ├── speex │ │ │ ├── speex_1.2.0.bb │ │ │ └── speexdsp_1.2.0.bb │ │ ├── webp │ │ │ └── libwebp_1.2.0.bb │ │ └── x264 │ │ │ ├── x264 │ │ │ ├── Fix-X32-build-by-disabling-asm.patch │ │ │ └── don-t-default-to-cortex-a9-with-neon.patch │ │ │ └── x264_git.bb │ ├── recipes-rt │ │ ├── README │ │ ├── images │ │ │ ├── core-image-rt-sdk.bb │ │ │ └── core-image-rt.bb │ │ └── rt-tests │ │ │ ├── files │ │ │ ├── 0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch │ │ │ ├── rt_bmark.py │ │ │ └── run-ptest │ │ │ ├── hwlatdetect_1.10.bb │ │ │ ├── rt-tests.inc │ │ │ └── rt-tests_1.10.bb │ ├── recipes-sato │ │ ├── images │ │ │ ├── core-image-sato-dev.bb │ │ │ ├── core-image-sato-ptest-fast.bb │ │ │ ├── core-image-sato-sdk-ptest.bb │ │ │ ├── core-image-sato-sdk.bb │ │ │ └── core-image-sato.bb │ │ ├── l3afpad │ │ │ └── l3afpad_git.bb │ │ ├── matchbox-config-gtk │ │ │ ├── files │ │ │ │ └── no-handed.patch │ │ │ └── matchbox-config-gtk_0.2.bb │ │ ├── matchbox-desktop │ │ │ ├── files │ │ │ │ └── vfolders │ │ │ │ │ ├── All.directory │ │ │ │ │ ├── Applications.directory │ │ │ │ │ ├── Games.directory │ │ │ │ │ ├── Root.order │ │ │ │ │ └── Settings.directory │ │ │ └── matchbox-desktop_2.2.bb │ │ ├── matchbox-keyboard │ │ │ ├── files │ │ │ │ ├── 0001-desktop-file-Hide-the-keyboard-from-app-list.patch │ │ │ │ └── 80matchboxkeyboard.sh │ │ │ └── matchbox-keyboard_0.1.1.bb │ │ ├── matchbox-panel-2 │ │ │ ├── files │ │ │ │ └── 0001-applets-systray-Allow-icons-to-be-smaller.patch │ │ │ └── matchbox-panel-2_2.11.bb │ │ ├── matchbox-sato │ │ │ ├── matchbox-session-sato │ │ │ │ ├── index.theme │ │ │ │ └── session │ │ │ └── matchbox-session-sato_0.1.bb │ │ ├── matchbox-terminal │ │ │ └── matchbox-terminal_0.2.bb │ │ ├── matchbox-theme-sato │ │ │ ├── matchbox-theme-sato.inc │ │ │ └── matchbox-theme-sato_0.2.bb │ │ ├── packagegroups │ │ │ └── packagegroup-core-x11-sato.bb │ │ ├── pcmanfm │ │ │ ├── files │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ ├── gnome-fs-directory.png │ │ │ │ ├── gnome-fs-regular.png │ │ │ │ ├── gnome-mime-text-plain.png │ │ │ │ └── no-desktop.patch │ │ │ └── pcmanfm_1.3.2.bb │ │ ├── pulseaudio-sato │ │ │ ├── pulseaudio-client-conf-sato │ │ │ │ └── 50-sato.conf │ │ │ └── pulseaudio-client-conf-sato_1.bb │ │ ├── puzzles │ │ │ ├── files │ │ │ │ ├── 0001-Use-Wno-error-format-overflow-if-the-compiler-suppor.patch │ │ │ │ ├── 0001-malloc-Check-for-excessive-values-to-malloc.patch │ │ │ │ ├── 0001-map-Fix-stringop-overflow-warning.patch │ │ │ │ ├── 0001-palisade-Fix-warnings-with-clang-on-arm.patch │ │ │ │ ├── 0001-pattern.c-Change-string-lenght-parameter-to-be-size_.patch │ │ │ │ ├── fix-compiling-failure-with-option-g-O.patch │ │ │ │ └── fix-ki-uninitialized.patch │ │ │ └── puzzles_git.bb │ │ ├── rxvt-unicode │ │ │ ├── rxvt-unicode.inc │ │ │ ├── rxvt-unicode │ │ │ │ ├── 0001-libev-remove-deprecated-throw-specification.patch │ │ │ │ ├── rxvt.desktop │ │ │ │ ├── rxvt.png │ │ │ │ └── xwc.patch │ │ │ └── rxvt-unicode_9.22.bb │ │ ├── sato-screenshot │ │ │ └── sato-screenshot_0.3.bb │ │ ├── settings-daemon │ │ │ ├── files │ │ │ │ ├── 70settings-daemon.sh │ │ │ │ └── addsoundkeys.patch │ │ │ └── settings-daemon_0.0.2.bb │ │ ├── shutdown-desktop │ │ │ ├── shutdown-desktop.bb │ │ │ └── shutdown-desktop │ │ │ │ └── shutdown.desktop │ │ └── webkit │ │ │ ├── libwpe_1.8.0.bb │ │ │ ├── webkitgtk │ │ │ ├── 0001-Enable-THREADS_PREFER_PTHREAD_FLAG.patch │ │ │ ├── 0001-Extend-atomics-check-to-include-1-byte-CAS-test.patch │ │ │ ├── 0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch │ │ │ ├── 0001-Fix-build-with-musl.patch │ │ │ ├── 0001-Fix-racy-parallel-build-of-WebKit2-4.0.gir.patch │ │ │ ├── 0001-Tweak-gtkdoc-settings-so-that-gtkdoc-generation-work.patch │ │ │ ├── 0001-When-building-introspection-files-add-CMAKE_C_FLAGS-.patch │ │ │ ├── include_xutil.patch │ │ │ ├── musl-lower-stack-usage.patch │ │ │ └── reduce-memory-overheads.patch │ │ │ ├── webkitgtk_2.30.5.bb │ │ │ └── wpebackend-fdo_1.8.0.bb │ ├── recipes-support │ │ ├── apr │ │ │ ├── apr-util │ │ │ │ ├── 0001-Fix-error-handling-in-gdbm.patch │ │ │ │ ├── configfix.patch │ │ │ │ ├── configure_fixes.patch │ │ │ │ └── run-ptest │ │ │ ├── apr-util_1.6.1.bb │ │ │ ├── apr │ │ │ │ ├── 0001-Add-option-to-disable-timed-dependant-tests.patch │ │ │ │ ├── 0002-apr-Remove-workdir-path-references-from-installed-ap.patch │ │ │ │ ├── 0003-Makefile.in-configure.in-support-cross-compiling.patch │ │ │ │ ├── 0004-Fix-packet-discards-HTTP-redirect.patch │ │ │ │ ├── 0005-configure.in-fix-LTFLAGS-to-make-it-work-with-ccache.patch │ │ │ │ ├── 0006-apr-fix-off_t-size-doesn-t-match-in-glibc-when-cross.patch │ │ │ │ ├── 0007-explicitly-link-libapr-against-phtread-to-make-gold-.patch │ │ │ │ ├── autoconf270.patch │ │ │ │ ├── libtoolize_check.patch │ │ │ │ └── run-ptest │ │ │ └── apr_1.7.0.bb │ │ ├── argp-standalone │ │ │ ├── argp-standalone_1.3.bb │ │ │ └── files │ │ │ │ ├── 0001-throw-in-funcdef.patch │ │ │ │ ├── 0002-isprint.patch │ │ │ │ └── out_of_tree_build.patch │ │ ├── aspell │ │ │ └── aspell_0.60.8.bb │ │ ├── atk │ │ │ ├── at-spi2-atk_2.38.0.bb │ │ │ ├── at-spi2-core_2.38.0.bb │ │ │ └── atk_2.36.0.bb │ │ ├── attr │ │ │ ├── acl │ │ │ │ ├── 0001-test-patch-out-failing-bits.patch │ │ │ │ ├── 0001-tests-do-not-hardcode-the-build-path-into-a-helper-l.patch │ │ │ │ └── run-ptest │ │ │ ├── acl_2.2.53.bb │ │ │ ├── attr.inc │ │ │ ├── attr │ │ │ │ └── run-ptest │ │ │ └── attr_2.5.1.bb │ │ ├── bash-completion │ │ │ └── bash-completion_2.11.bb │ │ ├── bmap-tools │ │ │ └── bmap-tools_3.6.bb │ │ ├── boost │ │ │ ├── boost-1.75.0.inc │ │ │ ├── boost-build-native_4.3.0.bb │ │ │ ├── boost.inc │ │ │ ├── boost │ │ │ │ ├── 0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch │ │ │ │ ├── 0001-dont-setup-compiler-flags-m32-m64.patch │ │ │ │ ├── 0001-fiber-libs-Define-SYS_futex-if-it-does-not-exist.patch │ │ │ │ ├── boost-CVE-2012-2677.patch │ │ │ │ └── boost-math-disable-pch-for-gcc.patch │ │ │ └── boost_1.75.0.bb │ │ ├── ca-certificates │ │ │ ├── ca-certificates │ │ │ │ ├── 0001-update-ca-certificates-don-t-use-Debianisms-in-run-p.patch │ │ │ │ ├── 0002-update-ca-certificates-use-SYSROOT.patch │ │ │ │ ├── 0003-update-ca-certificates-use-relative-symlinks-from-ET.patch │ │ │ │ ├── default-sysroot.patch │ │ │ │ ├── sbindir.patch │ │ │ │ └── update-ca-certificates-support-Toybox.patch │ │ │ └── ca-certificates_20210119.bb │ │ ├── consolekit │ │ │ ├── consolekit │ │ │ │ ├── add-polkit-configure-argument.patch │ │ │ │ └── sepbuildfix.patch │ │ │ └── consolekit_0.4.6.bb │ │ ├── curl │ │ │ ├── curl │ │ │ │ └── 0001-replace-krb5-config-with-pkg-config.patch │ │ │ └── curl_7.75.0.bb │ │ ├── db │ │ │ ├── db │ │ │ │ ├── 0001-Fix-libc-compatibility-by-renaming-atomic_init-API.patch │ │ │ │ ├── 0001-atomic-Rename-local-__atomic_compare_exchange-to-avo.patch │ │ │ │ ├── 0001-clock-Do-not-define-own-timespec.patch │ │ │ │ ├── 0001-configure-Add-explicit-tag-options-to-libtool-invoca.patch │ │ │ │ ├── fix-parallel-build.patch │ │ │ │ └── sequence-type.patch │ │ │ └── db_5.3.28.bb │ │ ├── debianutils │ │ │ └── debianutils_4.11.2.bb │ │ ├── diffoscope │ │ │ └── diffoscope_172.bb │ │ ├── dos2unix │ │ │ └── dos2unix_7.4.2.bb │ │ ├── enchant │ │ │ └── enchant2_2.2.15.bb │ │ ├── fribidi │ │ │ └── fribidi_1.0.10.bb │ │ ├── gdbm │ │ │ ├── files │ │ │ │ ├── ptest.patch │ │ │ │ └── run-ptest │ │ │ └── gdbm_1.19.bb │ │ ├── gmp │ │ │ ├── gmp.inc │ │ │ ├── gmp │ │ │ │ ├── 0001-Append-the-user-provided-flags-to-the-auto-detected-.patch │ │ │ │ ├── 0001-confiure.ac-Believe-the-cflags-from-environment.patch │ │ │ │ └── use-includedir.patch │ │ │ └── gmp_6.2.1.bb │ │ ├── gnome-desktop-testing │ │ │ └── gnome-desktop-testing_2018.1.bb │ │ ├── gnupg │ │ │ ├── gnupg │ │ │ │ ├── 0001-Use-pkg-config-to-find-pth-instead-of-pth-config.patch │ │ │ │ ├── 0001-Woverride-init-is-not-needed-with-gcc-9.patch │ │ │ │ ├── 0001-configure.ac-use-a-custom-value-for-the-location-of-.patch │ │ │ │ ├── 0002-use-pkgconfig-instead-of-npth-config.patch │ │ │ │ ├── 0003-dirmngr-uses-libgpg-error.patch │ │ │ │ ├── 0004-autogen.sh-fix-find-version-for-beta-checking.patch │ │ │ │ └── relocate.patch │ │ │ └── gnupg_2.2.27.bb │ │ ├── gnutls │ │ │ ├── gnutls │ │ │ │ └── arm_eabi.patch │ │ │ ├── gnutls_3.7.1.bb │ │ │ ├── libtasn1 │ │ │ │ └── dont-depend-on-help2man.patch │ │ │ └── libtasn1_4.16.0.bb │ │ ├── gpgme │ │ │ ├── gpgme │ │ │ │ ├── 0001-Revert-build-Make-gpgme.m4-use-gpgrt-config-with-.pc.patch │ │ │ │ ├── 0001-pkgconfig.patch │ │ │ │ ├── 0002-gpgme-lang-python-gpg-error-config-should-not-be-use.patch │ │ │ │ ├── 0003-Correctly-install-python-modules.patch │ │ │ │ ├── 0004-python-import.patch │ │ │ │ ├── 0005-gpgme-config-skip-all-lib-or-usr-lib-directories-in-.patch │ │ │ │ ├── 0006-fix-build-path-issue.patch │ │ │ │ ├── 0007-python-Add-variables-to-tests.patch │ │ │ │ └── 0008-do-not-auto-check-var-PYTHON.patch │ │ │ └── gpgme_1.15.1.bb │ │ ├── icu │ │ │ ├── icu │ │ │ │ ├── 0001-Disable-LDFLAGSICUDT-for-Linux.patch │ │ │ │ ├── 0001-icu-Added-armeb-support.patch │ │ │ │ ├── filter.json │ │ │ │ └── fix-install-manx.patch │ │ │ └── icu_68.2.bb │ │ ├── iso-codes │ │ │ └── iso-codes_4.6.0.bb │ │ ├── itstool │ │ │ ├── itstool │ │ │ │ ├── 0001-Native-Don-t-use-build-time-hardcoded-python-binary-.patch │ │ │ │ └── 0002-Don-t-use-build-time-hardcoded-python-binary-path.patch │ │ │ └── itstool_2.0.6.bb │ │ ├── libassuan │ │ │ ├── libassuan │ │ │ │ └── libassuan-add-pkgconfig-support.patch │ │ │ └── libassuan_2.5.4.bb │ │ ├── libatomic-ops │ │ │ └── libatomic-ops_7.6.10.bb │ │ ├── libbsd │ │ │ └── libbsd_0.11.3.bb │ │ ├── libcap-ng │ │ │ ├── libcap-ng-python_0.8.2.bb │ │ │ ├── libcap-ng.inc │ │ │ ├── libcap-ng │ │ │ │ └── determinism.patch │ │ │ └── libcap-ng_0.8.2.bb │ │ ├── libcap │ │ │ ├── files │ │ │ │ ├── 0001-ensure-the-XATTR_NAME_CAPS-is-defined-when-it-is-use.patch │ │ │ │ ├── 0001-tests-do-not-statically-link-a-test.patch │ │ │ │ └── 0002-tests-do-not-run-target-executables.patch │ │ │ └── libcap_2.48.bb │ │ ├── libcheck │ │ │ ├── libcheck │ │ │ │ └── not-echo-compiler-info-to-check_stdint.h.patch │ │ │ └── libcheck_0.15.2.bb │ │ ├── libcroco │ │ │ ├── files │ │ │ │ └── CVE-2020-12825.patch │ │ │ └── libcroco_0.6.13.bb │ │ ├── libdaemon │ │ │ ├── libdaemon │ │ │ │ └── fix-includes.patch │ │ │ └── libdaemon_0.14.bb │ │ ├── libevdev │ │ │ ├── libevdev │ │ │ │ └── determinism.patch │ │ │ └── libevdev_1.11.0.bb │ │ ├── libevent │ │ │ ├── libevent │ │ │ │ ├── 0001-test-regress_dns.c-patch-out-tests-that-require-a-wo.patch │ │ │ │ ├── Makefile-missing-test-dir.patch │ │ │ │ └── run-ptest │ │ │ └── libevent_2.1.12.bb │ │ ├── libexif │ │ │ ├── files │ │ │ │ ├── CVE-2020-0198.patch │ │ │ │ └── CVE-2020-0452.patch │ │ │ └── libexif_0.6.22.bb │ │ ├── libffi │ │ │ ├── libffi │ │ │ │ ├── 0001-Address-platforms-with-no-__int128-part2.patch │ │ │ │ ├── 0001-Address-platforms-with-no-__int128.patch │ │ │ │ ├── 0001-Fixed-missed-ifndef-for-__mips_soft_float.patch │ │ │ │ ├── 0001-arm-sysv-reverted-clang-VFP-mitigation.patch │ │ │ │ ├── 0001-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch │ │ │ │ ├── 0001-powerpc-fix-build-failure-on-power7-and-older-532.patch │ │ │ │ └── not-win32.patch │ │ │ └── libffi_3.3.bb │ │ ├── libfm │ │ │ ├── libfm-extra │ │ │ │ └── 0001-nls.m4-Take-it-from-gettext-0.15.patch │ │ │ ├── libfm-extra_1.3.2.bb │ │ │ ├── libfm │ │ │ │ ├── 0001-Correctly-check-the-stamp-file-that-indicates-if-we-.patch │ │ │ │ └── 0001-Do-not-add-library-path-to-avoid-host-contamination.patch │ │ │ └── libfm_1.3.1.bb │ │ ├── libgcrypt │ │ │ ├── files │ │ │ │ ├── 0001-Makefile.am-add-a-missing-space.patch │ │ │ │ ├── 0001-libgcrypt-fix-m4-file-for-oe-core.patch │ │ │ │ ├── 0002-libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch │ │ │ │ ├── 0003-tests-bench-slope.c-workaround-ICE-failure-on-mips-w.patch │ │ │ │ └── 0004-tests-Makefile.am-fix-undefined-reference-to-pthread.patch │ │ │ └── libgcrypt_1.9.2.bb │ │ ├── libgit2 │ │ │ └── libgit2_1.1.0.bb │ │ ├── libgpg-error │ │ │ ├── libgpg-error │ │ │ │ ├── 0001-Do-not-fail-when-testing-config-scripts.patch │ │ │ │ └── pkgconfig.patch │ │ │ └── libgpg-error_1.41.bb │ │ ├── libical │ │ │ └── libical_3.0.9.bb │ │ ├── libjitterentropy │ │ │ └── libjitterentropy_3.0.1.bb │ │ ├── libksba │ │ │ ├── libksba │ │ │ │ └── ksba-add-pkgconfig-support.patch │ │ │ └── libksba_1.5.0.bb │ │ ├── libmd │ │ │ └── libmd_1.0.3.bb │ │ ├── libmpc │ │ │ ├── libmpc.inc │ │ │ └── libmpc_1.2.1.bb │ │ ├── libnl │ │ │ ├── files │ │ │ │ ├── enable-serial-tests.patch │ │ │ │ └── run-ptest │ │ │ └── libnl_3.5.0.bb │ │ ├── libpcre │ │ │ ├── libpcre │ │ │ │ ├── Makefile │ │ │ │ └── run-ptest │ │ │ ├── libpcre2_10.36.bb │ │ │ └── libpcre_8.44.bb │ │ ├── libproxy │ │ │ ├── libproxy │ │ │ │ └── determinism.patch │ │ │ └── libproxy_0.4.17.bb │ │ ├── libpsl │ │ │ └── libpsl_0.21.1.bb │ │ ├── libsoup │ │ │ └── libsoup-2.4_2.72.0.bb │ │ ├── libssh2 │ │ │ ├── files │ │ │ │ ├── 0001-Don-t-let-host-enviroment-to-decide-if-a-test-is-bui.patch │ │ │ │ ├── 0001-configure-Conditionally-undefine-backend-m4-macro.patch │ │ │ │ ├── CVE-2019-17498.patch │ │ │ │ └── run-ptest │ │ │ └── libssh2_1.9.0.bb │ │ ├── libunistring │ │ │ ├── libunistring │ │ │ │ └── 0001-Unset-need_charset_alias-when-building-for-musl.patch │ │ │ └── libunistring_0.9.10.bb │ │ ├── libunwind │ │ │ ├── libunwind.inc │ │ │ ├── libunwind │ │ │ │ ├── 0001-Add-AO_REQUIRE_CAS-to-fix-build-on-ARM-v6.patch │ │ │ │ ├── 0001-configure-Do-not-enforce-libdir-for-ppc64.patch │ │ │ │ ├── 0003-x86-Stub-out-x86_local_resume.patch │ │ │ │ ├── 0004-Fix-build-on-mips-musl.patch │ │ │ │ ├── 0005-ppc32-Consider-ucontext-mismatches-between-glibc-and.patch │ │ │ │ ├── 0006-Fix-for-X32.patch │ │ │ │ └── musl-header-conflict.patch │ │ │ └── libunwind_1.5.0.bb │ │ ├── liburcu │ │ │ └── liburcu_0.12.2.bb │ │ ├── libusb │ │ │ ├── libusb1 │ │ │ │ └── run-ptest │ │ │ └── libusb1_1.0.24.bb │ │ ├── libxslt │ │ │ └── libxslt_1.1.34.bb │ │ ├── libyaml │ │ │ └── libyaml_0.2.5.bb │ │ ├── lz4 │ │ │ ├── files │ │ │ │ └── run-ptest │ │ │ └── lz4_1.9.3.bb │ │ ├── lzo │ │ │ ├── lzo │ │ │ │ ├── 0001-Add-pkgconfigdir-to-solve-the-undefine-error.patch │ │ │ │ ├── 0001-Use-memcpy-instead-of-reinventing-it.patch │ │ │ │ └── run-ptest │ │ │ └── lzo_2.10.bb │ │ ├── lzop │ │ │ ├── lzop │ │ │ │ └── acinclude.m4 │ │ │ └── lzop_1.04.bb │ │ ├── mpfr │ │ │ └── mpfr_4.1.0.bb │ │ ├── nettle │ │ │ ├── nettle │ │ │ │ ├── Add-target-to-only-build-tests-not-run-them.patch │ │ │ │ ├── check-header-files-of-openssl-only-if-enable_.patch │ │ │ │ ├── dlopen-test.patch │ │ │ │ └── run-ptest │ │ │ └── nettle_3.7.1.bb │ │ ├── npth │ │ │ ├── npth │ │ │ │ └── pkgconfig.patch │ │ │ └── npth_1.6.bb │ │ ├── nss-myhostname │ │ │ └── nss-myhostname_0.3.bb │ │ ├── numactl │ │ │ ├── numactl │ │ │ │ ├── 0001-define-run-test-target.patch │ │ │ │ ├── Fix-the-test-output-format.patch │ │ │ │ ├── Makefile │ │ │ │ └── run-ptest │ │ │ └── numactl_git.bb │ │ ├── p11-kit │ │ │ └── p11-kit_0.23.22.bb │ │ ├── pinentry │ │ │ ├── pinentry-1.1.1 │ │ │ │ ├── gpg-error_pkconf.patch │ │ │ │ └── libassuan_pkgconf.patch │ │ │ └── pinentry_1.1.1.bb │ │ ├── popt │ │ │ └── popt_1.18.bb │ │ ├── ptest-runner │ │ │ └── ptest-runner_2.4.1.bb │ │ ├── re2c │ │ │ └── re2c_2.0.3.bb │ │ ├── rng-tools │ │ │ ├── rng-tools │ │ │ │ ├── default │ │ │ │ ├── init │ │ │ │ └── rngd.service │ │ │ └── rng-tools_6.11.bb │ │ ├── serf │ │ │ ├── serf │ │ │ │ ├── 0001-Fix-syntax-of-a-print-in-the-scons-file-to-unbreak-b.patch │ │ │ │ ├── 0002-SConstruct-Fix-path-quoting-for-.def-generator.patch │ │ │ │ ├── 0003-gen_def.patch │ │ │ │ ├── 0004-Follow-up-to-r1811083-fix-building-with-scons-3.0.0-.patch │ │ │ │ ├── SConstruct.stop.creating.directories.without.sandbox-install.prefix.patch │ │ │ │ ├── env.patch │ │ │ │ └── norpath.patch │ │ │ └── serf_1.3.9.bb │ │ ├── shared-mime-info │ │ │ └── shared-mime-info_git.bb │ │ ├── sqlite │ │ │ ├── sqlite3.inc │ │ │ └── sqlite3_3.35.0.bb │ │ ├── taglib │ │ │ └── taglib_1.12.bb │ │ ├── user-creation │ │ │ ├── files │ │ │ │ └── system-xuser.conf │ │ │ └── xuser-account_0.1.bb │ │ ├── vim │ │ │ ├── files │ │ │ │ ├── 0001-src-Makefile-improve-reproducibility.patch │ │ │ │ ├── disable_acl_header_check.patch │ │ │ │ ├── no-path-adjust.patch │ │ │ │ ├── racefix.patch │ │ │ │ └── vim-add-knob-whether-elf.h-are-checked.patch │ │ │ ├── vim-tiny_8.2.bb │ │ │ ├── vim.inc │ │ │ └── vim_8.2.bb │ │ ├── vte │ │ │ ├── vte │ │ │ │ └── 0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch │ │ │ └── vte_0.62.2.bb │ │ └── xxhash │ │ │ └── xxhash_0.8.0.bb │ ├── recipes.txt │ └── site │ │ ├── arc-common │ │ ├── arm-32 │ │ ├── arm-64 │ │ ├── arm-common │ │ ├── arm-darwin │ │ ├── arm-darwin8 │ │ ├── arm-linux │ │ ├── armeb-linux │ │ ├── common │ │ ├── common-darwin │ │ ├── common-glibc │ │ ├── common-linux │ │ ├── common-mingw │ │ ├── common-musl │ │ ├── endian-big │ │ ├── endian-little │ │ ├── ix86-common │ │ ├── microblaze-linux │ │ ├── mips-common │ │ ├── mips-linux │ │ ├── mips64-linux │ │ ├── mips64el-linux │ │ ├── mipsel-linux │ │ ├── mipsisa32r6-linux │ │ ├── mipsisa32r6el-linux │ │ ├── mipsisa64r6-linux │ │ ├── mipsisa64r6el-linux │ │ ├── native │ │ ├── nios2-linux │ │ ├── powerpc-common │ │ ├── powerpc-darwin │ │ ├── powerpc-linux │ │ ├── powerpc32-linux │ │ ├── powerpc64-linux │ │ ├── riscv32-linux │ │ ├── riscv64-linux │ │ ├── sh-common │ │ ├── sparc-linux │ │ ├── x32-linux │ │ └── x86_64-linux ├── oe-init-build-env └── scripts │ ├── README │ ├── autobuilder-worker-prereq-tests │ ├── bitbake-prserv-tool │ ├── bitbake-whatchanged │ ├── buildall-qemu │ ├── buildhistory-collect-srcrevs │ ├── buildhistory-diff │ ├── buildstats-diff │ ├── combo-layer │ ├── combo-layer-hook-default.sh │ ├── combo-layer.conf.example │ ├── contrib │ ├── bb-perf │ │ ├── bb-matrix-plot.sh │ │ ├── bb-matrix.sh │ │ ├── buildstats-plot.sh │ │ └── buildstats.sh │ ├── bbvars.py │ ├── build-perf-test-wrapper.sh │ ├── ddimage │ ├── devtool-stress.py │ ├── dialog-power-control │ ├── documentation-audit.sh │ ├── graph-tool │ ├── list-packageconfig-flags.py │ ├── oe-build-perf-report-email.py │ ├── patchreview.py │ ├── patchtest.sh │ ├── serdevtry │ ├── test_build_time.sh │ ├── test_build_time_worker.sh │ ├── uncovered │ └── verify-homepage.py │ ├── cp-noerror │ ├── create-pull-request │ ├── crosstap │ ├── devtool │ ├── gen-lockedsig-cache │ ├── gen-site-config │ ├── install-buildtools │ ├── lib │ ├── argparse_oe.py │ ├── build_perf │ │ ├── __init__.py │ │ ├── html.py │ │ ├── html │ │ │ ├── measurement_chart.html │ │ │ └── report.html │ │ ├── report.py │ │ └── scrape-html-report.js │ ├── buildstats.py │ ├── checklayer │ │ ├── __init__.py │ │ ├── case.py │ │ ├── cases │ │ │ ├── __init__.py │ │ │ ├── bsp.py │ │ │ ├── common.py │ │ │ └── distro.py │ │ └── context.py │ ├── devtool │ │ ├── __init__.py │ │ ├── build.py │ │ ├── build_image.py │ │ ├── build_sdk.py │ │ ├── deploy.py │ │ ├── export.py │ │ ├── import.py │ │ ├── menuconfig.py │ │ ├── package.py │ │ ├── runqemu.py │ │ ├── sdk.py │ │ ├── search.py │ │ ├── standard.py │ │ ├── upgrade.py │ │ └── utilcmds.py │ ├── recipetool │ │ ├── __init__.py │ │ ├── append.py │ │ ├── create.py │ │ ├── create_buildsys.py │ │ ├── create_buildsys_python.py │ │ ├── create_kernel.py │ │ ├── create_kmod.py │ │ ├── create_npm.py │ │ ├── edit.py │ │ ├── newappend.py │ │ └── setvar.py │ ├── resulttool │ │ ├── __init__.py │ │ ├── log.py │ │ ├── manualexecution.py │ │ ├── merge.py │ │ ├── regression.py │ │ ├── report.py │ │ ├── resultutils.py │ │ ├── store.py │ │ └── template │ │ │ └── test_report_full_text.txt │ ├── scriptpath.py │ ├── scriptutils.py │ └── wic │ │ ├── __init__.py │ │ ├── canned-wks │ │ ├── common.wks.inc │ │ ├── directdisk-bootloader-config.cfg │ │ ├── directdisk-bootloader-config.wks │ │ ├── directdisk-gpt.wks │ │ ├── directdisk-multi-rootfs.wks │ │ ├── directdisk.wks │ │ ├── efi-bootdisk.wks.in │ │ ├── mkefidisk.wks │ │ ├── mkhybridiso.wks │ │ ├── qemuriscv.wks │ │ ├── qemux86-directdisk.wks │ │ ├── sdimage-bootpart.wks │ │ └── systemd-bootdisk.wks │ │ ├── engine.py │ │ ├── filemap.py │ │ ├── help.py │ │ ├── ksparser.py │ │ ├── misc.py │ │ ├── partition.py │ │ ├── pluginbase.py │ │ └── plugins │ │ ├── imager │ │ └── direct.py │ │ └── source │ │ ├── bootimg-biosplusefi.py │ │ ├── bootimg-efi.py │ │ ├── bootimg-partition.py │ │ ├── bootimg-pcbios.py │ │ ├── empty.py │ │ ├── isoimage-isohybrid.py │ │ ├── rawcopy.py │ │ └── rootfs.py │ ├── lnr │ ├── multilib_header_wrapper.h │ ├── native-intercept │ ├── chgrp │ └── chown │ ├── oe-build-perf-report │ ├── oe-build-perf-test │ ├── oe-buildenv-internal │ ├── oe-check-sstate │ ├── oe-debuginfod │ ├── oe-depends-dot │ ├── oe-find-native-sysroot │ ├── oe-git-archive │ ├── oe-git-proxy │ ├── oe-gnome-terminal-phonehome │ ├── oe-pkgdata-browser │ ├── oe-pkgdata-browser.glade │ ├── oe-pkgdata-util │ ├── oe-publish-sdk │ ├── oe-pylint │ ├── oe-run-native │ ├── oe-selftest │ ├── oe-setup-builddir │ ├── oe-test │ ├── oe-time-dd-test.sh │ ├── oe-trim-schemas │ ├── oepydevshell-internal.py │ ├── opkg-query-helper.py │ ├── postinst-intercepts │ ├── delay_to_first_boot │ ├── postinst_intercept │ ├── update_desktop_database │ ├── update_font_cache │ ├── update_gio_module_cache │ ├── update_gtk_icon_cache │ ├── update_gtk_immodules_cache │ ├── update_mime_database │ ├── update_pixbuf_cache │ └── update_udev_hwdb │ ├── pybootchartgui │ ├── AUTHORS │ ├── COPYING │ ├── MAINTAINERS │ ├── NEWS │ ├── README.pybootchart │ ├── pybootchartgui.py │ └── pybootchartgui │ │ ├── __init__.py │ │ ├── batch.py │ │ ├── draw.py │ │ ├── gui.py │ │ ├── main.py │ │ ├── main.py.in │ │ ├── parsing.py │ │ ├── process_tree.py │ │ ├── samples.py │ │ └── tests │ │ ├── parser_test.py │ │ └── process_tree_test.py │ ├── pythondeps │ ├── recipetool │ ├── relocate_sdk.py │ ├── resulttool │ ├── rootfs_rpm-extract-postinst.awk │ ├── rpm2cpio.sh │ ├── runqemu │ ├── runqemu-addptable2image │ ├── runqemu-export-rootfs │ ├── runqemu-extract-sdk │ ├── runqemu-gen-tapdevs │ ├── runqemu-ifdown │ ├── runqemu-ifup │ ├── runqemu.README │ ├── send-error-report │ ├── send-pull-request │ ├── sstate-cache-management.sh │ ├── sstate-diff-machines.sh │ ├── sstate-sysroot-cruft.sh │ ├── sysroot-relativelinks.py │ ├── task-time │ ├── test-reexec │ ├── test-remote-image │ ├── tiny │ ├── dirsize.py │ ├── ksize.py │ └── ksum.py │ ├── verify-bashisms │ ├── wic │ ├── yocto-check-layer │ └── yocto-check-layer-wrapper ├── scripts └── setup /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build*/* 2 | customrc 3 | *.sw? 4 | .repo/ 5 | -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/.gitreview -------------------------------------------------------------------------------- /.templateconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/.templateconf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | poky/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - bradleyb@fuzziesquirrel.com 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/README.md -------------------------------------------------------------------------------- /bitbake: -------------------------------------------------------------------------------- 1 | poky/bitbake/ -------------------------------------------------------------------------------- /meta: -------------------------------------------------------------------------------- 1 | poky/meta -------------------------------------------------------------------------------- /meta-alibaba/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - SnowYang@linux.alibaba.com 3 | -------------------------------------------------------------------------------- /meta-alibaba/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-alibaba/conf/layer.conf -------------------------------------------------------------------------------- /meta-alibaba/meta-thor/recipes-bsp/linux/linux-aspeed/alibaba.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_DEVMEM=y 2 | -------------------------------------------------------------------------------- /meta-amd/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/COPYING.MIT -------------------------------------------------------------------------------- /meta-amd/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-amd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/LICENSE -------------------------------------------------------------------------------- /meta-amd/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/MAINTAINERS -------------------------------------------------------------------------------- /meta-amd/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - supreeth.venkatesh@amd.com 3 | -------------------------------------------------------------------------------- /meta-amd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/README.md -------------------------------------------------------------------------------- /meta-amd/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/conf/layer.conf -------------------------------------------------------------------------------- /meta-amd/meta-common/recipes-phosphor/console/obmc-console/client.2200.conf: -------------------------------------------------------------------------------- 1 | socket-id = host0 2 | -------------------------------------------------------------------------------- /meta-amd/meta-common/recipes-phosphor/console/obmc-console/client.2201.conf: -------------------------------------------------------------------------------- 1 | socket-id = host1 2 | -------------------------------------------------------------------------------- /meta-amd/meta-common/recipes-phosphor/initrdscripts/files/amd-whitelist: -------------------------------------------------------------------------------- 1 | /var/lib/phosphor-bmc-code-mgmt 2 | -------------------------------------------------------------------------------- /meta-amd/meta-common/recipes-phosphor/ipmi/phosphor-ipmi-config.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /meta-amd/meta-sh5/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/meta-sh5/conf/layer.conf -------------------------------------------------------------------------------- /meta-amd/meta-sh5/recipes-kernel/linux/linux-aspeed/sh5.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_SENSORS_MP2857=y 2 | -------------------------------------------------------------------------------- /meta-amd/meta-sp5/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/meta-sp5/conf/layer.conf -------------------------------------------------------------------------------- /meta-amd/meta-sp5/recipes-kernel/linux/linux-aspeed/sp5.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_SENSORS_AMD_CPLD_FANS=y 2 | -------------------------------------------------------------------------------- /meta-amd/meta-sp6/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/meta-sp6/conf/layer.conf -------------------------------------------------------------------------------- /meta-amd/meta-turin/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-amd/meta-turin/conf/layer.conf -------------------------------------------------------------------------------- /meta-ampere/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ampere/COPYING.MIT -------------------------------------------------------------------------------- /meta-ampere/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ampere/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-ampere/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ampere/LICENSE -------------------------------------------------------------------------------- /meta-ampere/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ampere/MAINTAINERS -------------------------------------------------------------------------------- /meta-ampere/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ampere/OWNERS -------------------------------------------------------------------------------- /meta-ampere/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ampere/conf/layer.conf -------------------------------------------------------------------------------- /meta-arm/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-arm/COPYING.MIT -------------------------------------------------------------------------------- /meta-arm/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-arm/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-arm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-arm/LICENSE -------------------------------------------------------------------------------- /meta-arm/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-arm/conf/layer.conf -------------------------------------------------------------------------------- /meta-aspeed/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-aspeed/COPYING.MIT -------------------------------------------------------------------------------- /meta-aspeed/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-aspeed/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-aspeed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-aspeed/LICENSE -------------------------------------------------------------------------------- /meta-aspeed/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-aspeed/MAINTAINERS -------------------------------------------------------------------------------- /meta-aspeed/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - bradleyb@fuzziesquirrel.com 3 | - joel@jms.id.au 4 | -------------------------------------------------------------------------------- /meta-aspeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-aspeed/README.md -------------------------------------------------------------------------------- /meta-aspeed/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-aspeed/conf/layer.conf -------------------------------------------------------------------------------- /meta-aspeed/conf/local.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-aspeed/conf/local.conf.sample -------------------------------------------------------------------------------- /meta-aspeed/wic/emmc-aspeed.wks.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-aspeed/wic/emmc-aspeed.wks.in -------------------------------------------------------------------------------- /meta-asrock/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-asrock/COPYING.MIT -------------------------------------------------------------------------------- /meta-asrock/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-asrock/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-asrock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-asrock/LICENSE -------------------------------------------------------------------------------- /meta-asrock/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-asrock/conf/layer.conf -------------------------------------------------------------------------------- /meta-bytedance/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-bytedance/COPYING.MIT -------------------------------------------------------------------------------- /meta-bytedance/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-bytedance/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-bytedance/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-bytedance/LICENSE -------------------------------------------------------------------------------- /meta-bytedance/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-bytedance/MAINTAINERS -------------------------------------------------------------------------------- /meta-bytedance/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - yulei.sh@bytedance.com 3 | -------------------------------------------------------------------------------- /meta-bytedance/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-bytedance/conf/layer.conf -------------------------------------------------------------------------------- /meta-bytedance/meta-g220a/recipes-phosphor/logging/phosphor-hostlogger_%.bbappend: -------------------------------------------------------------------------------- 1 | DEFAULT_INSTANCE = "ttyS2" 2 | -------------------------------------------------------------------------------- /meta-bytedance/recipes-phosphor/interfaces/bmcweb_%.bbappend: -------------------------------------------------------------------------------- 1 | EXTRA_OEMESON_append = " -Drest=enabled" 2 | -------------------------------------------------------------------------------- /meta-bytedance/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-bytedance/recipes.txt -------------------------------------------------------------------------------- /meta-evb/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-evb/COPYING.MIT -------------------------------------------------------------------------------- /meta-evb/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-evb/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-evb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-evb/LICENSE -------------------------------------------------------------------------------- /meta-evb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-evb/README.md -------------------------------------------------------------------------------- /meta-evb/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-evb/conf/layer.conf -------------------------------------------------------------------------------- /meta-facebook/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-facebook/COPYING.MIT -------------------------------------------------------------------------------- /meta-facebook/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-facebook/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-facebook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-facebook/LICENSE -------------------------------------------------------------------------------- /meta-facebook/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-facebook/MAINTAINERS -------------------------------------------------------------------------------- /meta-facebook/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - amithash@fb.com 3 | - patrick@stwcx.xyz 4 | -------------------------------------------------------------------------------- /meta-facebook/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-facebook/conf/layer.conf -------------------------------------------------------------------------------- /meta-facebook/recipes-phosphor/console/obmc-console/yosemitev2/client.2200.conf: -------------------------------------------------------------------------------- 1 | socket-id = host0 2 | -------------------------------------------------------------------------------- /meta-facebook/recipes-phosphor/console/obmc-console/yosemitev2/client.2201.conf: -------------------------------------------------------------------------------- 1 | socket-id = host1 2 | -------------------------------------------------------------------------------- /meta-facebook/recipes-phosphor/console/obmc-console/yosemitev2/client.2202.conf: -------------------------------------------------------------------------------- 1 | socket-id = host2 2 | -------------------------------------------------------------------------------- /meta-facebook/recipes-phosphor/console/obmc-console/yosemitev2/client.2203.conf: -------------------------------------------------------------------------------- 1 | socket-id = host3 2 | -------------------------------------------------------------------------------- /meta-facebook/recipes-phosphor/ipmi/phosphor-ipmi-config.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /meta-fii/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-fii/COPYING.MIT -------------------------------------------------------------------------------- /meta-fii/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-fii/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-fii/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-fii/LICENSE -------------------------------------------------------------------------------- /meta-fii/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-fii/MAINTAINERS -------------------------------------------------------------------------------- /meta-fii/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-fii/OWNERS -------------------------------------------------------------------------------- /meta-fii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-fii/README.md -------------------------------------------------------------------------------- /meta-fii/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-fii/conf/layer.conf -------------------------------------------------------------------------------- /meta-fii/meta-kudo/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-fii/meta-kudo/conf/layer.conf -------------------------------------------------------------------------------- /meta-fii/meta-kudo/recipes-phosphor/configuration/entity-manager/blacklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "buses": [1] 3 | } 4 | -------------------------------------------------------------------------------- /meta-google/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-google/COPYING.MIT -------------------------------------------------------------------------------- /meta-google/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-google/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-google/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-google/LICENSE -------------------------------------------------------------------------------- /meta-google/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-google/MAINTAINERS -------------------------------------------------------------------------------- /meta-google/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-google/OWNERS -------------------------------------------------------------------------------- /meta-google/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-google/README -------------------------------------------------------------------------------- /meta-google/conf/distro/gbmc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-google/conf/distro/gbmc.conf -------------------------------------------------------------------------------- /meta-google/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-google/conf/layer.conf -------------------------------------------------------------------------------- /meta-google/recipes-core/dropbear/dropbear/dropbear.default: -------------------------------------------------------------------------------- 1 | DROPBEAR_EXTRA_ARGS="" 2 | -------------------------------------------------------------------------------- /meta-google/recipes-extended/libconfig/libconfig_%.bbappend: -------------------------------------------------------------------------------- 1 | BBCLASSEXTEND += "native" 2 | -------------------------------------------------------------------------------- /meta-hpe/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hpe/COPYING.MIT -------------------------------------------------------------------------------- /meta-hpe/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hpe/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-hpe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hpe/LICENSE -------------------------------------------------------------------------------- /meta-hpe/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hpe/MAINTAINERS -------------------------------------------------------------------------------- /meta-hpe/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hpe/OWNERS -------------------------------------------------------------------------------- /meta-hpe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hpe/README.md -------------------------------------------------------------------------------- /meta-hpe/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hpe/conf/layer.conf -------------------------------------------------------------------------------- /meta-hpe/meta-gxp/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hpe/meta-gxp/conf/layer.conf -------------------------------------------------------------------------------- /meta-hpe/meta-gxp/recipes-bsp/image/gxp-bootblock.bb: -------------------------------------------------------------------------------- 1 | inherit gxp-bootblock-n-poc 2 | -------------------------------------------------------------------------------- /meta-hxt/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hxt/MAINTAINERS -------------------------------------------------------------------------------- /meta-hxt/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hxt/OWNERS -------------------------------------------------------------------------------- /meta-hxt/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-hxt/conf/layer.conf -------------------------------------------------------------------------------- /meta-ibm/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/COPYING.MIT -------------------------------------------------------------------------------- /meta-ibm/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-ibm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/LICENSE -------------------------------------------------------------------------------- /meta-ibm/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/MAINTAINERS -------------------------------------------------------------------------------- /meta-ibm/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/OWNERS -------------------------------------------------------------------------------- /meta-ibm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/README.md -------------------------------------------------------------------------------- /meta-ibm/conf/bblayers.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/conf/bblayers.conf.sample -------------------------------------------------------------------------------- /meta-ibm/conf/conf-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/conf/conf-notes.txt -------------------------------------------------------------------------------- /meta-ibm/conf/distro/include/ibm-yaml.inc: -------------------------------------------------------------------------------- 1 | OBMC_ORG_YAML_SUBDIRS += " com/ibm" 2 | -------------------------------------------------------------------------------- /meta-ibm/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/conf/layer.conf -------------------------------------------------------------------------------- /meta-ibm/conf/local.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/conf/local.conf.sample -------------------------------------------------------------------------------- /meta-ibm/conf/machine/mihawk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/conf/machine/mihawk.conf -------------------------------------------------------------------------------- /meta-ibm/conf/machine/p10bmc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/conf/machine/p10bmc.conf -------------------------------------------------------------------------------- /meta-ibm/conf/machine/swift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/conf/machine/swift.conf -------------------------------------------------------------------------------- /meta-ibm/meta-fsp2/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/meta-fsp2/COPYING.MIT -------------------------------------------------------------------------------- /meta-ibm/meta-fsp2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/meta-fsp2/LICENSE -------------------------------------------------------------------------------- /meta-ibm/meta-fsp2/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/meta-fsp2/conf/layer.conf -------------------------------------------------------------------------------- /meta-ibm/meta-fsp2/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/meta-fsp2/recipes.txt -------------------------------------------------------------------------------- /meta-ibm/meta-palmetto/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/meta-palmetto/recipes.txt -------------------------------------------------------------------------------- /meta-ibm/meta-romulus/recipes-phosphor/mboxd/mboxd_%.bbappend: -------------------------------------------------------------------------------- 1 | MBOXD_FLASH_SIZE_romulus = "64M" 2 | -------------------------------------------------------------------------------- /meta-ibm/meta-romulus/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/meta-romulus/recipes.txt -------------------------------------------------------------------------------- /meta-ibm/recipes-phosphor/chassis/obmc-op-control-power_%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /meta-ibm/recipes-phosphor/console/obmc-console/p10bmc/client.2201.conf: -------------------------------------------------------------------------------- 1 | socket-id = guests 2 | -------------------------------------------------------------------------------- /meta-ibm/recipes-phosphor/console/obmc-console/witherspoon-tacoma/client.2201.conf: -------------------------------------------------------------------------------- 1 | socket-id = guests 2 | -------------------------------------------------------------------------------- /meta-ibm/recipes-phosphor/fans/phosphor-fan-control-fan-config.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" 2 | -------------------------------------------------------------------------------- /meta-ibm/recipes-phosphor/fans/phosphor-fan/p10bmc/manager.json: -------------------------------------------------------------------------------- 1 | { 2 | "power_on_delay": 15 3 | } 4 | -------------------------------------------------------------------------------- /meta-ibm/recipes-phosphor/leds/phosphor-led-manager/obmc/led/set-all/groups/config: -------------------------------------------------------------------------------- 1 | EXCLUDED_GROUPS=bmc_booted power_on 2 | -------------------------------------------------------------------------------- /meta-ibm/recipes-phosphor/sensors/dbus-sensors_%.bbappend: -------------------------------------------------------------------------------- 1 | PACKAGECONFIG_p10bmc = "hwmontempsensor" 2 | -------------------------------------------------------------------------------- /meta-ibm/recipes-phosphor/skeleton/obmc-libobmc-intf_%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /meta-ibm/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ibm/recipes.txt -------------------------------------------------------------------------------- /meta-ingrasys/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ingrasys/COPYING.MIT -------------------------------------------------------------------------------- /meta-ingrasys/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ingrasys/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-ingrasys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ingrasys/LICENSE -------------------------------------------------------------------------------- /meta-ingrasys/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ingrasys/conf/layer.conf -------------------------------------------------------------------------------- /meta-ingrasys/conf/machine/include/ingrasys.inc: -------------------------------------------------------------------------------- 1 | require conf/machine/include/openpower.inc 2 | -------------------------------------------------------------------------------- /meta-ingrasys/meta-zaius/recipes-phosphor/host/phosphor-host-postd_%.bbappend: -------------------------------------------------------------------------------- 1 | PACKAGECONFIG_append_zaius = " 7seg" 2 | -------------------------------------------------------------------------------- /meta-ingrasys/meta-zaius/recipes-phosphor/mboxd/mboxd_%.bbappend: -------------------------------------------------------------------------------- 1 | MBOXD_FLASH_SIZE = "64M" 2 | -------------------------------------------------------------------------------- /meta-ingrasys/meta-zaius/recipes-phosphor/sensors/phosphor-hwmon/obmc/hwmon/onewire0.conf: -------------------------------------------------------------------------------- 1 | LABEL_temp1=w1_inlet 2 | -------------------------------------------------------------------------------- /meta-ingrasys/meta-zaius/recipes-phosphor/sensors/phosphor-hwmon/obmc/hwmon/onewire1.conf: -------------------------------------------------------------------------------- 1 | LABEL_temp1=w1_exhaust_left 2 | -------------------------------------------------------------------------------- /meta-ingrasys/meta-zaius/recipes-phosphor/sensors/phosphor-hwmon/obmc/hwmon/onewire2.conf: -------------------------------------------------------------------------------- 1 | LABEL_temp1=w1_exhaust_right 2 | -------------------------------------------------------------------------------- /meta-ingrasys/meta-zaius/recipes-phosphor/sensors/phosphor-hwmon/obmc/hwmon/onewire3.conf: -------------------------------------------------------------------------------- 1 | LABEL_temp1=w1_exhaust_mid 2 | -------------------------------------------------------------------------------- /meta-ingrasys/meta-zaius/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-ingrasys/meta-zaius/recipes.txt -------------------------------------------------------------------------------- /meta-inspur/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inspur/COPYING.MIT -------------------------------------------------------------------------------- /meta-inspur/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inspur/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-inspur/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inspur/LICENSE -------------------------------------------------------------------------------- /meta-inspur/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inspur/MAINTAINERS -------------------------------------------------------------------------------- /meta-inspur/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - liuxiwei@inspur.com 3 | -------------------------------------------------------------------------------- /meta-inspur/conf/distro/include/inspur-distrovars.inc: -------------------------------------------------------------------------------- 1 | OBMC_ORG_YAML_SUBDIRS += " com/ibm" 2 | -------------------------------------------------------------------------------- /meta-inspur/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inspur/conf/layer.conf -------------------------------------------------------------------------------- /meta-inspur/meta-fp5280g2/recipes-phosphor/ipmi/phosphor-ipmi-net_%.bbappend: -------------------------------------------------------------------------------- 1 | DEFAULT_RMCPP_IFACE = "eth1" 2 | -------------------------------------------------------------------------------- /meta-inspur/meta-fp5280g2/recipes-phosphor/mboxd/mboxd_%.bbappend: -------------------------------------------------------------------------------- 1 | MBOXD_FLASH_SIZE_fp5280g2 = "64M" 2 | -------------------------------------------------------------------------------- /meta-intel-openbmc/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-intel-openbmc/COPYING.MIT -------------------------------------------------------------------------------- /meta-intel-openbmc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-intel-openbmc/LICENSE -------------------------------------------------------------------------------- /meta-intel-openbmc/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-intel-openbmc/MAINTAINERS -------------------------------------------------------------------------------- /meta-intel-openbmc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-intel-openbmc/OWNERS -------------------------------------------------------------------------------- /meta-intel-openbmc/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-intel-openbmc/conf/layer.conf -------------------------------------------------------------------------------- /meta-inventec/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inventec/COPYING.MIT -------------------------------------------------------------------------------- /meta-inventec/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inventec/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-inventec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inventec/LICENSE -------------------------------------------------------------------------------- /meta-inventec/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-inventec/conf/layer.conf -------------------------------------------------------------------------------- /meta-inventec/conf/machine/include/inventec.inc: -------------------------------------------------------------------------------- 1 | require conf/machine/include/openpower.inc 2 | -------------------------------------------------------------------------------- /meta-inventec/meta-lanyang/recipes-phosphor/host/p9-host-start.bbappend: -------------------------------------------------------------------------------- 1 | RDEPENDS_${PN} += 'avsbus-control' 2 | -------------------------------------------------------------------------------- /meta-inventec/meta-lanyang/recipes-phosphor/mboxd/mboxd_%.bbappend: -------------------------------------------------------------------------------- 1 | MBOXD_FLASH_SIZE = "64M" 2 | -------------------------------------------------------------------------------- /meta-lenovo/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-lenovo/COPYING.BSD -------------------------------------------------------------------------------- /meta-lenovo/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-lenovo/COPYING.GPL -------------------------------------------------------------------------------- /meta-lenovo/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-lenovo/COPYING.MIT -------------------------------------------------------------------------------- /meta-lenovo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-lenovo/LICENSE -------------------------------------------------------------------------------- /meta-lenovo/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-lenovo/MAINTAINERS -------------------------------------------------------------------------------- /meta-lenovo/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-lenovo/OWNERS -------------------------------------------------------------------------------- /meta-lenovo/README.md: -------------------------------------------------------------------------------- 1 | # meta-lenovo -------------------------------------------------------------------------------- /meta-lenovo/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-lenovo/conf/layer.conf -------------------------------------------------------------------------------- /meta-microsoft/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-microsoft/COPYING.MIT -------------------------------------------------------------------------------- /meta-microsoft/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-microsoft/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-microsoft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-microsoft/LICENSE -------------------------------------------------------------------------------- /meta-microsoft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-microsoft/README.md -------------------------------------------------------------------------------- /meta-microsoft/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-microsoft/conf/layer.conf -------------------------------------------------------------------------------- /meta-nuvoton/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-nuvoton/COPYING.MIT -------------------------------------------------------------------------------- /meta-nuvoton/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-nuvoton/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-nuvoton/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-nuvoton/LICENSE -------------------------------------------------------------------------------- /meta-nuvoton/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-nuvoton/MAINTAINERS -------------------------------------------------------------------------------- /meta-nuvoton/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - benjaminfair@google.com 3 | -------------------------------------------------------------------------------- /meta-nuvoton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-nuvoton/README.md -------------------------------------------------------------------------------- /meta-nuvoton/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-nuvoton/conf/layer.conf -------------------------------------------------------------------------------- /meta-nuvoton/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-nuvoton/recipes.txt -------------------------------------------------------------------------------- /meta-openembedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/.gitignore -------------------------------------------------------------------------------- /meta-openembedded/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/COPYING.MIT -------------------------------------------------------------------------------- /meta-openembedded/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/README -------------------------------------------------------------------------------- /meta-openembedded/contrib/pw-am.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/contrib/pw-am.sh -------------------------------------------------------------------------------- /meta-openembedded/meta-filesystems/recipes-support/fuse/files/fuse.conf: -------------------------------------------------------------------------------- 1 | fuse 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-gnome/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/meta-gnome/README -------------------------------------------------------------------------------- /meta-openembedded/meta-initramfs/recipes-devtools/grubby/grubby/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./test.sh -v 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-multimedia/recipes-multimedia/mycroft/files/dev_opts.json: -------------------------------------------------------------------------------- 1 | {"use_branch": "dev", "auto_update": false} -------------------------------------------------------------------------------- /meta-openembedded/meta-networking/recipes-daemons/postfix/files/internal_recipient: -------------------------------------------------------------------------------- 1 | root@ permit_mynetworks,reject 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-networking/recipes-daemons/radvd/files/radvd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-u radvd" 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-networking/recipes-support/ntp/ntp/ntpd.list: -------------------------------------------------------------------------------- 1 | ntpd.service 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-networking/recipes-support/ntp/ntp/sntp: -------------------------------------------------------------------------------- 1 | NTPSERVER="ntpserver.example.org" 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/meta-oe/README -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-bsp/pointercal/pointercal/pointercal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-bsp/pointercal/pointercal/qemux86-64/pointercal: -------------------------------------------------------------------------------- 1 | 1280 0 1002 0 960 328 65536 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-bsp/pointercal/pointercal/qemux86/pointercal: -------------------------------------------------------------------------------- 1 | 1280 0 1002 0 960 328 65536 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-core/libxml/libxml++/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd examples 3 | make -k check-TESTS 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-extended/rarpd/rarpd/ethers.sample: -------------------------------------------------------------------------------- 1 | # see man ethers for syntax 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-gnome/gcab/gcab/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | gnome-desktop-testing-runner libgcab 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-kernel/crash/crash/config-site.crash-7.0.9: -------------------------------------------------------------------------------- 1 | bash_cv_have_mbstate_t=yes 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-support/libee/libee/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | ./ezapi1.sh 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-oe/recipes-support/pxaregs/pxaregs-1.14/Makefile: -------------------------------------------------------------------------------- 1 | 2 | 3 | all: pxaregs 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-perl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/meta-perl/README -------------------------------------------------------------------------------- /meta-openembedded/meta-python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/meta-python/README -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-cryptography/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | py.test 3 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-jdcal/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-jsmin/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python3 test.py 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-jsonpointer/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python3 tests.py 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-license-expression/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-msgpack/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-multidict/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-parse/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | pytest 3 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-pint/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-python/recipes-devtools/python/python3-test-generator/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest 4 | -------------------------------------------------------------------------------- /meta-openembedded/meta-webserver/recipes-httpd/sthttpd/sthttpd/thttpd.conf: -------------------------------------------------------------------------------- 1 | dir=@@SRVDIR 2 | -------------------------------------------------------------------------------- /meta-openembedded/meta-xfce/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openembedded/meta-xfce/README -------------------------------------------------------------------------------- /meta-openpower/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openpower/COPYING.MIT -------------------------------------------------------------------------------- /meta-openpower/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openpower/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-openpower/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openpower/LICENSE -------------------------------------------------------------------------------- /meta-openpower/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openpower/MAINTAINERS -------------------------------------------------------------------------------- /meta-openpower/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openpower/OWNERS -------------------------------------------------------------------------------- /meta-openpower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openpower/README.md -------------------------------------------------------------------------------- /meta-openpower/classes/openpower-occ-control.bbclass: -------------------------------------------------------------------------------- 1 | YAML_DEST="${D}${datadir}/openpower-occ-control" 2 | -------------------------------------------------------------------------------- /meta-openpower/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-openpower/conf/layer.conf -------------------------------------------------------------------------------- /meta-openpower/recipes-phosphor/vpd/openpower-fru-inventory-example/inventory: -------------------------------------------------------------------------------- 1 | FRUS=BMC 2 | PATHS=/system/chassis/bmc 3 | -------------------------------------------------------------------------------- /meta-phosphor/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/COPYING.MIT -------------------------------------------------------------------------------- /meta-phosphor/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-phosphor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/LICENSE -------------------------------------------------------------------------------- /meta-phosphor/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/MAINTAINERS -------------------------------------------------------------------------------- /meta-phosphor/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/OWNERS -------------------------------------------------------------------------------- /meta-phosphor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/README.md -------------------------------------------------------------------------------- /meta-phosphor/conf/conf-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/conf/conf-notes.txt -------------------------------------------------------------------------------- /meta-phosphor/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/conf/layer.conf -------------------------------------------------------------------------------- /meta-phosphor/conf/local.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/conf/local.conf.sample -------------------------------------------------------------------------------- /meta-phosphor/conf/machine/include/ibm-power-cpu.inc: -------------------------------------------------------------------------------- 1 | MACHINEOVERRIDES =. "ibm-power-cpu:" 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-core/busybox/busybox/mountpoint.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_MOUNTPOINT=y 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-core/busybox/busybox/reboot.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_REBOOT=y 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-core/dropbear/dropbear/dropbear.default: -------------------------------------------------------------------------------- 1 | DROPBEAR_EXTRA_ARGS="-G priv-admin" 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-extended/rsyslog/rsyslog/server.conf: -------------------------------------------------------------------------------- 1 | *.* ~ 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-graphics/libvncserver/libvncserver_%.bbappend: -------------------------------------------------------------------------------- 1 | PACKAGECONFIG = "jpeg lzo systemd zlib openssl" 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-phosphor/configuration/entity-manager/blocklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "buses": [] 3 | } 4 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-phosphor/console/obmc-console/obmc-console.conf: -------------------------------------------------------------------------------- 1 | lpc-address = 0x3f8 2 | sirq = 4 3 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-phosphor/ipmi/phosphor-ipmi-config/power_reading.json: -------------------------------------------------------------------------------- 1 | { 2 | "path": "" 3 | } 4 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-phosphor/mctp/files/default: -------------------------------------------------------------------------------- 1 | DEMUX_BINDING_OPTS=null 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-phosphor/settings/phosphor-settings/merge_settings.py: -------------------------------------------------------------------------------- 1 | ../phosphor-settings-manager/merge_settings.py -------------------------------------------------------------------------------- /meta-phosphor/recipes-phosphor/video/fbterm/fbterm: -------------------------------------------------------------------------------- 1 | FB_MODE=800x600-60 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes-support/libgpiod/libgpiod_%.bbappend: -------------------------------------------------------------------------------- 1 | PACKAGECONFIG += " cxx" 2 | -------------------------------------------------------------------------------- /meta-phosphor/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-phosphor/recipes.txt -------------------------------------------------------------------------------- /meta-poky: -------------------------------------------------------------------------------- 1 | poky/meta-poky/ -------------------------------------------------------------------------------- /meta-portwell/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-portwell/MAINTAINERS -------------------------------------------------------------------------------- /meta-portwell/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - amithash@fb.com 3 | - patrick@stwcx.xyz 4 | -------------------------------------------------------------------------------- /meta-qualcomm/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-qualcomm/COPYING.MIT -------------------------------------------------------------------------------- /meta-qualcomm/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-qualcomm/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-qualcomm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-qualcomm/LICENSE -------------------------------------------------------------------------------- /meta-qualcomm/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-qualcomm/conf/layer.conf -------------------------------------------------------------------------------- /meta-quanta/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/COPYING.MIT -------------------------------------------------------------------------------- /meta-quanta/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-quanta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/LICENSE -------------------------------------------------------------------------------- /meta-quanta/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/MAINTAINERS -------------------------------------------------------------------------------- /meta-quanta/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/OWNERS -------------------------------------------------------------------------------- /meta-quanta/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/conf/layer.conf -------------------------------------------------------------------------------- /meta-quanta/meta-f0b/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/meta-f0b/conf/layer.conf -------------------------------------------------------------------------------- /meta-quanta/meta-gbs/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/meta-gbs/conf/layer.conf -------------------------------------------------------------------------------- /meta-quanta/meta-gbs/recipes-phosphor/console/files/obmc-console.conf: -------------------------------------------------------------------------------- 1 | baud = 115200 2 | -------------------------------------------------------------------------------- /meta-quanta/meta-gbs/recipes-phosphor/leds/phosphor-led-manager/service-override.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | StartLimitBurst=10 3 | -------------------------------------------------------------------------------- /meta-quanta/meta-gbs/recipes-quanta/network/usb-network/usb-network.conf: -------------------------------------------------------------------------------- 1 | UDC="f0835000.udc" 2 | -------------------------------------------------------------------------------- /meta-quanta/meta-gsj/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/meta-gsj/conf/layer.conf -------------------------------------------------------------------------------- /meta-quanta/meta-olympus-nuvoton/recipes-phosphor/console/obmc-console/obmc-console.conf: -------------------------------------------------------------------------------- 1 | baud = 57600 2 | -------------------------------------------------------------------------------- /meta-quanta/meta-olympus-nuvoton/recipes-phosphor/ipmi/phosphor-ipmi-net_%.bbappend: -------------------------------------------------------------------------------- 1 | RMCPP_IFACE = "eth1" -------------------------------------------------------------------------------- /meta-quanta/meta-q71l/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-quanta/meta-q71l/README.md -------------------------------------------------------------------------------- /meta-raspberrypi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/.gitignore -------------------------------------------------------------------------------- /meta-raspberrypi/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/COPYING.MIT -------------------------------------------------------------------------------- /meta-raspberrypi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/README.md -------------------------------------------------------------------------------- /meta-raspberrypi/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/conf/layer.conf -------------------------------------------------------------------------------- /meta-raspberrypi/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/docs/Makefile -------------------------------------------------------------------------------- /meta-raspberrypi/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/docs/conf.py -------------------------------------------------------------------------------- /meta-raspberrypi/docs/extra-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/docs/extra-apps.md -------------------------------------------------------------------------------- /meta-raspberrypi/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/docs/index.rst -------------------------------------------------------------------------------- /meta-raspberrypi/docs/readme.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /meta-raspberrypi/img/balena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/img/balena.png -------------------------------------------------------------------------------- /meta-raspberrypi/kas-poky-rpi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-raspberrypi/kas-poky-rpi.yml -------------------------------------------------------------------------------- /meta-raspberrypi/recipes-bsp/formfactor/formfactor_%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /meta-security/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/.gitignore -------------------------------------------------------------------------------- /meta-security/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/.gitlab-ci.yml -------------------------------------------------------------------------------- /meta-security/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/COPYING.MIT -------------------------------------------------------------------------------- /meta-security/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/README -------------------------------------------------------------------------------- /meta-security/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/conf/layer.conf -------------------------------------------------------------------------------- /meta-security/docs/overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/docs/overview.txt -------------------------------------------------------------------------------- /meta-security/dynamic-layers/meta-rust/recipes-ids/suricata/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | suricata -u 4 | -------------------------------------------------------------------------------- /meta-security/kas/qemuarm-parsec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuarm-parsec.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuarm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuarm.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuarm64-alt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuarm64-alt.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuarm64-ima.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuarm64-ima.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuarm64-musl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuarm64-musl.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuarm64-tpm2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuarm64-tpm2.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuarm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuarm64.yml -------------------------------------------------------------------------------- /meta-security/kas/qemumips64-alt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemumips64-alt.yml -------------------------------------------------------------------------------- /meta-security/kas/qemumips64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemumips64.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuppc-parsec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuppc-parsec.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuppc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuppc.yml -------------------------------------------------------------------------------- /meta-security/kas/qemuriscv64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemuriscv64.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86-64-alt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86-64-alt.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86-64-ima.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86-64-ima.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86-64-tpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86-64-tpm.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86-64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86-64.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86-comp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86-comp.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86-ima.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86-ima.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86-musl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86-musl.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86-test.yml -------------------------------------------------------------------------------- /meta-security/kas/qemux86.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/kas/qemux86.yml -------------------------------------------------------------------------------- /meta-security/meta-security-isafw/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /meta-security/meta-security-isafw/lib/isafw/isaplugins/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-security/meta-security-isafw/lib/isafw/isaplugins/configs/kca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-security/meta-security-isafw/lib/isafw/isaplugins/configs/la/exceptions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-security/meta-tpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-security/meta-tpm/README -------------------------------------------------------------------------------- /meta-security/recipes-core/busybox/busybox/head.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_FEATURE_FANCY_HEAD=y 2 | -------------------------------------------------------------------------------- /meta-security/recipes-ids/suricata/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | suricata -u 4 | -------------------------------------------------------------------------------- /meta-security/recipes-ids/tripwire/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./twtest.pl 4 | -------------------------------------------------------------------------------- /meta-security/recipes-security/fail2ban/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ##PYTHON## bin/fail2ban-testcases 4 | -------------------------------------------------------------------------------- /meta-security/recipes-security/libseccomp/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd tests 4 | ./regression -a 5 | -------------------------------------------------------------------------------- /meta-skeleton: -------------------------------------------------------------------------------- 1 | poky/meta-skeleton -------------------------------------------------------------------------------- /meta-supermicro/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-supermicro/COPYING.MIT -------------------------------------------------------------------------------- /meta-supermicro/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-supermicro/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-supermicro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-supermicro/LICENSE -------------------------------------------------------------------------------- /meta-supermicro/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-supermicro/MAINTAINERS -------------------------------------------------------------------------------- /meta-supermicro/OWNERS: -------------------------------------------------------------------------------- 1 | owners: 2 | - ryans@supermicro.com.tw 3 | -------------------------------------------------------------------------------- /meta-supermicro/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-supermicro/conf/layer.conf -------------------------------------------------------------------------------- /meta-wistron/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-wistron/OWNERS -------------------------------------------------------------------------------- /meta-x86/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-x86/conf/layer.conf -------------------------------------------------------------------------------- /meta-xilinx/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-xilinx/COPYING.MIT -------------------------------------------------------------------------------- /meta-xilinx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-xilinx/README.md -------------------------------------------------------------------------------- /meta-xilinx/meta-microblaze/recipes-devtools/qemu/qemu-native_%.bbappend: -------------------------------------------------------------------------------- 1 | include qemu-microblaze.inc 2 | -------------------------------------------------------------------------------- /meta-xilinx/meta-microblaze/recipes-devtools/qemu/qemu-system-native_%.bbappend: -------------------------------------------------------------------------------- 1 | include qemu-microblaze.inc 2 | -------------------------------------------------------------------------------- /meta-xilinx/meta-microblaze/recipes-devtools/qemu/qemu_%.bbappend: -------------------------------------------------------------------------------- 1 | include qemu-microblaze.inc 2 | -------------------------------------------------------------------------------- /meta-xilinx/meta-xilinx-bsp/conf/machine/cortexa9-zynq.conf: -------------------------------------------------------------------------------- 1 | require conf/machine/include/soc-zynq.inc 2 | -------------------------------------------------------------------------------- /meta-xilinx/meta-xilinx-bsp/recipes-graphics/libglu/libglu_%.bbappend: -------------------------------------------------------------------------------- 1 | DEPENDS_append_zynqmp = " virtual/libgles2" 2 | -------------------------------------------------------------------------------- /meta-xilinx/meta-xilinx-bsp/recipes-kernel/linux/linux-yocto-dev.bbappend: -------------------------------------------------------------------------------- 1 | require linux-yocto-xilinx.inc 2 | -------------------------------------------------------------------------------- /meta-xilinx/meta-xilinx-bsp/recipes-kernel/linux/linux-yocto-tiny_%.bbappend: -------------------------------------------------------------------------------- 1 | require linux-yocto-xilinx.inc 2 | -------------------------------------------------------------------------------- /meta-xilinx/meta-xilinx-bsp/recipes-kernel/linux/linux-yocto_%.bbappend: -------------------------------------------------------------------------------- 1 | require linux-yocto-xilinx.inc 2 | -------------------------------------------------------------------------------- /meta-xilinx/meta-xilinx-bsp/recipes-xrt/opencl-headers/opencl-headers_%.bbappend: -------------------------------------------------------------------------------- 1 | ALLOW_EMPTY_${PN} = "1" 2 | -------------------------------------------------------------------------------- /meta-yadro/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yadro/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/COPYING.MIT -------------------------------------------------------------------------------- /meta-yadro/COPYING.apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/COPYING.apache-2.0 -------------------------------------------------------------------------------- /meta-yadro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/LICENSE -------------------------------------------------------------------------------- /meta-yadro/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/MAINTAINERS -------------------------------------------------------------------------------- /meta-yadro/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/OWNERS -------------------------------------------------------------------------------- /meta-yadro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/README.md -------------------------------------------------------------------------------- /meta-yadro/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/conf/layer.conf -------------------------------------------------------------------------------- /meta-yadro/meta-nicole/recipes-bsp/u-boot/u-boot-fw-utils-aspeed_%.bbappend: -------------------------------------------------------------------------------- 1 | u-boot-aspeed_%.bbappend -------------------------------------------------------------------------------- /meta-yadro/meta-nicole/recipes-core/dropbear/dropbear/dropbear.default: -------------------------------------------------------------------------------- 1 | DROPBEAR_EXTRA_ARGS="" 2 | -------------------------------------------------------------------------------- /meta-yadro/meta-nicole/recipes-core/dropbear/dropbear_%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /meta-yadro/meta-nicole/recipes-kernel/linux/linux-aspeed/nicole.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-yadro/meta-nicole/recipes-phosphor/host/p9-host-start.bbappend: -------------------------------------------------------------------------------- 1 | RDEPENDS_${PN}_append = " avsbus-control" 2 | -------------------------------------------------------------------------------- /meta-yadro/meta-nicole/recipes-phosphor/mboxd/mboxd_%.bbappend: -------------------------------------------------------------------------------- 1 | MBOXD_FLASH_SIZE = "64M" 2 | -------------------------------------------------------------------------------- /meta-yadro/meta-nicole/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/meta-nicole/recipes.txt -------------------------------------------------------------------------------- /meta-yadro/meta-vesnin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/meta-yadro/meta-vesnin/README.md -------------------------------------------------------------------------------- /meta-yadro/meta-vesnin/recipes-phosphor/mboxd/mboxd_%.bbappend: -------------------------------------------------------------------------------- 1 | MBOXD_FLASH_SIZE = "64M" 2 | -------------------------------------------------------------------------------- /meta-yadro/recipes-phosphor/ipmi/phosphor-ipmi-config.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /oe-init-build-env: -------------------------------------------------------------------------------- 1 | poky/oe-init-build-env -------------------------------------------------------------------------------- /openbmc-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/openbmc-env -------------------------------------------------------------------------------- /poky/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/.gitignore -------------------------------------------------------------------------------- /poky/.templateconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/.templateconf -------------------------------------------------------------------------------- /poky/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/LICENSE -------------------------------------------------------------------------------- /poky/LICENSE.GPL-2.0-only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/LICENSE.GPL-2.0-only -------------------------------------------------------------------------------- /poky/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/LICENSE.MIT -------------------------------------------------------------------------------- /poky/MEMORIAM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/MEMORIAM -------------------------------------------------------------------------------- /poky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/Makefile -------------------------------------------------------------------------------- /poky/README.OE-Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/README.OE-Core -------------------------------------------------------------------------------- /poky/README.hardware: -------------------------------------------------------------------------------- 1 | meta-yocto-bsp/README.hardware -------------------------------------------------------------------------------- /poky/README.poky: -------------------------------------------------------------------------------- 1 | meta-poky/README.poky -------------------------------------------------------------------------------- /poky/README.qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/README.qemu -------------------------------------------------------------------------------- /poky/bitbake/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/.gitattributes -------------------------------------------------------------------------------- /poky/bitbake/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/AUTHORS -------------------------------------------------------------------------------- /poky/bitbake/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/ChangeLog -------------------------------------------------------------------------------- /poky/bitbake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/LICENSE -------------------------------------------------------------------------------- /poky/bitbake/LICENSE.GPL-2.0-only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/LICENSE.GPL-2.0-only -------------------------------------------------------------------------------- /poky/bitbake/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/LICENSE.MIT -------------------------------------------------------------------------------- /poky/bitbake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/README -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/bitbake -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake-diffsigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/bitbake-diffsigs -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake-dumpsig: -------------------------------------------------------------------------------- 1 | bitbake-diffsigs -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake-hashserv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/bitbake-hashserv -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake-layers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/bitbake-layers -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake-prserv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/bitbake-prserv -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake-selftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/bitbake-selftest -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/bitbake-server -------------------------------------------------------------------------------- /poky/bitbake/bin/bitbake-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/bitbake-worker -------------------------------------------------------------------------------- /poky/bitbake/bin/git-make-shallow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/git-make-shallow -------------------------------------------------------------------------------- /poky/bitbake/bin/toaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/bin/toaster -------------------------------------------------------------------------------- /poky/bitbake/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/contrib/README -------------------------------------------------------------------------------- /poky/bitbake/contrib/bbdev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/contrib/bbdev.sh -------------------------------------------------------------------------------- /poky/bitbake/contrib/dump_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/contrib/dump_cache.py -------------------------------------------------------------------------------- /poky/bitbake/doc/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /poky/bitbake/doc/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/COPYING.GPL -------------------------------------------------------------------------------- /poky/bitbake/doc/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/COPYING.MIT -------------------------------------------------------------------------------- /poky/bitbake/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/Makefile -------------------------------------------------------------------------------- /poky/bitbake/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/README -------------------------------------------------------------------------------- /poky/bitbake/doc/bitbake.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/bitbake.1 -------------------------------------------------------------------------------- /poky/bitbake/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/conf.py -------------------------------------------------------------------------------- /poky/bitbake/doc/genindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/genindex.rst -------------------------------------------------------------------------------- /poky/bitbake/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/index.rst -------------------------------------------------------------------------------- /poky/bitbake/doc/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/releases.rst -------------------------------------------------------------------------------- /poky/bitbake/doc/template/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/doc/template/Vera.ttf -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/COW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/COW.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/__init__.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/build.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/cache.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/cache_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/cache_extra.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/checksum.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/codeparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/codeparser.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/command.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/cooker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/cooker.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/cookerdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/cookerdata.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/daemonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/daemonize.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/data.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/data_smart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/data_smart.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/event.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/exceptions.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/az.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/az.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/bzr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/bzr.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/cvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/cvs.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/git.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/hg.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/npm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/npm.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/osc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/osc.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/repo.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/s3.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/sftp.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/ssh.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/svn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/svn.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/fetch2/wget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/fetch2/wget.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/main.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/methodpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/methodpool.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/monitordisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/monitordisk.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/msg.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/parse/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/parse/ast.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/process.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/progress.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/providers.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/pysh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/remotedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/remotedata.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/runqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/runqueue.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/siggen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/siggen.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/taskdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/taskdata.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/tests/color.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/cow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/tests/cow.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/tests/data.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/tests/event.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/tests/fetch.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/tests/parse.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/runqueue-tests/recipes/a1.bb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/runqueue-tests/recipes/b1.bb: -------------------------------------------------------------------------------- 1 | DEPENDS = "a1" -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/runqueue-tests/recipes/c1.bb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/runqueue-tests/recipes/e1.bb: -------------------------------------------------------------------------------- 1 | DEPENDS = "b1" -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/runqueue-tests/recipes/f1.bb: -------------------------------------------------------------------------------- 1 | do_install[mcdepends] = "mc:mc-1:mc_2:a1:do_build" 2 | -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/tests/utils.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/tinfoil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/tinfoil.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/ui/__init__.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/ui/knotty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/ui/knotty.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/ui/ncurses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/ui/ncurses.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/ui/taskexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/ui/taskexp.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/ui/teamcity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/ui/teamcity.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/ui/uievent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/ui/uievent.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/ui/uihelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/ui/uihelper.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bb/utils.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bblayers/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bblayers/query.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bs4/AUTHORS.txt -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bs4/COPYING.txt -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bs4/NEWS.txt -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bs4/__init__.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/dammit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bs4/dammit.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bs4/diagnose.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bs4/element.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/bs4/testing.py -------------------------------------------------------------------------------- /poky/bitbake/lib/bs4/tests/__init__.py: -------------------------------------------------------------------------------- 1 | "The beautifulsoup tests." 2 | -------------------------------------------------------------------------------- /poky/bitbake/lib/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/codegen.py -------------------------------------------------------------------------------- /poky/bitbake/lib/hashserv/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/hashserv/tests.py -------------------------------------------------------------------------------- /poky/bitbake/lib/layerindexlib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/ply/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/ply/lex.py -------------------------------------------------------------------------------- /poky/bitbake/lib/ply/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/ply/yacc.py -------------------------------------------------------------------------------- /poky/bitbake/lib/prserv/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/prserv/db.py -------------------------------------------------------------------------------- /poky/bitbake/lib/prserv/serv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/prserv/serv.py -------------------------------------------------------------------------------- /poky/bitbake/lib/pyinotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/pyinotify.py -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/bldcollector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/bldcontrol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/bldcontrol/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/bldcontrol/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/bldcontrol/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/bitbake/lib/toaster/manage.py -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/orm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/orm/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/orm/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/orm/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/browser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/builds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/functional/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/toaster-tests-requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==2.49.2 2 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/toastergui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/toastergui/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/toastermain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/toastermain/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/lib/toaster/toastermain/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/bitbake/toaster-requirements.txt: -------------------------------------------------------------------------------- 1 | Django>2.2,<2.3 2 | beautifulsoup4>=4.4.0 3 | pytz 4 | -------------------------------------------------------------------------------- /poky/contrib/artwork/oe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/contrib/artwork/oe.svg -------------------------------------------------------------------------------- /poky/documentation/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | Pipfile.lock 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /poky/documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/Makefile -------------------------------------------------------------------------------- /poky/documentation/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/Pipfile -------------------------------------------------------------------------------- /poky/documentation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/README -------------------------------------------------------------------------------- /poky/documentation/bitbake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/bitbake.rst -------------------------------------------------------------------------------- /poky/documentation/boilerplate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/boilerplate.rst -------------------------------------------------------------------------------- /poky/documentation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/conf.py -------------------------------------------------------------------------------- /poky/documentation/genindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/genindex.rst -------------------------------------------------------------------------------- /poky/documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/index.rst -------------------------------------------------------------------------------- /poky/documentation/poky.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/poky.yaml -------------------------------------------------------------------------------- /poky/documentation/ref-manual/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/ref-manual/TODO -------------------------------------------------------------------------------- /poky/documentation/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/documentation/releases.rst -------------------------------------------------------------------------------- /poky/meta-poky/README.poky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta-poky/README.poky -------------------------------------------------------------------------------- /poky/meta-poky/conf/conf-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta-poky/conf/conf-notes.txt -------------------------------------------------------------------------------- /poky/meta-poky/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta-poky/conf/layer.conf -------------------------------------------------------------------------------- /poky/meta-poky/recipes-core/busybox/busybox_%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" 2 | 3 | -------------------------------------------------------------------------------- /poky/meta-poky/recipes-core/psplash/psplash_git.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend_poky := "${THISDIR}/files:" 2 | 3 | -------------------------------------------------------------------------------- /poky/meta-selftest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta-selftest/README -------------------------------------------------------------------------------- /poky/meta-selftest/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta-selftest/conf/layer.conf -------------------------------------------------------------------------------- /poky/meta-selftest/files/signing/key.passphrase: -------------------------------------------------------------------------------- 1 | test123 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/lib/devtool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-selftest/lib/pseudo_pyc_test1.py: -------------------------------------------------------------------------------- 1 | STRING = "pseudo_pyc_test1" 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/lib/pseudo_pyc_test2.py: -------------------------------------------------------------------------------- 1 | STRING = "pseudo_pyc_test2" 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/devtool/devtool-patch-overrides/source: -------------------------------------------------------------------------------- 1 | This is a test for something 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/devtool/devtool-test-local/file1: -------------------------------------------------------------------------------- 1 | The first file 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/devtool/devtool-test-local/file2: -------------------------------------------------------------------------------- 1 | The second file 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/devtool/devtool-test-localonly/file1: -------------------------------------------------------------------------------- 1 | The first file 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/devtool/devtool-test-localonly/file2: -------------------------------------------------------------------------------- 1 | The second file 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/devtool/devtool-test-subdir/testfile: -------------------------------------------------------------------------------- 1 | Modified version 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/recipetool/files/file1: -------------------------------------------------------------------------------- 1 | First test file 2 | 123 3 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/recipetool/files/selftest-replaceme-orig: -------------------------------------------------------------------------------- 1 | Straight through with same nam 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/recipetool/files/subdir/fileinsubdir: -------------------------------------------------------------------------------- 1 | A file in a subdirectory 2 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/recipeutils/recipeutils-test/anotherfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-selftest/recipes-test/recipeutils/recipeutils-test/somefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-skeleton/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta-skeleton/conf/layer.conf -------------------------------------------------------------------------------- /poky/meta-skeleton/recipes-core/busybox/busybox/no_rfkill.cfg: -------------------------------------------------------------------------------- 1 | # CONFIG_RFKILL is not set 2 | -------------------------------------------------------------------------------- /poky/meta-skeleton/recipes-kernel/linux/linux-yocto-custom/feature.scc: -------------------------------------------------------------------------------- 1 | patch 0001-linux-version-tweak.patch 2 | -------------------------------------------------------------------------------- /poky/meta-skeleton/recipes-kernel/linux/linux-yocto-custom/smp.cfg: -------------------------------------------------------------------------------- 1 | # CONFIG_SMP is not set 2 | -------------------------------------------------------------------------------- /poky/meta-skeleton/recipes-skeleton/useradd/useradd-example/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-skeleton/recipes-skeleton/useradd/useradd-example/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-skeleton/recipes-skeleton/useradd/useradd-example/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-skeleton/recipes-skeleton/useradd/useradd-example/file4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-yocto-bsp/lib/oeqa/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-yocto-bsp/recipes-bsp/formfactor/formfactor_0.0.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 2 | -------------------------------------------------------------------------------- /poky/meta-yocto-bsp/recipes-graphics/xorg-xserver/xserver-xf86-config/genericx86-64/xorg.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta-yocto-bsp/recipes-graphics/xorg-xserver/xserver-xf86-config/genericx86/xorg.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/COPYING.MIT -------------------------------------------------------------------------------- /poky/meta/classes/allarch.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/allarch.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/archiver.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/archiver.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/base.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/base.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/ccache.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/ccache.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/ccmake.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/ccmake.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/chrpath.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/chrpath.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/clutter.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/clutter.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/cmake.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/cmake.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/cml1.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/cml1.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/cpan.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/cpan.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/cross.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/cross.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/crosssdk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/crosssdk.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/debian.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/debian.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/deploy.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/deploy.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/devshell.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/devshell.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/dos2unix.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/dos2unix.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/fs-uuid.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/fs-uuid.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/gconf.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/gconf.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/gettext.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/gettext.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/glide.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/glide.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/go-mod.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/go-mod.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/go-ptest.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/go-ptest.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/go.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/go.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/goarch.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/goarch.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/grub-efi.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/grub-efi.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/gtk-doc.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/gtk-doc.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/icecc.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/icecc.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/image.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/image.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/insane.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/insane.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/kernel.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/kernel.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/license.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/license.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/logging.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/logging.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/manpages.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/manpages.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/mcextend.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/mcextend.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/meson.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/meson.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/meta.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/meta.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/mime-xdg.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/mime-xdg.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/mime.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/mime.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/mirrors.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/mirrors.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/module.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/module.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/multilib.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/multilib.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/native.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/native.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/npm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/npm.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/oelint.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/oelint.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/package.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/package.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/patch.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/patch.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/pkgconfig.bbclass: -------------------------------------------------------------------------------- 1 | DEPENDS_prepend = "pkgconfig-native " 2 | 3 | -------------------------------------------------------------------------------- /poky/meta/classes/prexport.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/prexport.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/primport.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/primport.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/ptest.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/ptest.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/pypi.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/pypi.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/qemu.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/qemu.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/qemuboot.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/qemuboot.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/rm_work.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/rm_work.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/sanity.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/sanity.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/scons.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/scons.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/setuptools3.bbclass: -------------------------------------------------------------------------------- 1 | inherit distutils3 2 | 3 | DEPENDS += "python3-setuptools-native" 4 | 5 | -------------------------------------------------------------------------------- /poky/meta/classes/sign_ipk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/sign_ipk.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/sign_rpm.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/sign_rpm.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/siteinfo.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/siteinfo.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/sstate.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/sstate.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/staging.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/staging.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/syslinux.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/syslinux.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/systemd.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/systemd.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/terminal.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/terminal.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/testsdk.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/testsdk.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/texinfo.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/texinfo.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/toaster.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/toaster.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/useradd.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/useradd.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/utils.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/utils.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/vala.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/vala.bbclass -------------------------------------------------------------------------------- /poky/meta/classes/waf.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/classes/waf.bbclass -------------------------------------------------------------------------------- /poky/meta/conf/abi_version.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/abi_version.conf -------------------------------------------------------------------------------- /poky/meta/conf/bitbake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/bitbake.conf -------------------------------------------------------------------------------- /poky/meta/conf/ccache.conf: -------------------------------------------------------------------------------- 1 | max_size = 0 2 | cache_dir_levels = 1 3 | -------------------------------------------------------------------------------- /poky/meta/conf/conf-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/conf-notes.txt -------------------------------------------------------------------------------- /poky/meta/conf/documentation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/documentation.conf -------------------------------------------------------------------------------- /poky/meta/conf/image-uefi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/image-uefi.conf -------------------------------------------------------------------------------- /poky/meta/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/layer.conf -------------------------------------------------------------------------------- /poky/meta/conf/licenses.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/licenses.conf -------------------------------------------------------------------------------- /poky/meta/conf/machine-sdk/aarch64.conf: -------------------------------------------------------------------------------- 1 | SDK_ARCH = "aarch64" 2 | ABIEXTENSION_class-nativesdk = "" 3 | -------------------------------------------------------------------------------- /poky/meta/conf/machine-sdk/ppc64le.conf: -------------------------------------------------------------------------------- 1 | SDK_ARCH = "ppc64le" 2 | ABIEXTENSION_class-nativesdk = "" 3 | -------------------------------------------------------------------------------- /poky/meta/conf/machine-sdk/x86_64.conf: -------------------------------------------------------------------------------- 1 | SDK_ARCH = "x86_64" 2 | ABIEXTENSION_class-nativesdk = "" 3 | -------------------------------------------------------------------------------- /poky/meta/conf/migrate_localcount.conf: -------------------------------------------------------------------------------- 1 | INHERIT += "migrate_localcount" 2 | -------------------------------------------------------------------------------- /poky/meta/conf/multiconfig/default.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/conf/multilib.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/multilib.conf -------------------------------------------------------------------------------- /poky/meta/conf/prexport.conf: -------------------------------------------------------------------------------- 1 | INHERIT += "prexport" 2 | -------------------------------------------------------------------------------- /poky/meta/conf/primport.conf: -------------------------------------------------------------------------------- 1 | INHERIT += "primport" 2 | -------------------------------------------------------------------------------- /poky/meta/conf/sanity.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/conf/sanity.conf -------------------------------------------------------------------------------- /poky/meta/files/common-licenses/PD: -------------------------------------------------------------------------------- 1 | This is a placeholder for the Public Domain License 2 | -------------------------------------------------------------------------------- /poky/meta/files/common-licenses/Proprietary: -------------------------------------------------------------------------------- 1 | Proprietary license. 2 | -------------------------------------------------------------------------------- /poky/meta/files/ext-sdk-prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/files/ext-sdk-prepare.py -------------------------------------------------------------------------------- /poky/meta/files/fs-perms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/files/fs-perms.txt -------------------------------------------------------------------------------- /poky/meta/lib/bblayers/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/bblayers/create.py -------------------------------------------------------------------------------- /poky/meta/lib/buildstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/buildstats.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/__init__.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/cachedpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/cachedpath.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/classextend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/classextend.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/classutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/classutils.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/cve_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/cve_check.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/data.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/distro_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/distro_check.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/elf.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/gpg_sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/gpg_sign.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/license.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/lsb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/lsb.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/maketype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/maketype.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/manifest.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/package.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/packagedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/packagedata.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/packagegroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/packagegroup.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/patch.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/path.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/prservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/prservice.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/qa.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/recipeutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/recipeutils.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/reproducible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/reproducible.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/rootfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/rootfs.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/sdk.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/sstatesig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/sstatesig.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/terminal.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/types.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/useradd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/useradd.py -------------------------------------------------------------------------------- /poky/meta/lib/oe/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oe/utils.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/core/README -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/core/case.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/cases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/core/context.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/core/loader.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/core/runner.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/files/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/files/test.c -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/files/test.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() {} -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/manual/sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/manual/sdk.json -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/oetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/oetest.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/runexported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/runexported.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/runtime/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/runtime/case.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/runtime/files/SConstruct: -------------------------------------------------------------------------------- 1 | Program('hello.c') 2 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/runtime/files/hello.stp: -------------------------------------------------------------------------------- 1 | probe oneshot { println("hello world") } 2 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/runtime/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/sdk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/sdk/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/sdk/case.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/sdk/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/sdk/context.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/sdk/testsdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/sdk/testsdk.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/sdk/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/sdkext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/sdkext/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/sdkext/case.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/selftest/cases/diffoscope/A/file.txt: -------------------------------------------------------------------------------- 1 | A 2 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/selftest/cases/diffoscope/B/file.txt: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/selftest/cases/oelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/utils/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/utils/dump.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/utils/ftools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/utils/ftools.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/utils/git.py -------------------------------------------------------------------------------- /poky/meta/lib/oeqa/utils/nfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/lib/oeqa/utils/nfs.py -------------------------------------------------------------------------------- /poky/meta/recipes-bsp/alsa-state/alsa-state/asound.conf: -------------------------------------------------------------------------------- 1 | # Global alsa-lib configuration 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-bsp/alsa-state/alsa-state/asound.state: -------------------------------------------------------------------------------- 1 | # Dummy file, do not delete 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-bsp/formfactor/files/machconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/recipes-connectivity/bind/bind-9.16.12/bind9: -------------------------------------------------------------------------------- 1 | # startup options for the server 2 | OPTIONS="-u bind" 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/base-files/base-files/host.conf: -------------------------------------------------------------------------------- 1 | order hosts,bind 2 | multi on 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/base-files/base-files/issue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/base-files/base-files/issue.net: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/base-files/base-files/motd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/base-files/base-files/rotation: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /poky/meta/recipes-core/busybox/busybox/pgrep.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_PGREP=y 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/busybox/busybox/rev.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_REV=y 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/busybox/busybox/sha1sum.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_SHA1SUM=y 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/busybox/busybox/sha256sum.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_SHA256SUM=y 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/busybox/files/default.script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec run-parts -a "$1" /etc/udhcpc.d 4 | 5 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/glibc/glibc-locale_2.33.bb: -------------------------------------------------------------------------------- 1 | require glibc-locale.inc 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/glibc/glibc-mtrace_2.33.bb: -------------------------------------------------------------------------------- 1 | require glibc-mtrace.inc 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/glibc/glibc-scripts_2.33.bb: -------------------------------------------------------------------------------- 1 | require glibc-scripts.inc 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/libxcrypt/libxcrypt_4.4.18.bb: -------------------------------------------------------------------------------- 1 | require libxcrypt.inc 2 | 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/libxml/libxml2/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | export LC_ALL=en_US.UTF-8 4 | make -k runtests 5 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/systemd/systemd-conf/journald.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | ForwardToSyslog=yes 3 | RuntimeMaxUse=64M 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/systemd/systemd-conf/logind.conf: -------------------------------------------------------------------------------- 1 | [Login] 2 | KillUserProcesses=yes 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/systemd/systemd-conf/system.conf: -------------------------------------------------------------------------------- 1 | [Manager] 2 | DefaultMemoryAccounting=yes 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/systemd/systemd/99-default.preset: -------------------------------------------------------------------------------- 1 | disable * 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-core/zlib/site_config/headers: -------------------------------------------------------------------------------- 1 | zlib.h 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/devel-config/nfs-export-root/exports: -------------------------------------------------------------------------------- 1 | / *(rw,no_root_squash,async,no_subtree_check) 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/m4/m4_1.4.18.bb: -------------------------------------------------------------------------------- 1 | require m4-${PV}.inc 2 | 3 | BBCLASSEXTEND = "nativesdk" 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/meson/meson_0.57.1.bb: -------------------------------------------------------------------------------- 1 | include meson.inc 2 | 3 | BBCLASSEXTEND = "native" 4 | 5 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/python/python3-async_0.6.2.bb: -------------------------------------------------------------------------------- 1 | inherit setuptools3 2 | require python-async.inc 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/python/python3-extras_1.0.0.bb: -------------------------------------------------------------------------------- 1 | inherit setuptools3 2 | require python-extras.inc 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/python/python3-jinja2/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/python/python3-markupsafe/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pytest 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/python/python3-nose_1.3.7.bb: -------------------------------------------------------------------------------- 1 | inherit setuptools3 2 | require python-nose.inc 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/python/python3-smmap_4.0.0.bb: -------------------------------------------------------------------------------- 1 | inherit setuptools3 2 | require python-smmap.inc 3 | 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/quilt/quilt-native_0.66.bb: -------------------------------------------------------------------------------- 1 | require quilt.inc 2 | inherit native 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/quilt/quilt_0.66.bb: -------------------------------------------------------------------------------- 1 | require quilt.inc 2 | inherit gettext 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-devtools/run-postinsts/run-postinsts/run-postinsts.init: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | run-postinsts 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-extended/bzip2/bzip2/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -k runtest 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-extended/ethtool/ethtool/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make -k runtest-TESTS 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-extended/gzip/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd src/tests 4 | 5 | make check 6 | 7 | -------------------------------------------------------------------------------- /poky/meta/recipes-extended/iptables/iptables/ip6tables.rules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/recipes-extended/iptables/iptables/iptables.rules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/recipes-gnome/json-glib/json-glib/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | gnome-desktop-testing-runner json-glib 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-graphics/clutter/clutter-1.0/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | gnome-desktop-testing-runner clutter 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-graphics/pango/pango/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | gnome-desktop-testing-runner pango 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-graphics/wayland/weston-init/weston.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/recipes-graphics/x11-common/xserver-nodm-init/capability.conf: -------------------------------------------------------------------------------- 1 | cap_sys_admin @USER@ 2 | none * 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/meta/recipes-multimedia/alsa/alsa-utils_1.2.4.bb: -------------------------------------------------------------------------------- 1 | require alsa-utils.inc 2 | 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-rt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/recipes-rt/README -------------------------------------------------------------------------------- /poky/meta/recipes-rt/rt-tests/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python3 ./rt_bmark.py 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-sato/matchbox-desktop/files/vfolders/Root.order: -------------------------------------------------------------------------------- 1 | Applications 2 | Games 3 | Settings 4 | All 5 | -------------------------------------------------------------------------------- /poky/meta/recipes-sato/settings-daemon/files/70settings-daemon.sh: -------------------------------------------------------------------------------- 1 | /usr/bin/settings-daemon & 2 | -------------------------------------------------------------------------------- /poky/meta/recipes-support/attr/attr/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make test-suite.log 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-support/icu/icu/filter.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /poky/meta/recipes-support/libpcre/libpcre/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | make check-TESTS 4 | -------------------------------------------------------------------------------- /poky/meta/recipes-support/rng-tools/rng-tools/default: -------------------------------------------------------------------------------- 1 | EXTRA_ARGS="-r /dev/hwrng" 2 | -------------------------------------------------------------------------------- /poky/meta/recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/recipes.txt -------------------------------------------------------------------------------- /poky/meta/site/arc-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/arc-common -------------------------------------------------------------------------------- /poky/meta/site/arm-32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/arm-32 -------------------------------------------------------------------------------- /poky/meta/site/arm-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/arm-64 -------------------------------------------------------------------------------- /poky/meta/site/arm-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/arm-common -------------------------------------------------------------------------------- /poky/meta/site/arm-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/arm-darwin -------------------------------------------------------------------------------- /poky/meta/site/arm-darwin8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/arm-darwin8 -------------------------------------------------------------------------------- /poky/meta/site/arm-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/arm-linux -------------------------------------------------------------------------------- /poky/meta/site/armeb-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/armeb-linux -------------------------------------------------------------------------------- /poky/meta/site/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/common -------------------------------------------------------------------------------- /poky/meta/site/common-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/common-darwin -------------------------------------------------------------------------------- /poky/meta/site/common-glibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/common-glibc -------------------------------------------------------------------------------- /poky/meta/site/common-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/common-linux -------------------------------------------------------------------------------- /poky/meta/site/common-mingw: -------------------------------------------------------------------------------- 1 | # expat 2 | ac_cv_func_mmap_fixed_mapped=no 3 | -------------------------------------------------------------------------------- /poky/meta/site/common-musl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/common-musl -------------------------------------------------------------------------------- /poky/meta/site/endian-big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/endian-big -------------------------------------------------------------------------------- /poky/meta/site/endian-little: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/endian-little -------------------------------------------------------------------------------- /poky/meta/site/ix86-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/ix86-common -------------------------------------------------------------------------------- /poky/meta/site/microblaze-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/microblaze-linux -------------------------------------------------------------------------------- /poky/meta/site/mips-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mips-common -------------------------------------------------------------------------------- /poky/meta/site/mips-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mips-linux -------------------------------------------------------------------------------- /poky/meta/site/mips64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mips64-linux -------------------------------------------------------------------------------- /poky/meta/site/mips64el-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mips64el-linux -------------------------------------------------------------------------------- /poky/meta/site/mipsel-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mipsel-linux -------------------------------------------------------------------------------- /poky/meta/site/mipsisa32r6-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mipsisa32r6-linux -------------------------------------------------------------------------------- /poky/meta/site/mipsisa32r6el-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mipsisa32r6el-linux -------------------------------------------------------------------------------- /poky/meta/site/mipsisa64r6-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mipsisa64r6-linux -------------------------------------------------------------------------------- /poky/meta/site/mipsisa64r6el-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/mipsisa64r6el-linux -------------------------------------------------------------------------------- /poky/meta/site/native: -------------------------------------------------------------------------------- 1 | ac_cv_path_SED=sed 2 | -------------------------------------------------------------------------------- /poky/meta/site/nios2-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/nios2-linux -------------------------------------------------------------------------------- /poky/meta/site/powerpc-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/powerpc-common -------------------------------------------------------------------------------- /poky/meta/site/powerpc-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/powerpc-darwin -------------------------------------------------------------------------------- /poky/meta/site/powerpc-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/powerpc-linux -------------------------------------------------------------------------------- /poky/meta/site/powerpc32-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/powerpc32-linux -------------------------------------------------------------------------------- /poky/meta/site/powerpc64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/powerpc64-linux -------------------------------------------------------------------------------- /poky/meta/site/riscv32-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/riscv32-linux -------------------------------------------------------------------------------- /poky/meta/site/riscv64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/riscv64-linux -------------------------------------------------------------------------------- /poky/meta/site/sh-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/sh-common -------------------------------------------------------------------------------- /poky/meta/site/sparc-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/sparc-linux -------------------------------------------------------------------------------- /poky/meta/site/x32-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/x32-linux -------------------------------------------------------------------------------- /poky/meta/site/x86_64-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/meta/site/x86_64-linux -------------------------------------------------------------------------------- /poky/oe-init-build-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/oe-init-build-env -------------------------------------------------------------------------------- /poky/scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/README -------------------------------------------------------------------------------- /poky/scripts/bitbake-prserv-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/bitbake-prserv-tool -------------------------------------------------------------------------------- /poky/scripts/bitbake-whatchanged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/bitbake-whatchanged -------------------------------------------------------------------------------- /poky/scripts/buildall-qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/buildall-qemu -------------------------------------------------------------------------------- /poky/scripts/buildhistory-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/buildhistory-diff -------------------------------------------------------------------------------- /poky/scripts/buildstats-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/buildstats-diff -------------------------------------------------------------------------------- /poky/scripts/combo-layer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/combo-layer -------------------------------------------------------------------------------- /poky/scripts/contrib/bbvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/contrib/bbvars.py -------------------------------------------------------------------------------- /poky/scripts/contrib/ddimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/contrib/ddimage -------------------------------------------------------------------------------- /poky/scripts/contrib/graph-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/contrib/graph-tool -------------------------------------------------------------------------------- /poky/scripts/contrib/patchtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/contrib/patchtest.sh -------------------------------------------------------------------------------- /poky/scripts/contrib/serdevtry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/contrib/serdevtry -------------------------------------------------------------------------------- /poky/scripts/contrib/uncovered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/contrib/uncovered -------------------------------------------------------------------------------- /poky/scripts/cp-noerror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/cp-noerror -------------------------------------------------------------------------------- /poky/scripts/create-pull-request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/create-pull-request -------------------------------------------------------------------------------- /poky/scripts/crosstap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/crosstap -------------------------------------------------------------------------------- /poky/scripts/devtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/devtool -------------------------------------------------------------------------------- /poky/scripts/gen-lockedsig-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/gen-lockedsig-cache -------------------------------------------------------------------------------- /poky/scripts/gen-site-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/gen-site-config -------------------------------------------------------------------------------- /poky/scripts/install-buildtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/install-buildtools -------------------------------------------------------------------------------- /poky/scripts/lib/argparse_oe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/argparse_oe.py -------------------------------------------------------------------------------- /poky/scripts/lib/buildstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/buildstats.py -------------------------------------------------------------------------------- /poky/scripts/lib/checklayer/cases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/scripts/lib/devtool/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/devtool/build.py -------------------------------------------------------------------------------- /poky/scripts/lib/devtool/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/devtool/deploy.py -------------------------------------------------------------------------------- /poky/scripts/lib/devtool/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/devtool/export.py -------------------------------------------------------------------------------- /poky/scripts/lib/devtool/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/devtool/import.py -------------------------------------------------------------------------------- /poky/scripts/lib/devtool/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/devtool/sdk.py -------------------------------------------------------------------------------- /poky/scripts/lib/devtool/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/devtool/search.py -------------------------------------------------------------------------------- /poky/scripts/lib/recipetool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/scripts/lib/resulttool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/scripts/lib/resulttool/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/resulttool/log.py -------------------------------------------------------------------------------- /poky/scripts/lib/scriptpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/scriptpath.py -------------------------------------------------------------------------------- /poky/scripts/lib/scriptutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/scriptutils.py -------------------------------------------------------------------------------- /poky/scripts/lib/wic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/wic/__init__.py -------------------------------------------------------------------------------- /poky/scripts/lib/wic/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/wic/engine.py -------------------------------------------------------------------------------- /poky/scripts/lib/wic/filemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/wic/filemap.py -------------------------------------------------------------------------------- /poky/scripts/lib/wic/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/wic/help.py -------------------------------------------------------------------------------- /poky/scripts/lib/wic/ksparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/wic/ksparser.py -------------------------------------------------------------------------------- /poky/scripts/lib/wic/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/wic/misc.py -------------------------------------------------------------------------------- /poky/scripts/lib/wic/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/wic/partition.py -------------------------------------------------------------------------------- /poky/scripts/lib/wic/pluginbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lib/wic/pluginbase.py -------------------------------------------------------------------------------- /poky/scripts/lnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/lnr -------------------------------------------------------------------------------- /poky/scripts/oe-build-perf-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-build-perf-report -------------------------------------------------------------------------------- /poky/scripts/oe-build-perf-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-build-perf-test -------------------------------------------------------------------------------- /poky/scripts/oe-buildenv-internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-buildenv-internal -------------------------------------------------------------------------------- /poky/scripts/oe-check-sstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-check-sstate -------------------------------------------------------------------------------- /poky/scripts/oe-debuginfod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-debuginfod -------------------------------------------------------------------------------- /poky/scripts/oe-depends-dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-depends-dot -------------------------------------------------------------------------------- /poky/scripts/oe-git-archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-git-archive -------------------------------------------------------------------------------- /poky/scripts/oe-git-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-git-proxy -------------------------------------------------------------------------------- /poky/scripts/oe-pkgdata-browser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-pkgdata-browser -------------------------------------------------------------------------------- /poky/scripts/oe-pkgdata-util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-pkgdata-util -------------------------------------------------------------------------------- /poky/scripts/oe-publish-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-publish-sdk -------------------------------------------------------------------------------- /poky/scripts/oe-pylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-pylint -------------------------------------------------------------------------------- /poky/scripts/oe-run-native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-run-native -------------------------------------------------------------------------------- /poky/scripts/oe-selftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-selftest -------------------------------------------------------------------------------- /poky/scripts/oe-setup-builddir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-setup-builddir -------------------------------------------------------------------------------- /poky/scripts/oe-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-test -------------------------------------------------------------------------------- /poky/scripts/oe-time-dd-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-time-dd-test.sh -------------------------------------------------------------------------------- /poky/scripts/oe-trim-schemas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/oe-trim-schemas -------------------------------------------------------------------------------- /poky/scripts/opkg-query-helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/opkg-query-helper.py -------------------------------------------------------------------------------- /poky/scripts/pybootchartgui/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/pybootchartgui/NEWS -------------------------------------------------------------------------------- /poky/scripts/pybootchartgui/pybootchartgui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poky/scripts/pybootchartgui/pybootchartgui/main.py: -------------------------------------------------------------------------------- 1 | main.py.in -------------------------------------------------------------------------------- /poky/scripts/pythondeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/pythondeps -------------------------------------------------------------------------------- /poky/scripts/recipetool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/recipetool -------------------------------------------------------------------------------- /poky/scripts/relocate_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/relocate_sdk.py -------------------------------------------------------------------------------- /poky/scripts/resulttool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/resulttool -------------------------------------------------------------------------------- /poky/scripts/rpm2cpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/rpm2cpio.sh -------------------------------------------------------------------------------- /poky/scripts/runqemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/runqemu -------------------------------------------------------------------------------- /poky/scripts/runqemu-export-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/runqemu-export-rootfs -------------------------------------------------------------------------------- /poky/scripts/runqemu-extract-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/runqemu-extract-sdk -------------------------------------------------------------------------------- /poky/scripts/runqemu-gen-tapdevs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/runqemu-gen-tapdevs -------------------------------------------------------------------------------- /poky/scripts/runqemu-ifdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/runqemu-ifdown -------------------------------------------------------------------------------- /poky/scripts/runqemu-ifup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/runqemu-ifup -------------------------------------------------------------------------------- /poky/scripts/runqemu.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/runqemu.README -------------------------------------------------------------------------------- /poky/scripts/send-error-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/send-error-report -------------------------------------------------------------------------------- /poky/scripts/send-pull-request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/send-pull-request -------------------------------------------------------------------------------- /poky/scripts/task-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/task-time -------------------------------------------------------------------------------- /poky/scripts/test-reexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/test-reexec -------------------------------------------------------------------------------- /poky/scripts/test-remote-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/test-remote-image -------------------------------------------------------------------------------- /poky/scripts/tiny/dirsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/tiny/dirsize.py -------------------------------------------------------------------------------- /poky/scripts/tiny/ksize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/tiny/ksize.py -------------------------------------------------------------------------------- /poky/scripts/tiny/ksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/tiny/ksum.py -------------------------------------------------------------------------------- /poky/scripts/verify-bashisms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/verify-bashisms -------------------------------------------------------------------------------- /poky/scripts/wic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/wic -------------------------------------------------------------------------------- /poky/scripts/yocto-check-layer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/poky/scripts/yocto-check-layer -------------------------------------------------------------------------------- /scripts: -------------------------------------------------------------------------------- 1 | poky/scripts/ -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMDESE/OpenBMC/HEAD/setup --------------------------------------------------------------------------------