├── .circleci └── config.yml ├── .envrc ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug-report-for-everything-except-build-errors.md │ ├── bug-report-for-heads-build-errors.md │ └── feature_request.md ├── .gitignore ├── .gitlab-ci.yml.deprecated ├── BOARDS_AND_TESTERS.md ├── CONTRIBUTING.md ├── COPYING ├── FAQ.md ├── Makefile ├── README.md ├── WP_NOTES.md ├── bin ├── cpio-clean ├── fetch_coreboot_crossgcc_archive.sh ├── fetch_source_archive.sh ├── find_undocumented_config.sh ├── inject_gpg_key.sh ├── prepare_module_config.sh ├── seed_package_mirror.sh └── verity-sign ├── blobs ├── dev.cpio ├── librem_jail │ ├── README │ ├── librem_11 │ │ ├── i915 │ │ │ └── icl_dmc_ver1_09.bin │ │ ├── intel │ │ │ ├── ibt-19-0-0.ddc │ │ │ └── ibt-19-0-0.sfi │ │ └── iwlwifi-QuZ-a0-jf-b0-72.ucode │ └── librem_mini_v2 │ │ ├── ar3k │ │ ├── AthrBT_0x11020100.dfu │ │ └── ramps_0x11020100_40.dfu │ │ ├── intel │ │ ├── ibt-20-1-3.ddc │ │ └── ibt-20-1-3.sfi │ │ └── iwlwifi-cc-a0-59.ucode ├── optiplex_9010 │ ├── README.md │ ├── ifd.bin │ ├── ifd_t16650.bin │ └── layout.txt ├── p8z77-m_pro │ └── download_BIOS_clean.sh ├── t420 │ ├── extract.sh │ ├── layout.txt │ └── readme.md ├── t440p │ ├── .gitignore │ ├── README.md │ ├── download-clean-me │ ├── extract │ ├── gbe.bin │ └── ifd.bin ├── utils │ └── me_cleaner │ │ └── me_cleaner.py ├── w541 │ ├── .gitignore │ ├── README.md │ ├── download-clean-me │ ├── extract │ ├── gbe.bin │ └── ifd.bin ├── x220 │ ├── .gitignore │ ├── extract.sh │ ├── layout.txt │ └── readme.md ├── xx20 │ ├── .gitignore │ ├── download_parse_me.sh │ ├── gbe.bin │ ├── hashes.txt │ ├── ifd.bin │ ├── layout.txt │ ├── me7_update_parser.py │ └── readme.md ├── xx30 │ ├── .gitignore │ ├── README │ ├── README_vbios │ ├── download_clean_me.sh │ ├── download_clean_me_manually.sh │ ├── extract.sh │ ├── gbe.bin │ ├── hashes.txt │ ├── ifd.bin │ ├── optiplex_7010_9010.sh │ ├── vbios_t530.sh │ └── vbios_w530.sh ├── xx80 │ ├── .gitignore │ ├── README.md │ ├── hashes.txt │ ├── t480_download_clean_deguard_me_pad_tb.sh │ ├── t480_gbe.bin │ ├── t480_ifd.bin │ ├── t480s_download_clean_deguard_me_pad_tb.sh │ ├── t480s_gbe.bin │ └── t480s_ifd.bin └── z220 │ ├── .gitignore │ └── download_BIOS_clean.sh ├── boards ├── EOL_UNTESTED_t530-hotp-maximized │ └── EOL_UNTESTED_t530-hotp-maximized.config ├── EOL_UNTESTED_t530-maximized │ └── EOL_UNTESTED_t530-maximized.config ├── EOL_librem_13v2 │ └── EOL_librem_13v2.config ├── EOL_librem_13v4 │ └── EOL_librem_13v4.config ├── EOL_librem_15v3 │ └── EOL_librem_15v3.config ├── EOL_librem_15v4 │ └── EOL_librem_15v4.config ├── EOL_librem_l1um │ └── EOL_librem_l1um.config ├── EOL_optiplex-7010_9010-hotp-maximized │ └── EOL_optiplex-7010_9010-hotp-maximized.config ├── EOL_optiplex-7010_9010-maximized │ └── EOL_optiplex-7010_9010-maximized.config ├── EOL_optiplex-7010_9010_TXT-hotp-maximized │ └── EOL_optiplex-7010_9010_TXT-hotp-maximized.config ├── EOL_optiplex-7010_9010_TXT-maximized │ └── EOL_optiplex-7010_9010_TXT-maximized.config ├── EOL_t420-hotp-maximized │ └── EOL_t420-hotp-maximized.config ├── EOL_t420-maximized │ └── EOL_t420-maximized.config ├── EOL_t430-hotp-maximized │ └── EOL_t430-hotp-maximized.config ├── EOL_t430-maximized │ └── EOL_t430-maximized.config ├── EOL_t440p-hotp-maximized │ └── EOL_t440p-hotp-maximized.config ├── EOL_t440p-maximized │ └── EOL_t440p-maximized.config ├── EOL_t480-hotp-maximized │ └── EOL_t480-hotp-maximized.config ├── EOL_t480-maximized │ └── EOL_t480-maximized.config ├── EOL_t480s-hotp-maximized │ └── EOL_t480s-hotp-maximized.config ├── EOL_t480s-maximized │ └── EOL_t480s-maximized.config ├── EOL_w530-hotp-maximized │ └── EOL_w530-hotp-maximized.config ├── EOL_w530-maximized │ └── EOL_w530-maximized.config ├── EOL_w541-hotp-maximized │ └── EOL_w541-hotp-maximized.config ├── EOL_w541-maximized │ └── EOL_w541-maximized.config ├── EOL_x220-hotp-maximized │ └── EOL_x220-hotp-maximized.config ├── EOL_x220-maximized │ └── EOL_x220-maximized.config ├── EOL_x230-hotp-maximized-fhd_edp │ └── EOL_x230-hotp-maximized-fhd_edp.config ├── EOL_x230-hotp-maximized │ └── EOL_x230-hotp-maximized.config ├── EOL_x230-hotp-maximized_usb-kb │ └── EOL_x230-hotp-maximized_usb-kb.config ├── EOL_x230-maximized-fhd_edp │ └── EOL_x230-maximized-fhd_edp.config ├── EOL_x230-maximized │ └── EOL_x230-maximized.config ├── EOL_z220-cmt-hotp-maximized │ └── EOL_z220-cmt-hotp-maximized.config ├── EOL_z220-cmt-maximized │ └── EOL_z220-cmt-maximized.config ├── UNTESTED_nitropad-ns50 │ └── UNTESTED_nitropad-ns50.config ├── UNTESTED_talos-2 │ └── UNTESTED_talos-2.config ├── librem_11 │ ├── initrd │ │ └── etc │ │ │ └── board_keys.map │ └── librem_11.config ├── librem_14 │ └── librem_14.config ├── librem_l1um_v2 │ └── librem_l1um_v2.config ├── librem_mini │ ├── initrd │ │ └── bin │ │ │ ├── board-init.sh │ │ │ └── set_ec_poweron.sh │ └── librem_mini.config ├── librem_mini_v2 │ ├── initrd │ │ └── bin │ │ │ ├── board-init.sh │ │ │ └── set_ec_poweron.sh │ └── librem_mini_v2.config ├── novacustom-nv4x_adl │ └── novacustom-nv4x_adl.config ├── novacustom-v540tu │ └── novacustom-v540tu.config ├── novacustom-v560tu │ └── novacustom-v560tu.config ├── qemu-coreboot-fbwhiptail-tpm1-hotp-prod │ └── qemu-coreboot-fbwhiptail-tpm1-hotp-prod.config ├── qemu-coreboot-fbwhiptail-tpm1-hotp-prod_quiet │ └── qemu-coreboot-fbwhiptail-tpm1-hotp-prod_quiet.config ├── qemu-coreboot-fbwhiptail-tpm1-hotp │ └── qemu-coreboot-fbwhiptail-tpm1-hotp.config ├── qemu-coreboot-fbwhiptail-tpm1-prod │ └── qemu-coreboot-fbwhiptail-tpm1-prod.config ├── qemu-coreboot-fbwhiptail-tpm1 │ └── qemu-coreboot-fbwhiptail-tpm1.config ├── qemu-coreboot-fbwhiptail-tpm2-hotp-prod │ └── qemu-coreboot-fbwhiptail-tpm2-hotp-prod.config ├── qemu-coreboot-fbwhiptail-tpm2-hotp-prod_quiet │ └── qemu-coreboot-fbwhiptail-tpm2-hotp-prod_quiet.config ├── qemu-coreboot-fbwhiptail-tpm2-hotp │ └── qemu-coreboot-fbwhiptail-tpm2-hotp.config ├── qemu-coreboot-fbwhiptail-tpm2-prod │ └── qemu-coreboot-fbwhiptail-tpm2-prod.config ├── qemu-coreboot-fbwhiptail-tpm2 │ └── qemu-coreboot-fbwhiptail-tpm2.config ├── qemu-coreboot-whiptail-tpm1-hotp-prod │ └── qemu-coreboot-whiptail-tpm1-hotp-prod.config ├── qemu-coreboot-whiptail-tpm1-hotp │ └── qemu-coreboot-whiptail-tpm1-hotp.config ├── qemu-coreboot-whiptail-tpm1-prod │ └── qemu-coreboot-whiptail-tpm1-prod.config ├── qemu-coreboot-whiptail-tpm1 │ └── qemu-coreboot-whiptail-tpm1.config ├── qemu-coreboot-whiptail-tpm2-hotp-prod │ └── qemu-coreboot-whiptail-tpm2-hotp-prod.config ├── qemu-coreboot-whiptail-tpm2-hotp │ └── qemu-coreboot-whiptail-tpm2-hotp.config ├── qemu-coreboot-whiptail-tpm2-prod │ └── qemu-coreboot-whiptail-tpm2-prod.config └── qemu-coreboot-whiptail-tpm2 │ └── qemu-coreboot-whiptail-tpm2.config ├── branding └── Heads │ ├── CREDITS │ ├── ThePlexus-bootsplash-1024x768-DonateQrCode.jpg │ ├── ThePlexus-bootsplash-1024x768.jpg │ ├── ThePlexus-logo.jpg │ ├── bing-d-wid_heads-red_blue_background-plain-3_DonateQrCode.jpg │ ├── bing-d-wid_logo.svg │ ├── bootsplash.jpg │ ├── d-wid-ThePlexus_coreboot-linuxboot-heads_background-plain_DonateQrCode.jpg │ ├── d-wid-ThePlexus_heads_ThrillerAtPlay-background-binary_DonateQrCode.jpg │ ├── d-wid_heads-Thrilleratplay_background-binary-2_DonateQrCode.jpg │ └── d-wid_heads_background-plain-2_DonateQrCode.jpg ├── config ├── busybox.config ├── coreboot-kgpe-d16_server-whiptail.config ├── coreboot-kgpe-d16_server.config ├── coreboot-kgpe-d16_workstation-usb_keyboard.config ├── coreboot-kgpe-d16_workstation.config ├── coreboot-librem_11.config ├── coreboot-librem_13v2.config ├── coreboot-librem_13v4.config ├── coreboot-librem_14.config ├── coreboot-librem_15v3.config ├── coreboot-librem_15v4.config ├── coreboot-librem_l1um.config ├── coreboot-librem_l1um_v2.config ├── coreboot-librem_mini.config ├── coreboot-librem_mini_v2.config ├── coreboot-nitropad-ns50.config ├── coreboot-novacustom-nv4x_adl.config ├── coreboot-novacustom-v540tu.config ├── coreboot-novacustom-v560tu.config ├── coreboot-optiplex-7019_9010-maximized.config ├── coreboot-optiplex-7019_9010_TXT-maximized.config ├── coreboot-p8z77-m_pro-tpm1.config ├── coreboot-qemu-tpm1-prod.config ├── coreboot-qemu-tpm1.config ├── coreboot-qemu-tpm2-prod.config ├── coreboot-qemu-tpm2.config ├── coreboot-t420-maximized.config ├── coreboot-t420.config ├── coreboot-t430-legacy-flash.config ├── coreboot-t430-legacy.config ├── coreboot-t430-maximized.config ├── coreboot-t440p.config ├── coreboot-t480-maximized.config ├── coreboot-t480s-maximized.config ├── coreboot-t520-maximized.config ├── coreboot-t530-dgpu-maximized.config ├── coreboot-t530-maximized.config ├── coreboot-talos-2.config ├── coreboot-w530-dgpu-K1000m-maximized.config ├── coreboot-w530-dgpu-K2000m-maximized.config ├── coreboot-w530-maximized.config ├── coreboot-w541.config ├── coreboot-x220-maximized.config ├── coreboot-x220.config ├── coreboot-x230-legacy-flash.config ├── coreboot-x230-legacy.config ├── coreboot-x230-maximized-fhd_edp.config ├── coreboot-x230-maximized.config ├── coreboot-z220-cmt.config ├── linux-c216.config ├── linux-kgpe-d16_server-whiptail.config ├── linux-kgpe-d16_server.config ├── linux-kgpe-d16_workstation.config ├── linux-librem_common-6.1.8.config ├── linux-librem_common.config ├── linux-linuxboot.config ├── linux-novacustom-common.config ├── linux-qemu.config ├── linux-t440p.config ├── linux-t480.config ├── linux-talos-2.config ├── linux-w541.config ├── linux-x230-flash.config ├── linux-x230-legacy.config ├── linux-x230-maximized.config └── variation_to_defconfig.md ├── doc ├── config.md └── logging.md ├── docker_latest.sh ├── docker_local_dev.sh ├── docker_repro.sh ├── flake.lock ├── flake.nix ├── funding.json ├── initrd ├── .bash_history ├── .gnupg │ ├── gpg-agent.conf │ └── gpg.conf ├── bin │ ├── basic-autoboot.sh │ ├── cbfs-init │ ├── cbfs.sh │ ├── change-time.sh │ ├── config-gui.sh │ ├── flash-gui.sh │ ├── flash.sh │ ├── flashprog-kgpe-d16-openbmc.sh │ ├── generic-init │ ├── gpg-gui.sh │ ├── gpgv │ ├── gui-init │ ├── gui-init-basic │ ├── inject_firmware.sh │ ├── kexec-boot │ ├── kexec-insert-key │ ├── kexec-iso-init │ ├── kexec-parse-bls │ ├── kexec-parse-boot │ ├── kexec-save-default │ ├── kexec-save-key │ ├── kexec-seal-key │ ├── kexec-select-boot │ ├── kexec-sign-config │ ├── kexec-unseal-key │ ├── key-init │ ├── lock_chip │ ├── media-scan │ ├── mount-usb │ ├── network-init-recovery │ ├── oem-factory-reset │ ├── oem-system-info-xx30 │ ├── poweroff │ ├── qubes-measure-luks │ ├── reboot │ ├── root-hashes-gui.sh │ ├── seal-hotpkey │ ├── seal-totp │ ├── setconsolefont.sh │ ├── talos-init │ ├── tpm-reset │ ├── tpmr │ ├── uefi-init │ ├── unpack_initramfs.sh │ ├── unseal-hotp │ ├── unseal-totp │ ├── usb-autoboot.sh │ ├── usb-init │ ├── wget-measure.sh │ └── wipe-totp ├── etc │ ├── diceware_dictionaries │ │ └── eff_short_wordlist_2_0.txt │ ├── distro │ │ ├── gpg-agent.conf │ │ └── keys │ │ │ ├── archlinux.key │ │ │ ├── qubes-4.2.key │ │ │ ├── qubes-4.3.key │ │ │ ├── qubes-weekly-builds-signing-key.asc │ │ │ └── tails.key │ ├── fstab │ ├── functions │ ├── group │ ├── gui_functions │ ├── hosts │ ├── luks-functions │ ├── mke2fs.conf │ ├── motd │ ├── mtab │ ├── passwd │ └── shells ├── init ├── mount-boot ├── run │ └── cryptsetup │ │ └── .placeholder └── sbin │ ├── config-dhcp.sh │ └── insmod ├── install └── .gitignore ├── modules ├── bash ├── busybox ├── cairo ├── coreboot ├── coreboot-blobs ├── cryptsetup ├── cryptsetup2 ├── dropbear ├── e2fsprogs ├── exfatprogs ├── fbwhiptail ├── flashprog ├── flashrom ├── flashtools ├── frotz ├── gpg ├── gpg2 ├── hidapi ├── hotp-verification ├── io386 ├── ioport ├── json-c ├── kbd ├── kexec ├── libaio ├── libassuan ├── libgcrypt ├── libgpg-error ├── libhidapi-libusb ├── libksba ├── libnitrokey ├── libpng ├── libusb ├── libusb-compat ├── linux ├── linuxboot ├── lvm2 ├── mbedtls ├── msrtools ├── musl-cross-make ├── ncurses ├── newt ├── nkstorecli ├── npth ├── openssl ├── pciutils ├── pinentry ├── pixman ├── popt ├── powerpc-utils ├── purism-blobs ├── qrencode ├── slang ├── tpm2-tools ├── tpm2-tss ├── tpmtotp ├── u-root ├── util-linux ├── zlib └── zstd ├── packages └── .gitignore ├── patches ├── bash-5.1.16.patch ├── busybox-1.36.1.patch ├── coreboot-24.02.01 │ ├── 0001-vc_wuffs-upgrade-to-Wuffs_0.4.0-alpha.8.patch │ ├── 0002-lib_jpeg-avoidcalling-malloc-and-free.patch │ ├── 0003-CONFIG_RESOURCE_ALLOCATION_TOP_DOWN-CONFIG_DOMAIN_RESOURCE_32BIT_LIMIT.patch │ └── 0004-cbmem_tpm-clear_whole_log_on_creation.patch ├── coreboot-25.09 │ ├── 0001-drivers-intel-dtbt-Add-discrete-Thunderbolt-driver.patch │ ├── 0002-mb-lenovo-t480-s-Enable-TBT-support.patch │ ├── 0003-soc-intel-lockdown-Allow-locking-down-SPI-and-LPC-in.patch │ ├── 0004-security-tpm-tspi-log-tpm1.c-Clear-whole-log-area-on.patch │ ├── 0005-Fix-local-build-issues.patch │ ├── 0006-nb-intel-haswell-Use-boolean-for-cbmem_was_initted.patch │ ├── 0007-nb-intel-haswell-acpi-Add-missing-MMIO-window-below-.patch │ ├── 0008-tree-Use-boolean-for-s3resume.patch │ ├── 0009-nb-intel-haswell-Factor-out-setup_sdram_meminfo.patch │ ├── 0010-nb-intel-haswell-Factor-out-report_memory_config.patch │ ├── 0011-Haswell-NRI-Print-and-fill-in-memory-related-info.patch │ └── 0012-mb-lenovo-t480-Fix-headphone-jack.patch ├── coreboot-4.11 │ ├── 0000-cpu-x86-smm-Use-PRIxPTR-to-print-uintptr_t.patch │ ├── 0001-Add-Heads-TPM-measured-boot-support.patch │ ├── 0002-soc-intel-broadwell_de-Add-measured-boot-support.patch │ ├── 0003-drivers-generic-cbfs-serial-Add-driver-to-read-seria.patch │ ├── 0004-mb-purism-librem_l1um-Add-new-board.patch │ ├── 0005-soc-fsp_broadwell_de-acpi-Remove-ADR-from-uncore-obj.patch │ ├── 0020-kgpe-d16_measured-boot-support.patch │ ├── 0021-kgpe-d16_c-environment_bootblock.patch │ ├── 0022-kgpe-d16_dstd-asl_Remove-HID-for-PCI-devices.patch │ ├── 0070-crossgcc-iasl-2021-instead-of-2018_fix-old_coreboot-build-on-newer-platforms.patch │ ├── 0071-crossgcc-binutils-gold-error-strings.patch │ ├── 0072-crossgcc-gnat-eh.patch │ ├── 0073-build-race-condition-fixes.patch │ ├── 0074-make-43-fix.patch │ ├── 0075-northbridge-amd-Fixed-errors-in-fam15h-DQS-timing.patch │ └── 0076-northbridge-amd-Added-resets-for-ram-training-failur.patch ├── coreboot-4.19 │ ├── 0001-x230-fhd-variant.patch │ ├── 0002-libgfxinit-center_bootsplash_on_bigger_framebuffers.patch │ ├── 0003-linux_trampoline-handle_coreboot_framebuffer.patch │ └── 0004-bootsplash-Add_ImageMagick_voodoo.patch ├── coreboot-4.22.01 │ └── 0001-x230-fhd-variant.patch ├── coreboot-purism │ └── 0001-cbmem_tpm-clear_whole_log_on_creation.patch ├── coreboot-talos_2 │ ├── 0001-Use-usr-bin-env-in-skiboot.patch │ ├── 0002-acpi-unix2-mirror.patch │ └── 0003-ugly_skiboot-patch_fix_for_newer_gcc_from_musl_125.patch ├── cryptsetup-1.7.3.patch ├── cryptsetup2-2.6.1.patch ├── dropbear-2016.74.patch ├── flashrom-b1f858f65b2abd276542650d8cb9e382da258967 │ └── 0100-enable-kgpe-d16.patch ├── gpg-1.4.21.patch ├── gpg2-2.4.0.patch ├── kexec-2.0.26.patch ├── libassuan-2.5.5.patch ├── libgcrypt-1.10.1.patch ├── libgcrypt-1.10.2.patch ├── libgcrypt-1.8.3.patch ├── libgpg-error-1.46.patch ├── libksba-1.3.5.patch ├── libksba-1.6.3.patch ├── linux-4.14.62 │ ├── 0000-efi_bds.patch │ ├── 0001-fake-acpi.patch │ ├── 0002-nmi-squelch.patch │ ├── 0003-fake-trampoline.patch │ ├── 0004-libsubcmd_Fix_use-after-free-for-realloc.patch │ └── 0010-winterfell-ahci.patch ├── linux-4.19.139 │ ├── 0000-efi_bds.patch │ ├── 0001-fake-acpi.patch │ ├── 0002-nmi-squelch.patch │ ├── 0003-fake-trampoline.patch │ └── 0010-winterfell-ahci.patch ├── linux-5.10.214 │ ├── 0001-fake-acpi.patch │ ├── 0002-nmi-squelch.patch │ ├── 0003-fake-trampoline.patch │ ├── 0010-winterfell-ahci.patch │ └── shebangs.patch ├── linux-5.4.69 │ ├── 0000-efi_bds.patch │ ├── 0001-fake-acpi.patch │ ├── 0002-nmi-squelch.patch │ ├── 0003-fake-trampoline.patch │ └── 0010-winterfell-ahci.patch ├── linux-5.5-openpower │ ├── 0001-xhci-Reset-controller-on-xhci-shutdown.patch │ ├── 0002-Release-OpenPower-kernel.patch │ ├── 0003-Fix-mpt3sas-dma-crash.patch │ ├── 0004-drm-ast-Add-option-to-initialize-palette-on-driver-l.patch │ ├── 0005-Force-ASpeed-RAMDAC-palette-reset.patch │ ├── 0006-amdgpu-Prepare-DCN-floating-point-macros-for-generic.patch │ ├── 0007-amdgpu-Enable-initial-DCN-support-on-POWER.patch │ ├── 0008-amdgpu-Wrap-FPU-dependent-functions-in-dc20.patch │ ├── 0009-Fix-build-with-gcc-10-and-up.patch │ ├── 0010-arch-powerpc-Kconfig-enable-inclusion-of-drivers-fir.patch │ ├── 0011-drivers-firmware-google-expose-CBMEM-as-sysfs-file.patch │ └── shebangs.patch ├── linux-6.1.8 │ ├── 0001-fake-acpi.patch │ ├── 0002-nmi-squelch.patch │ └── 0010-winterfell-ahci.patch ├── linux-6.6.16-openpower │ ├── 0001-xhci-Reset-controller-on-xhci-shutdown.patch │ ├── 0002-Release-OpenPower-kernel.patch │ ├── 0003-drm-ast-Add-option-to-initialize-palette-on-driver-l.patch │ ├── 0004-Force-ASpeed-RAMDAC-palette-reset.patch │ ├── 0005-powerpc-Add-gpr1-and-fpu-save-restore-functions.patch │ ├── 0006-arch-powerpc-Kconfig-enable-inclusion-of-drivers-fir.patch │ └── 0007-drivers-firmware-google-expose-CBMEM-as-sysfs-file.patch ├── lvm2-2.02.168.patch ├── lvm2-2.03.23.patch ├── musl-cross-make-fd6be58297ee21fcba89216ccd0d4aca1e3f1c5c │ └── 0001-no-ssl-linux-headers.patch ├── newt-0.52.24.patch ├── openssl-3.0.8.patch ├── pciutils-3.5.4.patch ├── powerpc-utils-1.3.5.patch ├── slang-2.3.3 │ └── unhardcode-ln-in-Makefile.patch ├── tpm2-tools-5.6.patch ├── tpm2-tss-3.2.2.patch └── util-linux-2.39.patch ├── targets ├── legacy_flash.mk ├── optiplex_blobs.mk ├── ppc_tgz.mk ├── qemu.md ├── qemu.mk ├── split_8mb4mb.mk ├── t480_me_blobs.mk ├── t480s_me_blobs.mk ├── xx20_me_blobs.mk └── xx30_me_blobs.mk └── unmaintained_boards ├── README.md ├── UNMAINTAINED_kgpe-d16_server-whiptail └── UNMAINTAINED_kgpe-d16_server-whiptail.config ├── UNMAINTAINED_kgpe-d16_server └── UNMAINTAINED_kgpe-d16_server.config ├── UNMAINTAINED_kgpe-d16_workstation-usb_keyboard └── UNMAINTAINED_kgpe-d16_workstation-usb_keyboard.config ├── UNMAINTAINED_kgpe-d16_workstation └── UNMAINTAINED_kgpe-d16_workstation.config ├── UNMAINTAINED_p8z77-m_pro-tpm1-hotp-maximized └── UNMAINTAINED_p8z77-m_pro-tpm1-hotp-maximized.config ├── UNMAINTAINED_p8z77-m_pro-tpm1-maximized └── UNMAINTAINED_p8z77-m_pro-tpm1-maximized.config ├── UNMAINTAINED_qemu-linuxboot └── UNMAINTAINED_qemu-linuxboot.config ├── UNMAINTAINED_t420 └── UNMAINTAINED_t420.config ├── UNMAINTAINED_t430-hotp-legacy └── UNMAINTAINED_t430-hotp-legacy.config ├── UNMAINTAINED_t430-legacy-flash └── UNMAINTAINED_t430-legacy-flash.config ├── UNMAINTAINED_t430-legacy └── UNMAINTAINED_t430-legacy.config ├── UNMAINTAINED_t520-hotp-maximized └── UNMAINTAINED_t520-hotp-maximized.config ├── UNMAINTAINED_t520-maximized └── UNMAINTAINED_t520-maximized.config ├── UNMAINTAINED_t530-dgpu-hotp-maximized └── UNMAINTAINED_t530-dgpu-hotp-maximized.config ├── UNMAINTAINED_t530-dgpu-maximized └── UNMAINTAINED_t530-dgpu-maximized.config ├── UNMAINTAINED_w530-dgpu-K1000m-hotp-maximized └── UNMAINTAINED_w530-dgpu-K1000m-hotp-maximized.config ├── UNMAINTAINED_w530-dgpu-K1000m-maximized └── UNMAINTAINED_w530-dgpu-K1000m-maximized.config ├── UNMAINTAINED_w530-dgpu-K2000m-hotp-maximized └── UNMAINTAINED_w530-dgpu-K2000m-hotp-maximized.config ├── UNMAINTAINED_w530-dgpu-K2000m-maximized └── UNMAINTAINED_w530-dgpu-K2000m-maximized.config ├── UNMAINTAINED_x220 └── UNMAINTAINED_x220.config ├── UNMAINTAINED_x230-hotp-legacy └── UNMAINTAINED_x230-hotp-legacy.config ├── UNMAINTAINED_x230-legacy-flash └── UNMAINTAINED_x230-legacy-flash.config ├── UNMAINTAINED_x230-legacy └── UNMAINTAINED_x230-legacy.config ├── UNTESTED_leopard └── UNTESTED_leopard.config ├── UNTESTED_r630 └── UNTESTED_r630.config ├── UNTESTED_s2600wf └── UNTESTED_s2600wf.config ├── UNTESTED_tioga └── UNTESTED_tioga.config ├── UNTESTED_winterfell ├── UNTESTED_winterfell.config └── uinit.go ├── x230-hotp-legacy └── x230-hotp-legacy.config ├── x230-legacy-flash └── x230-legacy-flash.config └── x230-legacy └── x230-legacy.config /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | has nix && use flake 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-for-everything-except-build-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/.github/ISSUE_TEMPLATE/bug-report-for-everything-except-build-errors.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-for-heads-build-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/.github/ISSUE_TEMPLATE/bug-report-for-heads-build-errors.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml.deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/.gitlab-ci.yml.deprecated -------------------------------------------------------------------------------- /BOARDS_AND_TESTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/BOARDS_AND_TESTERS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/COPYING -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/FAQ.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/README.md -------------------------------------------------------------------------------- /WP_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/WP_NOTES.md -------------------------------------------------------------------------------- /bin/cpio-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/bin/cpio-clean -------------------------------------------------------------------------------- /bin/fetch_coreboot_crossgcc_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/bin/fetch_coreboot_crossgcc_archive.sh -------------------------------------------------------------------------------- /bin/fetch_source_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/bin/fetch_source_archive.sh -------------------------------------------------------------------------------- /bin/find_undocumented_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/bin/find_undocumented_config.sh -------------------------------------------------------------------------------- /bin/inject_gpg_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/bin/inject_gpg_key.sh -------------------------------------------------------------------------------- /bin/prepare_module_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/bin/prepare_module_config.sh -------------------------------------------------------------------------------- /bin/seed_package_mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/bin/seed_package_mirror.sh -------------------------------------------------------------------------------- /bin/verity-sign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/bin/verity-sign -------------------------------------------------------------------------------- /blobs/dev.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/dev.cpio -------------------------------------------------------------------------------- /blobs/librem_jail/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/librem_jail/README -------------------------------------------------------------------------------- /blobs/librem_jail/librem_11/i915/icl_dmc_ver1_09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/librem_jail/librem_11/i915/icl_dmc_ver1_09.bin -------------------------------------------------------------------------------- /blobs/librem_jail/librem_11/intel/ibt-19-0-0.ddc: -------------------------------------------------------------------------------- 1 | () -------------------------------------------------------------------------------- /blobs/librem_jail/librem_11/intel/ibt-19-0-0.sfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/librem_jail/librem_11/intel/ibt-19-0-0.sfi -------------------------------------------------------------------------------- /blobs/librem_jail/librem_11/iwlwifi-QuZ-a0-jf-b0-72.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/librem_jail/librem_11/iwlwifi-QuZ-a0-jf-b0-72.ucode -------------------------------------------------------------------------------- /blobs/librem_jail/librem_mini_v2/ar3k/AthrBT_0x11020100.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/librem_jail/librem_mini_v2/ar3k/AthrBT_0x11020100.dfu -------------------------------------------------------------------------------- /blobs/librem_jail/librem_mini_v2/ar3k/ramps_0x11020100_40.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/librem_jail/librem_mini_v2/ar3k/ramps_0x11020100_40.dfu -------------------------------------------------------------------------------- /blobs/librem_jail/librem_mini_v2/intel/ibt-20-1-3.ddc: -------------------------------------------------------------------------------- 1 | () -------------------------------------------------------------------------------- /blobs/librem_jail/librem_mini_v2/intel/ibt-20-1-3.sfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/librem_jail/librem_mini_v2/intel/ibt-20-1-3.sfi -------------------------------------------------------------------------------- /blobs/librem_jail/librem_mini_v2/iwlwifi-cc-a0-59.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/librem_jail/librem_mini_v2/iwlwifi-cc-a0-59.ucode -------------------------------------------------------------------------------- /blobs/optiplex_9010/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/optiplex_9010/README.md -------------------------------------------------------------------------------- /blobs/optiplex_9010/ifd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/optiplex_9010/ifd.bin -------------------------------------------------------------------------------- /blobs/optiplex_9010/ifd_t16650.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/optiplex_9010/ifd_t16650.bin -------------------------------------------------------------------------------- /blobs/optiplex_9010/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/optiplex_9010/layout.txt -------------------------------------------------------------------------------- /blobs/p8z77-m_pro/download_BIOS_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/p8z77-m_pro/download_BIOS_clean.sh -------------------------------------------------------------------------------- /blobs/t420/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/t420/extract.sh -------------------------------------------------------------------------------- /blobs/t420/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/t420/layout.txt -------------------------------------------------------------------------------- /blobs/t420/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/t420/readme.md -------------------------------------------------------------------------------- /blobs/t440p/.gitignore: -------------------------------------------------------------------------------- 1 | me.bin 2 | -------------------------------------------------------------------------------- /blobs/t440p/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/t440p/README.md -------------------------------------------------------------------------------- /blobs/t440p/download-clean-me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/t440p/download-clean-me -------------------------------------------------------------------------------- /blobs/t440p/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/t440p/extract -------------------------------------------------------------------------------- /blobs/t440p/gbe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/t440p/gbe.bin -------------------------------------------------------------------------------- /blobs/t440p/ifd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/t440p/ifd.bin -------------------------------------------------------------------------------- /blobs/utils/me_cleaner/me_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/utils/me_cleaner/me_cleaner.py -------------------------------------------------------------------------------- /blobs/w541/.gitignore: -------------------------------------------------------------------------------- 1 | me.bin 2 | -------------------------------------------------------------------------------- /blobs/w541/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/w541/README.md -------------------------------------------------------------------------------- /blobs/w541/download-clean-me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/w541/download-clean-me -------------------------------------------------------------------------------- /blobs/w541/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/w541/extract -------------------------------------------------------------------------------- /blobs/w541/gbe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/w541/gbe.bin -------------------------------------------------------------------------------- /blobs/w541/ifd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/w541/ifd.bin -------------------------------------------------------------------------------- /blobs/x220/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/x220/.gitignore -------------------------------------------------------------------------------- /blobs/x220/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/x220/extract.sh -------------------------------------------------------------------------------- /blobs/x220/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/x220/layout.txt -------------------------------------------------------------------------------- /blobs/x220/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/x220/readme.md -------------------------------------------------------------------------------- /blobs/xx20/.gitignore: -------------------------------------------------------------------------------- 1 | me.bin 2 | -------------------------------------------------------------------------------- /blobs/xx20/download_parse_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx20/download_parse_me.sh -------------------------------------------------------------------------------- /blobs/xx20/gbe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx20/gbe.bin -------------------------------------------------------------------------------- /blobs/xx20/hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx20/hashes.txt -------------------------------------------------------------------------------- /blobs/xx20/ifd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx20/ifd.bin -------------------------------------------------------------------------------- /blobs/xx20/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx20/layout.txt -------------------------------------------------------------------------------- /blobs/xx20/me7_update_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx20/me7_update_parser.py -------------------------------------------------------------------------------- /blobs/xx20/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx20/readme.md -------------------------------------------------------------------------------- /blobs/xx30/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/.gitignore -------------------------------------------------------------------------------- /blobs/xx30/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/README -------------------------------------------------------------------------------- /blobs/xx30/README_vbios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/README_vbios -------------------------------------------------------------------------------- /blobs/xx30/download_clean_me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/download_clean_me.sh -------------------------------------------------------------------------------- /blobs/xx30/download_clean_me_manually.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/download_clean_me_manually.sh -------------------------------------------------------------------------------- /blobs/xx30/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/extract.sh -------------------------------------------------------------------------------- /blobs/xx30/gbe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/gbe.bin -------------------------------------------------------------------------------- /blobs/xx30/hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/hashes.txt -------------------------------------------------------------------------------- /blobs/xx30/ifd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/ifd.bin -------------------------------------------------------------------------------- /blobs/xx30/optiplex_7010_9010.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/optiplex_7010_9010.sh -------------------------------------------------------------------------------- /blobs/xx30/vbios_t530.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/vbios_t530.sh -------------------------------------------------------------------------------- /blobs/xx30/vbios_w530.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx30/vbios_w530.sh -------------------------------------------------------------------------------- /blobs/xx80/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/.gitignore -------------------------------------------------------------------------------- /blobs/xx80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/README.md -------------------------------------------------------------------------------- /blobs/xx80/hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/hashes.txt -------------------------------------------------------------------------------- /blobs/xx80/t480_download_clean_deguard_me_pad_tb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/t480_download_clean_deguard_me_pad_tb.sh -------------------------------------------------------------------------------- /blobs/xx80/t480_gbe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/t480_gbe.bin -------------------------------------------------------------------------------- /blobs/xx80/t480_ifd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/t480_ifd.bin -------------------------------------------------------------------------------- /blobs/xx80/t480s_download_clean_deguard_me_pad_tb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/t480s_download_clean_deguard_me_pad_tb.sh -------------------------------------------------------------------------------- /blobs/xx80/t480s_gbe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/t480s_gbe.bin -------------------------------------------------------------------------------- /blobs/xx80/t480s_ifd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/xx80/t480s_ifd.bin -------------------------------------------------------------------------------- /blobs/z220/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/z220/.gitignore -------------------------------------------------------------------------------- /blobs/z220/download_BIOS_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/blobs/z220/download_BIOS_clean.sh -------------------------------------------------------------------------------- /boards/EOL_UNTESTED_t530-hotp-maximized/EOL_UNTESTED_t530-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_UNTESTED_t530-hotp-maximized/EOL_UNTESTED_t530-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_UNTESTED_t530-maximized/EOL_UNTESTED_t530-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_UNTESTED_t530-maximized/EOL_UNTESTED_t530-maximized.config -------------------------------------------------------------------------------- /boards/EOL_librem_13v2/EOL_librem_13v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_librem_13v2/EOL_librem_13v2.config -------------------------------------------------------------------------------- /boards/EOL_librem_13v4/EOL_librem_13v4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_librem_13v4/EOL_librem_13v4.config -------------------------------------------------------------------------------- /boards/EOL_librem_15v3/EOL_librem_15v3.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_librem_15v3/EOL_librem_15v3.config -------------------------------------------------------------------------------- /boards/EOL_librem_15v4/EOL_librem_15v4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_librem_15v4/EOL_librem_15v4.config -------------------------------------------------------------------------------- /boards/EOL_librem_l1um/EOL_librem_l1um.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_librem_l1um/EOL_librem_l1um.config -------------------------------------------------------------------------------- /boards/EOL_optiplex-7010_9010-hotp-maximized/EOL_optiplex-7010_9010-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_optiplex-7010_9010-hotp-maximized/EOL_optiplex-7010_9010-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_optiplex-7010_9010-maximized/EOL_optiplex-7010_9010-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_optiplex-7010_9010-maximized/EOL_optiplex-7010_9010-maximized.config -------------------------------------------------------------------------------- /boards/EOL_optiplex-7010_9010_TXT-hotp-maximized/EOL_optiplex-7010_9010_TXT-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_optiplex-7010_9010_TXT-hotp-maximized/EOL_optiplex-7010_9010_TXT-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_optiplex-7010_9010_TXT-maximized/EOL_optiplex-7010_9010_TXT-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_optiplex-7010_9010_TXT-maximized/EOL_optiplex-7010_9010_TXT-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t420-hotp-maximized/EOL_t420-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t420-hotp-maximized/EOL_t420-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t420-maximized/EOL_t420-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t420-maximized/EOL_t420-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t430-hotp-maximized/EOL_t430-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t430-hotp-maximized/EOL_t430-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t430-maximized/EOL_t430-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t430-maximized/EOL_t430-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t440p-hotp-maximized/EOL_t440p-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t440p-hotp-maximized/EOL_t440p-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t440p-maximized/EOL_t440p-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t440p-maximized/EOL_t440p-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t480-hotp-maximized/EOL_t480-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t480-hotp-maximized/EOL_t480-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t480-maximized/EOL_t480-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t480-maximized/EOL_t480-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t480s-hotp-maximized/EOL_t480s-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t480s-hotp-maximized/EOL_t480s-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_t480s-maximized/EOL_t480s-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_t480s-maximized/EOL_t480s-maximized.config -------------------------------------------------------------------------------- /boards/EOL_w530-hotp-maximized/EOL_w530-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_w530-hotp-maximized/EOL_w530-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_w530-maximized/EOL_w530-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_w530-maximized/EOL_w530-maximized.config -------------------------------------------------------------------------------- /boards/EOL_w541-hotp-maximized/EOL_w541-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_w541-hotp-maximized/EOL_w541-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_w541-maximized/EOL_w541-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_w541-maximized/EOL_w541-maximized.config -------------------------------------------------------------------------------- /boards/EOL_x220-hotp-maximized/EOL_x220-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_x220-hotp-maximized/EOL_x220-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_x220-maximized/EOL_x220-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_x220-maximized/EOL_x220-maximized.config -------------------------------------------------------------------------------- /boards/EOL_x230-hotp-maximized-fhd_edp/EOL_x230-hotp-maximized-fhd_edp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_x230-hotp-maximized-fhd_edp/EOL_x230-hotp-maximized-fhd_edp.config -------------------------------------------------------------------------------- /boards/EOL_x230-hotp-maximized/EOL_x230-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_x230-hotp-maximized/EOL_x230-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_x230-hotp-maximized_usb-kb/EOL_x230-hotp-maximized_usb-kb.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_x230-hotp-maximized_usb-kb/EOL_x230-hotp-maximized_usb-kb.config -------------------------------------------------------------------------------- /boards/EOL_x230-maximized-fhd_edp/EOL_x230-maximized-fhd_edp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_x230-maximized-fhd_edp/EOL_x230-maximized-fhd_edp.config -------------------------------------------------------------------------------- /boards/EOL_x230-maximized/EOL_x230-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_x230-maximized/EOL_x230-maximized.config -------------------------------------------------------------------------------- /boards/EOL_z220-cmt-hotp-maximized/EOL_z220-cmt-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_z220-cmt-hotp-maximized/EOL_z220-cmt-hotp-maximized.config -------------------------------------------------------------------------------- /boards/EOL_z220-cmt-maximized/EOL_z220-cmt-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/EOL_z220-cmt-maximized/EOL_z220-cmt-maximized.config -------------------------------------------------------------------------------- /boards/UNTESTED_nitropad-ns50/UNTESTED_nitropad-ns50.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/UNTESTED_nitropad-ns50/UNTESTED_nitropad-ns50.config -------------------------------------------------------------------------------- /boards/UNTESTED_talos-2/UNTESTED_talos-2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/UNTESTED_talos-2/UNTESTED_talos-2.config -------------------------------------------------------------------------------- /boards/librem_11/initrd/etc/board_keys.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_11/initrd/etc/board_keys.map -------------------------------------------------------------------------------- /boards/librem_11/librem_11.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_11/librem_11.config -------------------------------------------------------------------------------- /boards/librem_14/librem_14.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_14/librem_14.config -------------------------------------------------------------------------------- /boards/librem_l1um_v2/librem_l1um_v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_l1um_v2/librem_l1um_v2.config -------------------------------------------------------------------------------- /boards/librem_mini/initrd/bin/board-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_mini/initrd/bin/board-init.sh -------------------------------------------------------------------------------- /boards/librem_mini/initrd/bin/set_ec_poweron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_mini/initrd/bin/set_ec_poweron.sh -------------------------------------------------------------------------------- /boards/librem_mini/librem_mini.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_mini/librem_mini.config -------------------------------------------------------------------------------- /boards/librem_mini_v2/initrd/bin/board-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_mini_v2/initrd/bin/board-init.sh -------------------------------------------------------------------------------- /boards/librem_mini_v2/initrd/bin/set_ec_poweron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_mini_v2/initrd/bin/set_ec_poweron.sh -------------------------------------------------------------------------------- /boards/librem_mini_v2/librem_mini_v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/librem_mini_v2/librem_mini_v2.config -------------------------------------------------------------------------------- /boards/novacustom-nv4x_adl/novacustom-nv4x_adl.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/novacustom-nv4x_adl/novacustom-nv4x_adl.config -------------------------------------------------------------------------------- /boards/novacustom-v540tu/novacustom-v540tu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/novacustom-v540tu/novacustom-v540tu.config -------------------------------------------------------------------------------- /boards/novacustom-v560tu/novacustom-v560tu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/novacustom-v560tu/novacustom-v560tu.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm1-hotp-prod/qemu-coreboot-fbwhiptail-tpm1-hotp-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm1-hotp-prod/qemu-coreboot-fbwhiptail-tpm1-hotp-prod.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm1-hotp-prod_quiet/qemu-coreboot-fbwhiptail-tpm1-hotp-prod_quiet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm1-hotp-prod_quiet/qemu-coreboot-fbwhiptail-tpm1-hotp-prod_quiet.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm1-hotp/qemu-coreboot-fbwhiptail-tpm1-hotp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm1-hotp/qemu-coreboot-fbwhiptail-tpm1-hotp.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm1-prod/qemu-coreboot-fbwhiptail-tpm1-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm1-prod/qemu-coreboot-fbwhiptail-tpm1-prod.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm1/qemu-coreboot-fbwhiptail-tpm1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm1/qemu-coreboot-fbwhiptail-tpm1.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm2-hotp-prod/qemu-coreboot-fbwhiptail-tpm2-hotp-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm2-hotp-prod/qemu-coreboot-fbwhiptail-tpm2-hotp-prod.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm2-hotp-prod_quiet/qemu-coreboot-fbwhiptail-tpm2-hotp-prod_quiet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm2-hotp-prod_quiet/qemu-coreboot-fbwhiptail-tpm2-hotp-prod_quiet.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm2-hotp/qemu-coreboot-fbwhiptail-tpm2-hotp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm2-hotp/qemu-coreboot-fbwhiptail-tpm2-hotp.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm2-prod/qemu-coreboot-fbwhiptail-tpm2-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm2-prod/qemu-coreboot-fbwhiptail-tpm2-prod.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-fbwhiptail-tpm2/qemu-coreboot-fbwhiptail-tpm2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-fbwhiptail-tpm2/qemu-coreboot-fbwhiptail-tpm2.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-whiptail-tpm1-hotp-prod/qemu-coreboot-whiptail-tpm1-hotp-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-whiptail-tpm1-hotp-prod/qemu-coreboot-whiptail-tpm1-hotp-prod.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-whiptail-tpm1-hotp/qemu-coreboot-whiptail-tpm1-hotp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-whiptail-tpm1-hotp/qemu-coreboot-whiptail-tpm1-hotp.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-whiptail-tpm1-prod/qemu-coreboot-whiptail-tpm1-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-whiptail-tpm1-prod/qemu-coreboot-whiptail-tpm1-prod.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-whiptail-tpm1/qemu-coreboot-whiptail-tpm1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-whiptail-tpm1/qemu-coreboot-whiptail-tpm1.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-whiptail-tpm2-hotp-prod/qemu-coreboot-whiptail-tpm2-hotp-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-whiptail-tpm2-hotp-prod/qemu-coreboot-whiptail-tpm2-hotp-prod.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-whiptail-tpm2-hotp/qemu-coreboot-whiptail-tpm2-hotp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-whiptail-tpm2-hotp/qemu-coreboot-whiptail-tpm2-hotp.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-whiptail-tpm2-prod/qemu-coreboot-whiptail-tpm2-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-whiptail-tpm2-prod/qemu-coreboot-whiptail-tpm2-prod.config -------------------------------------------------------------------------------- /boards/qemu-coreboot-whiptail-tpm2/qemu-coreboot-whiptail-tpm2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/boards/qemu-coreboot-whiptail-tpm2/qemu-coreboot-whiptail-tpm2.config -------------------------------------------------------------------------------- /branding/Heads/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/CREDITS -------------------------------------------------------------------------------- /branding/Heads/ThePlexus-bootsplash-1024x768-DonateQrCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/ThePlexus-bootsplash-1024x768-DonateQrCode.jpg -------------------------------------------------------------------------------- /branding/Heads/ThePlexus-bootsplash-1024x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/ThePlexus-bootsplash-1024x768.jpg -------------------------------------------------------------------------------- /branding/Heads/ThePlexus-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/ThePlexus-logo.jpg -------------------------------------------------------------------------------- /branding/Heads/bing-d-wid_heads-red_blue_background-plain-3_DonateQrCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/bing-d-wid_heads-red_blue_background-plain-3_DonateQrCode.jpg -------------------------------------------------------------------------------- /branding/Heads/bing-d-wid_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/bing-d-wid_logo.svg -------------------------------------------------------------------------------- /branding/Heads/bootsplash.jpg: -------------------------------------------------------------------------------- 1 | d-wid-ThePlexus_coreboot-linuxboot-heads_background-plain_DonateQrCode.jpg -------------------------------------------------------------------------------- /branding/Heads/d-wid-ThePlexus_coreboot-linuxboot-heads_background-plain_DonateQrCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/d-wid-ThePlexus_coreboot-linuxboot-heads_background-plain_DonateQrCode.jpg -------------------------------------------------------------------------------- /branding/Heads/d-wid-ThePlexus_heads_ThrillerAtPlay-background-binary_DonateQrCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/d-wid-ThePlexus_heads_ThrillerAtPlay-background-binary_DonateQrCode.jpg -------------------------------------------------------------------------------- /branding/Heads/d-wid_heads-Thrilleratplay_background-binary-2_DonateQrCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/d-wid_heads-Thrilleratplay_background-binary-2_DonateQrCode.jpg -------------------------------------------------------------------------------- /branding/Heads/d-wid_heads_background-plain-2_DonateQrCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/branding/Heads/d-wid_heads_background-plain-2_DonateQrCode.jpg -------------------------------------------------------------------------------- /config/busybox.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/busybox.config -------------------------------------------------------------------------------- /config/coreboot-kgpe-d16_server-whiptail.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-kgpe-d16_server-whiptail.config -------------------------------------------------------------------------------- /config/coreboot-kgpe-d16_server.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-kgpe-d16_server.config -------------------------------------------------------------------------------- /config/coreboot-kgpe-d16_workstation-usb_keyboard.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-kgpe-d16_workstation-usb_keyboard.config -------------------------------------------------------------------------------- /config/coreboot-kgpe-d16_workstation.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-kgpe-d16_workstation.config -------------------------------------------------------------------------------- /config/coreboot-librem_11.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_11.config -------------------------------------------------------------------------------- /config/coreboot-librem_13v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_13v2.config -------------------------------------------------------------------------------- /config/coreboot-librem_13v4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_13v4.config -------------------------------------------------------------------------------- /config/coreboot-librem_14.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_14.config -------------------------------------------------------------------------------- /config/coreboot-librem_15v3.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_15v3.config -------------------------------------------------------------------------------- /config/coreboot-librem_15v4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_15v4.config -------------------------------------------------------------------------------- /config/coreboot-librem_l1um.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_l1um.config -------------------------------------------------------------------------------- /config/coreboot-librem_l1um_v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_l1um_v2.config -------------------------------------------------------------------------------- /config/coreboot-librem_mini.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_mini.config -------------------------------------------------------------------------------- /config/coreboot-librem_mini_v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-librem_mini_v2.config -------------------------------------------------------------------------------- /config/coreboot-nitropad-ns50.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-nitropad-ns50.config -------------------------------------------------------------------------------- /config/coreboot-novacustom-nv4x_adl.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-novacustom-nv4x_adl.config -------------------------------------------------------------------------------- /config/coreboot-novacustom-v540tu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-novacustom-v540tu.config -------------------------------------------------------------------------------- /config/coreboot-novacustom-v560tu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-novacustom-v560tu.config -------------------------------------------------------------------------------- /config/coreboot-optiplex-7019_9010-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-optiplex-7019_9010-maximized.config -------------------------------------------------------------------------------- /config/coreboot-optiplex-7019_9010_TXT-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-optiplex-7019_9010_TXT-maximized.config -------------------------------------------------------------------------------- /config/coreboot-p8z77-m_pro-tpm1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-p8z77-m_pro-tpm1.config -------------------------------------------------------------------------------- /config/coreboot-qemu-tpm1-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-qemu-tpm1-prod.config -------------------------------------------------------------------------------- /config/coreboot-qemu-tpm1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-qemu-tpm1.config -------------------------------------------------------------------------------- /config/coreboot-qemu-tpm2-prod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-qemu-tpm2-prod.config -------------------------------------------------------------------------------- /config/coreboot-qemu-tpm2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-qemu-tpm2.config -------------------------------------------------------------------------------- /config/coreboot-t420-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t420-maximized.config -------------------------------------------------------------------------------- /config/coreboot-t420.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t420.config -------------------------------------------------------------------------------- /config/coreboot-t430-legacy-flash.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t430-legacy-flash.config -------------------------------------------------------------------------------- /config/coreboot-t430-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t430-legacy.config -------------------------------------------------------------------------------- /config/coreboot-t430-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t430-maximized.config -------------------------------------------------------------------------------- /config/coreboot-t440p.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t440p.config -------------------------------------------------------------------------------- /config/coreboot-t480-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t480-maximized.config -------------------------------------------------------------------------------- /config/coreboot-t480s-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t480s-maximized.config -------------------------------------------------------------------------------- /config/coreboot-t520-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t520-maximized.config -------------------------------------------------------------------------------- /config/coreboot-t530-dgpu-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t530-dgpu-maximized.config -------------------------------------------------------------------------------- /config/coreboot-t530-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-t530-maximized.config -------------------------------------------------------------------------------- /config/coreboot-talos-2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-talos-2.config -------------------------------------------------------------------------------- /config/coreboot-w530-dgpu-K1000m-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-w530-dgpu-K1000m-maximized.config -------------------------------------------------------------------------------- /config/coreboot-w530-dgpu-K2000m-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-w530-dgpu-K2000m-maximized.config -------------------------------------------------------------------------------- /config/coreboot-w530-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-w530-maximized.config -------------------------------------------------------------------------------- /config/coreboot-w541.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-w541.config -------------------------------------------------------------------------------- /config/coreboot-x220-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-x220-maximized.config -------------------------------------------------------------------------------- /config/coreboot-x220.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-x220.config -------------------------------------------------------------------------------- /config/coreboot-x230-legacy-flash.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-x230-legacy-flash.config -------------------------------------------------------------------------------- /config/coreboot-x230-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-x230-legacy.config -------------------------------------------------------------------------------- /config/coreboot-x230-maximized-fhd_edp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-x230-maximized-fhd_edp.config -------------------------------------------------------------------------------- /config/coreboot-x230-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-x230-maximized.config -------------------------------------------------------------------------------- /config/coreboot-z220-cmt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/coreboot-z220-cmt.config -------------------------------------------------------------------------------- /config/linux-c216.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-c216.config -------------------------------------------------------------------------------- /config/linux-kgpe-d16_server-whiptail.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-kgpe-d16_server-whiptail.config -------------------------------------------------------------------------------- /config/linux-kgpe-d16_server.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-kgpe-d16_server.config -------------------------------------------------------------------------------- /config/linux-kgpe-d16_workstation.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-kgpe-d16_workstation.config -------------------------------------------------------------------------------- /config/linux-librem_common-6.1.8.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-librem_common-6.1.8.config -------------------------------------------------------------------------------- /config/linux-librem_common.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-librem_common.config -------------------------------------------------------------------------------- /config/linux-linuxboot.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-linuxboot.config -------------------------------------------------------------------------------- /config/linux-novacustom-common.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-novacustom-common.config -------------------------------------------------------------------------------- /config/linux-qemu.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-qemu.config -------------------------------------------------------------------------------- /config/linux-t440p.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-t440p.config -------------------------------------------------------------------------------- /config/linux-t480.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-t480.config -------------------------------------------------------------------------------- /config/linux-talos-2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-talos-2.config -------------------------------------------------------------------------------- /config/linux-w541.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-w541.config -------------------------------------------------------------------------------- /config/linux-x230-flash.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-x230-flash.config -------------------------------------------------------------------------------- /config/linux-x230-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-x230-legacy.config -------------------------------------------------------------------------------- /config/linux-x230-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/linux-x230-maximized.config -------------------------------------------------------------------------------- /config/variation_to_defconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/config/variation_to_defconfig.md -------------------------------------------------------------------------------- /doc/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/doc/config.md -------------------------------------------------------------------------------- /doc/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/doc/logging.md -------------------------------------------------------------------------------- /docker_latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/docker_latest.sh -------------------------------------------------------------------------------- /docker_local_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/docker_local_dev.sh -------------------------------------------------------------------------------- /docker_repro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/docker_repro.sh -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/flake.nix -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/funding.json -------------------------------------------------------------------------------- /initrd/.bash_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/.bash_history -------------------------------------------------------------------------------- /initrd/.gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/.gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /initrd/.gnupg/gpg.conf: -------------------------------------------------------------------------------- 1 | use-agent 2 | keyserver-options no-auto-key-retrieve 3 | -------------------------------------------------------------------------------- /initrd/bin/basic-autoboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/basic-autoboot.sh -------------------------------------------------------------------------------- /initrd/bin/cbfs-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/cbfs-init -------------------------------------------------------------------------------- /initrd/bin/cbfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/cbfs.sh -------------------------------------------------------------------------------- /initrd/bin/change-time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/change-time.sh -------------------------------------------------------------------------------- /initrd/bin/config-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/config-gui.sh -------------------------------------------------------------------------------- /initrd/bin/flash-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/flash-gui.sh -------------------------------------------------------------------------------- /initrd/bin/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/flash.sh -------------------------------------------------------------------------------- /initrd/bin/flashprog-kgpe-d16-openbmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/flashprog-kgpe-d16-openbmc.sh -------------------------------------------------------------------------------- /initrd/bin/generic-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/generic-init -------------------------------------------------------------------------------- /initrd/bin/gpg-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/gpg-gui.sh -------------------------------------------------------------------------------- /initrd/bin/gpgv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/gpgv -------------------------------------------------------------------------------- /initrd/bin/gui-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/gui-init -------------------------------------------------------------------------------- /initrd/bin/gui-init-basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/gui-init-basic -------------------------------------------------------------------------------- /initrd/bin/inject_firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/inject_firmware.sh -------------------------------------------------------------------------------- /initrd/bin/kexec-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-boot -------------------------------------------------------------------------------- /initrd/bin/kexec-insert-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-insert-key -------------------------------------------------------------------------------- /initrd/bin/kexec-iso-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-iso-init -------------------------------------------------------------------------------- /initrd/bin/kexec-parse-bls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-parse-bls -------------------------------------------------------------------------------- /initrd/bin/kexec-parse-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-parse-boot -------------------------------------------------------------------------------- /initrd/bin/kexec-save-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-save-default -------------------------------------------------------------------------------- /initrd/bin/kexec-save-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-save-key -------------------------------------------------------------------------------- /initrd/bin/kexec-seal-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-seal-key -------------------------------------------------------------------------------- /initrd/bin/kexec-select-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-select-boot -------------------------------------------------------------------------------- /initrd/bin/kexec-sign-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-sign-config -------------------------------------------------------------------------------- /initrd/bin/kexec-unseal-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/kexec-unseal-key -------------------------------------------------------------------------------- /initrd/bin/key-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/key-init -------------------------------------------------------------------------------- /initrd/bin/lock_chip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/lock_chip -------------------------------------------------------------------------------- /initrd/bin/media-scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/media-scan -------------------------------------------------------------------------------- /initrd/bin/mount-usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/mount-usb -------------------------------------------------------------------------------- /initrd/bin/network-init-recovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/network-init-recovery -------------------------------------------------------------------------------- /initrd/bin/oem-factory-reset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/oem-factory-reset -------------------------------------------------------------------------------- /initrd/bin/oem-system-info-xx30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/oem-system-info-xx30 -------------------------------------------------------------------------------- /initrd/bin/poweroff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/poweroff -------------------------------------------------------------------------------- /initrd/bin/qubes-measure-luks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/qubes-measure-luks -------------------------------------------------------------------------------- /initrd/bin/reboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/reboot -------------------------------------------------------------------------------- /initrd/bin/root-hashes-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/root-hashes-gui.sh -------------------------------------------------------------------------------- /initrd/bin/seal-hotpkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/seal-hotpkey -------------------------------------------------------------------------------- /initrd/bin/seal-totp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/seal-totp -------------------------------------------------------------------------------- /initrd/bin/setconsolefont.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/setconsolefont.sh -------------------------------------------------------------------------------- /initrd/bin/talos-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/talos-init -------------------------------------------------------------------------------- /initrd/bin/tpm-reset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/tpm-reset -------------------------------------------------------------------------------- /initrd/bin/tpmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/tpmr -------------------------------------------------------------------------------- /initrd/bin/uefi-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/uefi-init -------------------------------------------------------------------------------- /initrd/bin/unpack_initramfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/unpack_initramfs.sh -------------------------------------------------------------------------------- /initrd/bin/unseal-hotp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/unseal-hotp -------------------------------------------------------------------------------- /initrd/bin/unseal-totp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/unseal-totp -------------------------------------------------------------------------------- /initrd/bin/usb-autoboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/usb-autoboot.sh -------------------------------------------------------------------------------- /initrd/bin/usb-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/usb-init -------------------------------------------------------------------------------- /initrd/bin/wget-measure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/wget-measure.sh -------------------------------------------------------------------------------- /initrd/bin/wipe-totp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/bin/wipe-totp -------------------------------------------------------------------------------- /initrd/etc/diceware_dictionaries/eff_short_wordlist_2_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/diceware_dictionaries/eff_short_wordlist_2_0.txt -------------------------------------------------------------------------------- /initrd/etc/distro/gpg-agent.conf: -------------------------------------------------------------------------------- 1 | disable-scdaemon 2 | -------------------------------------------------------------------------------- /initrd/etc/distro/keys/archlinux.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/distro/keys/archlinux.key -------------------------------------------------------------------------------- /initrd/etc/distro/keys/qubes-4.2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/distro/keys/qubes-4.2.key -------------------------------------------------------------------------------- /initrd/etc/distro/keys/qubes-4.3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/distro/keys/qubes-4.3.key -------------------------------------------------------------------------------- /initrd/etc/distro/keys/qubes-weekly-builds-signing-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/distro/keys/qubes-weekly-builds-signing-key.asc -------------------------------------------------------------------------------- /initrd/etc/distro/keys/tails.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/distro/keys/tails.key -------------------------------------------------------------------------------- /initrd/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/fstab -------------------------------------------------------------------------------- /initrd/etc/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/functions -------------------------------------------------------------------------------- /initrd/etc/group: -------------------------------------------------------------------------------- 1 | root:x:0: 2 | -------------------------------------------------------------------------------- /initrd/etc/gui_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/gui_functions -------------------------------------------------------------------------------- /initrd/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /initrd/etc/luks-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/luks-functions -------------------------------------------------------------------------------- /initrd/etc/mke2fs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/mke2fs.conf -------------------------------------------------------------------------------- /initrd/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/motd -------------------------------------------------------------------------------- /initrd/etc/mtab: -------------------------------------------------------------------------------- 1 | ../proc/self/mounts -------------------------------------------------------------------------------- /initrd/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/passwd -------------------------------------------------------------------------------- /initrd/etc/shells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/etc/shells -------------------------------------------------------------------------------- /initrd/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/init -------------------------------------------------------------------------------- /initrd/mount-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/mount-boot -------------------------------------------------------------------------------- /initrd/run/cryptsetup/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /initrd/sbin/config-dhcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/sbin/config-dhcp.sh -------------------------------------------------------------------------------- /initrd/sbin/insmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/initrd/sbin/insmod -------------------------------------------------------------------------------- /install/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /modules/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/bash -------------------------------------------------------------------------------- /modules/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/busybox -------------------------------------------------------------------------------- /modules/cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/cairo -------------------------------------------------------------------------------- /modules/coreboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/coreboot -------------------------------------------------------------------------------- /modules/coreboot-blobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/coreboot-blobs -------------------------------------------------------------------------------- /modules/cryptsetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/cryptsetup -------------------------------------------------------------------------------- /modules/cryptsetup2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/cryptsetup2 -------------------------------------------------------------------------------- /modules/dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/dropbear -------------------------------------------------------------------------------- /modules/e2fsprogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/e2fsprogs -------------------------------------------------------------------------------- /modules/exfatprogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/exfatprogs -------------------------------------------------------------------------------- /modules/fbwhiptail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/fbwhiptail -------------------------------------------------------------------------------- /modules/flashprog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/flashprog -------------------------------------------------------------------------------- /modules/flashrom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/flashrom -------------------------------------------------------------------------------- /modules/flashtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/flashtools -------------------------------------------------------------------------------- /modules/frotz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/frotz -------------------------------------------------------------------------------- /modules/gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/gpg -------------------------------------------------------------------------------- /modules/gpg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/gpg2 -------------------------------------------------------------------------------- /modules/hidapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/hidapi -------------------------------------------------------------------------------- /modules/hotp-verification: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/hotp-verification -------------------------------------------------------------------------------- /modules/io386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/io386 -------------------------------------------------------------------------------- /modules/ioport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/ioport -------------------------------------------------------------------------------- /modules/json-c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/json-c -------------------------------------------------------------------------------- /modules/kbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/kbd -------------------------------------------------------------------------------- /modules/kexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/kexec -------------------------------------------------------------------------------- /modules/libaio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libaio -------------------------------------------------------------------------------- /modules/libassuan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libassuan -------------------------------------------------------------------------------- /modules/libgcrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libgcrypt -------------------------------------------------------------------------------- /modules/libgpg-error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libgpg-error -------------------------------------------------------------------------------- /modules/libhidapi-libusb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libhidapi-libusb -------------------------------------------------------------------------------- /modules/libksba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libksba -------------------------------------------------------------------------------- /modules/libnitrokey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libnitrokey -------------------------------------------------------------------------------- /modules/libpng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libpng -------------------------------------------------------------------------------- /modules/libusb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libusb -------------------------------------------------------------------------------- /modules/libusb-compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/libusb-compat -------------------------------------------------------------------------------- /modules/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/linux -------------------------------------------------------------------------------- /modules/linuxboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/linuxboot -------------------------------------------------------------------------------- /modules/lvm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/lvm2 -------------------------------------------------------------------------------- /modules/mbedtls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/mbedtls -------------------------------------------------------------------------------- /modules/msrtools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/msrtools -------------------------------------------------------------------------------- /modules/musl-cross-make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/musl-cross-make -------------------------------------------------------------------------------- /modules/ncurses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/ncurses -------------------------------------------------------------------------------- /modules/newt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/newt -------------------------------------------------------------------------------- /modules/nkstorecli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/nkstorecli -------------------------------------------------------------------------------- /modules/npth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/npth -------------------------------------------------------------------------------- /modules/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/openssl -------------------------------------------------------------------------------- /modules/pciutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/pciutils -------------------------------------------------------------------------------- /modules/pinentry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/pinentry -------------------------------------------------------------------------------- /modules/pixman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/pixman -------------------------------------------------------------------------------- /modules/popt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/popt -------------------------------------------------------------------------------- /modules/powerpc-utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/powerpc-utils -------------------------------------------------------------------------------- /modules/purism-blobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/purism-blobs -------------------------------------------------------------------------------- /modules/qrencode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/qrencode -------------------------------------------------------------------------------- /modules/slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/slang -------------------------------------------------------------------------------- /modules/tpm2-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/tpm2-tools -------------------------------------------------------------------------------- /modules/tpm2-tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/tpm2-tss -------------------------------------------------------------------------------- /modules/tpmtotp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/tpmtotp -------------------------------------------------------------------------------- /modules/u-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/u-root -------------------------------------------------------------------------------- /modules/util-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/util-linux -------------------------------------------------------------------------------- /modules/zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/zlib -------------------------------------------------------------------------------- /modules/zstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/modules/zstd -------------------------------------------------------------------------------- /packages/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /patches/bash-5.1.16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/bash-5.1.16.patch -------------------------------------------------------------------------------- /patches/busybox-1.36.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/busybox-1.36.1.patch -------------------------------------------------------------------------------- /patches/coreboot-24.02.01/0001-vc_wuffs-upgrade-to-Wuffs_0.4.0-alpha.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-24.02.01/0001-vc_wuffs-upgrade-to-Wuffs_0.4.0-alpha.8.patch -------------------------------------------------------------------------------- /patches/coreboot-24.02.01/0002-lib_jpeg-avoidcalling-malloc-and-free.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-24.02.01/0002-lib_jpeg-avoidcalling-malloc-and-free.patch -------------------------------------------------------------------------------- /patches/coreboot-24.02.01/0003-CONFIG_RESOURCE_ALLOCATION_TOP_DOWN-CONFIG_DOMAIN_RESOURCE_32BIT_LIMIT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-24.02.01/0003-CONFIG_RESOURCE_ALLOCATION_TOP_DOWN-CONFIG_DOMAIN_RESOURCE_32BIT_LIMIT.patch -------------------------------------------------------------------------------- /patches/coreboot-24.02.01/0004-cbmem_tpm-clear_whole_log_on_creation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-24.02.01/0004-cbmem_tpm-clear_whole_log_on_creation.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0001-drivers-intel-dtbt-Add-discrete-Thunderbolt-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0001-drivers-intel-dtbt-Add-discrete-Thunderbolt-driver.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0002-mb-lenovo-t480-s-Enable-TBT-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0002-mb-lenovo-t480-s-Enable-TBT-support.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0003-soc-intel-lockdown-Allow-locking-down-SPI-and-LPC-in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0003-soc-intel-lockdown-Allow-locking-down-SPI-and-LPC-in.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0004-security-tpm-tspi-log-tpm1.c-Clear-whole-log-area-on.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0004-security-tpm-tspi-log-tpm1.c-Clear-whole-log-area-on.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0005-Fix-local-build-issues.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0005-Fix-local-build-issues.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0006-nb-intel-haswell-Use-boolean-for-cbmem_was_initted.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0006-nb-intel-haswell-Use-boolean-for-cbmem_was_initted.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0007-nb-intel-haswell-acpi-Add-missing-MMIO-window-below-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0007-nb-intel-haswell-acpi-Add-missing-MMIO-window-below-.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0008-tree-Use-boolean-for-s3resume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0008-tree-Use-boolean-for-s3resume.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0009-nb-intel-haswell-Factor-out-setup_sdram_meminfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0009-nb-intel-haswell-Factor-out-setup_sdram_meminfo.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0010-nb-intel-haswell-Factor-out-report_memory_config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0010-nb-intel-haswell-Factor-out-report_memory_config.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0011-Haswell-NRI-Print-and-fill-in-memory-related-info.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0011-Haswell-NRI-Print-and-fill-in-memory-related-info.patch -------------------------------------------------------------------------------- /patches/coreboot-25.09/0012-mb-lenovo-t480-Fix-headphone-jack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-25.09/0012-mb-lenovo-t480-Fix-headphone-jack.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0000-cpu-x86-smm-Use-PRIxPTR-to-print-uintptr_t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0000-cpu-x86-smm-Use-PRIxPTR-to-print-uintptr_t.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0001-Add-Heads-TPM-measured-boot-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0001-Add-Heads-TPM-measured-boot-support.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0002-soc-intel-broadwell_de-Add-measured-boot-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0002-soc-intel-broadwell_de-Add-measured-boot-support.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0003-drivers-generic-cbfs-serial-Add-driver-to-read-seria.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0003-drivers-generic-cbfs-serial-Add-driver-to-read-seria.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0004-mb-purism-librem_l1um-Add-new-board.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0004-mb-purism-librem_l1um-Add-new-board.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0005-soc-fsp_broadwell_de-acpi-Remove-ADR-from-uncore-obj.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0005-soc-fsp_broadwell_de-acpi-Remove-ADR-from-uncore-obj.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0020-kgpe-d16_measured-boot-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0020-kgpe-d16_measured-boot-support.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0021-kgpe-d16_c-environment_bootblock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0021-kgpe-d16_c-environment_bootblock.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0022-kgpe-d16_dstd-asl_Remove-HID-for-PCI-devices.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0022-kgpe-d16_dstd-asl_Remove-HID-for-PCI-devices.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0070-crossgcc-iasl-2021-instead-of-2018_fix-old_coreboot-build-on-newer-platforms.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0070-crossgcc-iasl-2021-instead-of-2018_fix-old_coreboot-build-on-newer-platforms.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0071-crossgcc-binutils-gold-error-strings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0071-crossgcc-binutils-gold-error-strings.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0072-crossgcc-gnat-eh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0072-crossgcc-gnat-eh.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0073-build-race-condition-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0073-build-race-condition-fixes.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0074-make-43-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0074-make-43-fix.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0075-northbridge-amd-Fixed-errors-in-fam15h-DQS-timing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0075-northbridge-amd-Fixed-errors-in-fam15h-DQS-timing.patch -------------------------------------------------------------------------------- /patches/coreboot-4.11/0076-northbridge-amd-Added-resets-for-ram-training-failur.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.11/0076-northbridge-amd-Added-resets-for-ram-training-failur.patch -------------------------------------------------------------------------------- /patches/coreboot-4.19/0001-x230-fhd-variant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.19/0001-x230-fhd-variant.patch -------------------------------------------------------------------------------- /patches/coreboot-4.19/0002-libgfxinit-center_bootsplash_on_bigger_framebuffers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.19/0002-libgfxinit-center_bootsplash_on_bigger_framebuffers.patch -------------------------------------------------------------------------------- /patches/coreboot-4.19/0003-linux_trampoline-handle_coreboot_framebuffer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.19/0003-linux_trampoline-handle_coreboot_framebuffer.patch -------------------------------------------------------------------------------- /patches/coreboot-4.19/0004-bootsplash-Add_ImageMagick_voodoo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.19/0004-bootsplash-Add_ImageMagick_voodoo.patch -------------------------------------------------------------------------------- /patches/coreboot-4.22.01/0001-x230-fhd-variant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-4.22.01/0001-x230-fhd-variant.patch -------------------------------------------------------------------------------- /patches/coreboot-purism/0001-cbmem_tpm-clear_whole_log_on_creation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-purism/0001-cbmem_tpm-clear_whole_log_on_creation.patch -------------------------------------------------------------------------------- /patches/coreboot-talos_2/0001-Use-usr-bin-env-in-skiboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-talos_2/0001-Use-usr-bin-env-in-skiboot.patch -------------------------------------------------------------------------------- /patches/coreboot-talos_2/0002-acpi-unix2-mirror.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-talos_2/0002-acpi-unix2-mirror.patch -------------------------------------------------------------------------------- /patches/coreboot-talos_2/0003-ugly_skiboot-patch_fix_for_newer_gcc_from_musl_125.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/coreboot-talos_2/0003-ugly_skiboot-patch_fix_for_newer_gcc_from_musl_125.patch -------------------------------------------------------------------------------- /patches/cryptsetup-1.7.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/cryptsetup-1.7.3.patch -------------------------------------------------------------------------------- /patches/cryptsetup2-2.6.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/cryptsetup2-2.6.1.patch -------------------------------------------------------------------------------- /patches/dropbear-2016.74.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/dropbear-2016.74.patch -------------------------------------------------------------------------------- /patches/flashrom-b1f858f65b2abd276542650d8cb9e382da258967/0100-enable-kgpe-d16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/flashrom-b1f858f65b2abd276542650d8cb9e382da258967/0100-enable-kgpe-d16.patch -------------------------------------------------------------------------------- /patches/gpg-1.4.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/gpg-1.4.21.patch -------------------------------------------------------------------------------- /patches/gpg2-2.4.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/gpg2-2.4.0.patch -------------------------------------------------------------------------------- /patches/kexec-2.0.26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/kexec-2.0.26.patch -------------------------------------------------------------------------------- /patches/libassuan-2.5.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/libassuan-2.5.5.patch -------------------------------------------------------------------------------- /patches/libgcrypt-1.10.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/libgcrypt-1.10.1.patch -------------------------------------------------------------------------------- /patches/libgcrypt-1.10.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/libgcrypt-1.10.2.patch -------------------------------------------------------------------------------- /patches/libgcrypt-1.8.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/libgcrypt-1.8.3.patch -------------------------------------------------------------------------------- /patches/libgpg-error-1.46.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/libgpg-error-1.46.patch -------------------------------------------------------------------------------- /patches/libksba-1.3.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/libksba-1.3.5.patch -------------------------------------------------------------------------------- /patches/libksba-1.6.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/libksba-1.6.3.patch -------------------------------------------------------------------------------- /patches/linux-4.14.62/0000-efi_bds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.14.62/0000-efi_bds.patch -------------------------------------------------------------------------------- /patches/linux-4.14.62/0001-fake-acpi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.14.62/0001-fake-acpi.patch -------------------------------------------------------------------------------- /patches/linux-4.14.62/0002-nmi-squelch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.14.62/0002-nmi-squelch.patch -------------------------------------------------------------------------------- /patches/linux-4.14.62/0003-fake-trampoline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.14.62/0003-fake-trampoline.patch -------------------------------------------------------------------------------- /patches/linux-4.14.62/0004-libsubcmd_Fix_use-after-free-for-realloc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.14.62/0004-libsubcmd_Fix_use-after-free-for-realloc.patch -------------------------------------------------------------------------------- /patches/linux-4.14.62/0010-winterfell-ahci.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.14.62/0010-winterfell-ahci.patch -------------------------------------------------------------------------------- /patches/linux-4.19.139/0000-efi_bds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.19.139/0000-efi_bds.patch -------------------------------------------------------------------------------- /patches/linux-4.19.139/0001-fake-acpi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.19.139/0001-fake-acpi.patch -------------------------------------------------------------------------------- /patches/linux-4.19.139/0002-nmi-squelch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.19.139/0002-nmi-squelch.patch -------------------------------------------------------------------------------- /patches/linux-4.19.139/0003-fake-trampoline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.19.139/0003-fake-trampoline.patch -------------------------------------------------------------------------------- /patches/linux-4.19.139/0010-winterfell-ahci.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-4.19.139/0010-winterfell-ahci.patch -------------------------------------------------------------------------------- /patches/linux-5.10.214/0001-fake-acpi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.10.214/0001-fake-acpi.patch -------------------------------------------------------------------------------- /patches/linux-5.10.214/0002-nmi-squelch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.10.214/0002-nmi-squelch.patch -------------------------------------------------------------------------------- /patches/linux-5.10.214/0003-fake-trampoline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.10.214/0003-fake-trampoline.patch -------------------------------------------------------------------------------- /patches/linux-5.10.214/0010-winterfell-ahci.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.10.214/0010-winterfell-ahci.patch -------------------------------------------------------------------------------- /patches/linux-5.10.214/shebangs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.10.214/shebangs.patch -------------------------------------------------------------------------------- /patches/linux-5.4.69/0000-efi_bds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.4.69/0000-efi_bds.patch -------------------------------------------------------------------------------- /patches/linux-5.4.69/0001-fake-acpi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.4.69/0001-fake-acpi.patch -------------------------------------------------------------------------------- /patches/linux-5.4.69/0002-nmi-squelch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.4.69/0002-nmi-squelch.patch -------------------------------------------------------------------------------- /patches/linux-5.4.69/0003-fake-trampoline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.4.69/0003-fake-trampoline.patch -------------------------------------------------------------------------------- /patches/linux-5.4.69/0010-winterfell-ahci.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.4.69/0010-winterfell-ahci.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0001-xhci-Reset-controller-on-xhci-shutdown.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0001-xhci-Reset-controller-on-xhci-shutdown.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0002-Release-OpenPower-kernel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0002-Release-OpenPower-kernel.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0003-Fix-mpt3sas-dma-crash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0003-Fix-mpt3sas-dma-crash.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0004-drm-ast-Add-option-to-initialize-palette-on-driver-l.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0004-drm-ast-Add-option-to-initialize-palette-on-driver-l.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0005-Force-ASpeed-RAMDAC-palette-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0005-Force-ASpeed-RAMDAC-palette-reset.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0006-amdgpu-Prepare-DCN-floating-point-macros-for-generic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0006-amdgpu-Prepare-DCN-floating-point-macros-for-generic.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0007-amdgpu-Enable-initial-DCN-support-on-POWER.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0007-amdgpu-Enable-initial-DCN-support-on-POWER.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0008-amdgpu-Wrap-FPU-dependent-functions-in-dc20.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0008-amdgpu-Wrap-FPU-dependent-functions-in-dc20.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0009-Fix-build-with-gcc-10-and-up.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0009-Fix-build-with-gcc-10-and-up.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0010-arch-powerpc-Kconfig-enable-inclusion-of-drivers-fir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0010-arch-powerpc-Kconfig-enable-inclusion-of-drivers-fir.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/0011-drivers-firmware-google-expose-CBMEM-as-sysfs-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/0011-drivers-firmware-google-expose-CBMEM-as-sysfs-file.patch -------------------------------------------------------------------------------- /patches/linux-5.5-openpower/shebangs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-5.5-openpower/shebangs.patch -------------------------------------------------------------------------------- /patches/linux-6.1.8/0001-fake-acpi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.1.8/0001-fake-acpi.patch -------------------------------------------------------------------------------- /patches/linux-6.1.8/0002-nmi-squelch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.1.8/0002-nmi-squelch.patch -------------------------------------------------------------------------------- /patches/linux-6.1.8/0010-winterfell-ahci.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.1.8/0010-winterfell-ahci.patch -------------------------------------------------------------------------------- /patches/linux-6.6.16-openpower/0001-xhci-Reset-controller-on-xhci-shutdown.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.6.16-openpower/0001-xhci-Reset-controller-on-xhci-shutdown.patch -------------------------------------------------------------------------------- /patches/linux-6.6.16-openpower/0002-Release-OpenPower-kernel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.6.16-openpower/0002-Release-OpenPower-kernel.patch -------------------------------------------------------------------------------- /patches/linux-6.6.16-openpower/0003-drm-ast-Add-option-to-initialize-palette-on-driver-l.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.6.16-openpower/0003-drm-ast-Add-option-to-initialize-palette-on-driver-l.patch -------------------------------------------------------------------------------- /patches/linux-6.6.16-openpower/0004-Force-ASpeed-RAMDAC-palette-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.6.16-openpower/0004-Force-ASpeed-RAMDAC-palette-reset.patch -------------------------------------------------------------------------------- /patches/linux-6.6.16-openpower/0005-powerpc-Add-gpr1-and-fpu-save-restore-functions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.6.16-openpower/0005-powerpc-Add-gpr1-and-fpu-save-restore-functions.patch -------------------------------------------------------------------------------- /patches/linux-6.6.16-openpower/0006-arch-powerpc-Kconfig-enable-inclusion-of-drivers-fir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.6.16-openpower/0006-arch-powerpc-Kconfig-enable-inclusion-of-drivers-fir.patch -------------------------------------------------------------------------------- /patches/linux-6.6.16-openpower/0007-drivers-firmware-google-expose-CBMEM-as-sysfs-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/linux-6.6.16-openpower/0007-drivers-firmware-google-expose-CBMEM-as-sysfs-file.patch -------------------------------------------------------------------------------- /patches/lvm2-2.02.168.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/lvm2-2.02.168.patch -------------------------------------------------------------------------------- /patches/lvm2-2.03.23.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/lvm2-2.03.23.patch -------------------------------------------------------------------------------- /patches/musl-cross-make-fd6be58297ee21fcba89216ccd0d4aca1e3f1c5c/0001-no-ssl-linux-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/musl-cross-make-fd6be58297ee21fcba89216ccd0d4aca1e3f1c5c/0001-no-ssl-linux-headers.patch -------------------------------------------------------------------------------- /patches/newt-0.52.24.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/newt-0.52.24.patch -------------------------------------------------------------------------------- /patches/openssl-3.0.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/openssl-3.0.8.patch -------------------------------------------------------------------------------- /patches/pciutils-3.5.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/pciutils-3.5.4.patch -------------------------------------------------------------------------------- /patches/powerpc-utils-1.3.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/powerpc-utils-1.3.5.patch -------------------------------------------------------------------------------- /patches/slang-2.3.3/unhardcode-ln-in-Makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/slang-2.3.3/unhardcode-ln-in-Makefile.patch -------------------------------------------------------------------------------- /patches/tpm2-tools-5.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/tpm2-tools-5.6.patch -------------------------------------------------------------------------------- /patches/tpm2-tss-3.2.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/tpm2-tss-3.2.2.patch -------------------------------------------------------------------------------- /patches/util-linux-2.39.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/patches/util-linux-2.39.patch -------------------------------------------------------------------------------- /targets/legacy_flash.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/legacy_flash.mk -------------------------------------------------------------------------------- /targets/optiplex_blobs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/optiplex_blobs.mk -------------------------------------------------------------------------------- /targets/ppc_tgz.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/ppc_tgz.mk -------------------------------------------------------------------------------- /targets/qemu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/qemu.md -------------------------------------------------------------------------------- /targets/qemu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/qemu.mk -------------------------------------------------------------------------------- /targets/split_8mb4mb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/split_8mb4mb.mk -------------------------------------------------------------------------------- /targets/t480_me_blobs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/t480_me_blobs.mk -------------------------------------------------------------------------------- /targets/t480s_me_blobs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/t480s_me_blobs.mk -------------------------------------------------------------------------------- /targets/xx20_me_blobs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/xx20_me_blobs.mk -------------------------------------------------------------------------------- /targets/xx30_me_blobs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/targets/xx30_me_blobs.mk -------------------------------------------------------------------------------- /unmaintained_boards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/README.md -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_kgpe-d16_server-whiptail/UNMAINTAINED_kgpe-d16_server-whiptail.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_kgpe-d16_server-whiptail/UNMAINTAINED_kgpe-d16_server-whiptail.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_kgpe-d16_server/UNMAINTAINED_kgpe-d16_server.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_kgpe-d16_server/UNMAINTAINED_kgpe-d16_server.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_kgpe-d16_workstation-usb_keyboard/UNMAINTAINED_kgpe-d16_workstation-usb_keyboard.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_kgpe-d16_workstation-usb_keyboard/UNMAINTAINED_kgpe-d16_workstation-usb_keyboard.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_kgpe-d16_workstation/UNMAINTAINED_kgpe-d16_workstation.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_kgpe-d16_workstation/UNMAINTAINED_kgpe-d16_workstation.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_p8z77-m_pro-tpm1-hotp-maximized/UNMAINTAINED_p8z77-m_pro-tpm1-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_p8z77-m_pro-tpm1-hotp-maximized/UNMAINTAINED_p8z77-m_pro-tpm1-hotp-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_p8z77-m_pro-tpm1-maximized/UNMAINTAINED_p8z77-m_pro-tpm1-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_p8z77-m_pro-tpm1-maximized/UNMAINTAINED_p8z77-m_pro-tpm1-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_qemu-linuxboot/UNMAINTAINED_qemu-linuxboot.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_qemu-linuxboot/UNMAINTAINED_qemu-linuxboot.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_t420/UNMAINTAINED_t420.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_t420/UNMAINTAINED_t420.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_t430-hotp-legacy/UNMAINTAINED_t430-hotp-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_t430-hotp-legacy/UNMAINTAINED_t430-hotp-legacy.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_t430-legacy-flash/UNMAINTAINED_t430-legacy-flash.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_t430-legacy-flash/UNMAINTAINED_t430-legacy-flash.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_t430-legacy/UNMAINTAINED_t430-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_t430-legacy/UNMAINTAINED_t430-legacy.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_t520-hotp-maximized/UNMAINTAINED_t520-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_t520-hotp-maximized/UNMAINTAINED_t520-hotp-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_t520-maximized/UNMAINTAINED_t520-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_t520-maximized/UNMAINTAINED_t520-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_t530-dgpu-hotp-maximized/UNMAINTAINED_t530-dgpu-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_t530-dgpu-hotp-maximized/UNMAINTAINED_t530-dgpu-hotp-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_t530-dgpu-maximized/UNMAINTAINED_t530-dgpu-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_t530-dgpu-maximized/UNMAINTAINED_t530-dgpu-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_w530-dgpu-K1000m-hotp-maximized/UNMAINTAINED_w530-dgpu-K1000m-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_w530-dgpu-K1000m-hotp-maximized/UNMAINTAINED_w530-dgpu-K1000m-hotp-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_w530-dgpu-K1000m-maximized/UNMAINTAINED_w530-dgpu-K1000m-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_w530-dgpu-K1000m-maximized/UNMAINTAINED_w530-dgpu-K1000m-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_w530-dgpu-K2000m-hotp-maximized/UNMAINTAINED_w530-dgpu-K2000m-hotp-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_w530-dgpu-K2000m-hotp-maximized/UNMAINTAINED_w530-dgpu-K2000m-hotp-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_w530-dgpu-K2000m-maximized/UNMAINTAINED_w530-dgpu-K2000m-maximized.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_w530-dgpu-K2000m-maximized/UNMAINTAINED_w530-dgpu-K2000m-maximized.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_x220/UNMAINTAINED_x220.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_x220/UNMAINTAINED_x220.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_x230-hotp-legacy/UNMAINTAINED_x230-hotp-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_x230-hotp-legacy/UNMAINTAINED_x230-hotp-legacy.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_x230-legacy-flash/UNMAINTAINED_x230-legacy-flash.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_x230-legacy-flash/UNMAINTAINED_x230-legacy-flash.config -------------------------------------------------------------------------------- /unmaintained_boards/UNMAINTAINED_x230-legacy/UNMAINTAINED_x230-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNMAINTAINED_x230-legacy/UNMAINTAINED_x230-legacy.config -------------------------------------------------------------------------------- /unmaintained_boards/UNTESTED_leopard/UNTESTED_leopard.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNTESTED_leopard/UNTESTED_leopard.config -------------------------------------------------------------------------------- /unmaintained_boards/UNTESTED_r630/UNTESTED_r630.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNTESTED_r630/UNTESTED_r630.config -------------------------------------------------------------------------------- /unmaintained_boards/UNTESTED_s2600wf/UNTESTED_s2600wf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNTESTED_s2600wf/UNTESTED_s2600wf.config -------------------------------------------------------------------------------- /unmaintained_boards/UNTESTED_tioga/UNTESTED_tioga.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNTESTED_tioga/UNTESTED_tioga.config -------------------------------------------------------------------------------- /unmaintained_boards/UNTESTED_winterfell/UNTESTED_winterfell.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNTESTED_winterfell/UNTESTED_winterfell.config -------------------------------------------------------------------------------- /unmaintained_boards/UNTESTED_winterfell/uinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/UNTESTED_winterfell/uinit.go -------------------------------------------------------------------------------- /unmaintained_boards/x230-hotp-legacy/x230-hotp-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/x230-hotp-legacy/x230-hotp-legacy.config -------------------------------------------------------------------------------- /unmaintained_boards/x230-legacy-flash/x230-legacy-flash.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/x230-legacy-flash/x230-legacy-flash.config -------------------------------------------------------------------------------- /unmaintained_boards/x230-legacy/x230-legacy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxboot/heads/HEAD/unmaintained_boards/x230-legacy/x230-legacy.config --------------------------------------------------------------------------------