├── README.md ├── cpu ├── amd │ ├── family_10h-family_14h │ │ └── microcode_amd.bin │ └── family_15h │ │ └── microcode_amd_fam15h.bin ├── intel │ ├── LICENSE │ ├── microcode │ │ ├── microcode2bin.sh │ │ └── update-microcodes.sh │ ├── model_1066x │ │ └── microcode.bin │ ├── model_1067x │ │ └── microcode.bin │ ├── model_106ax │ │ └── microcode.bin │ ├── model_106cx │ │ └── microcode.bin │ ├── model_106dx │ │ └── microcode.bin │ ├── model_106ex │ │ └── microcode.bin │ ├── model_2065x │ │ └── microcode.bin │ ├── model_2066x │ │ └── microcode.bin │ ├── model_206ax │ │ └── microcode.bin │ ├── model_206cx │ │ └── microcode.bin │ ├── model_206dx │ │ └── microcode.bin │ ├── model_206ex │ │ └── microcode.bin │ ├── model_206fx │ │ └── microcode.bin │ ├── model_306ax │ │ └── microcode.bin │ ├── model_306cx │ │ └── microcode.bin │ ├── model_306dx │ │ └── microcode.bin │ ├── model_306ex │ │ └── microcode.bin │ ├── model_306fx │ │ └── microcode.bin │ ├── model_4065x │ │ └── microcode.bin │ ├── model_4066x │ │ └── microcode.bin │ ├── model_4067x │ │ └── microcode.bin │ ├── model_406ex │ │ └── microcode.bin │ ├── model_5065x │ │ └── microcode.bin │ ├── model_5066x │ │ └── microcode.bin │ ├── model_506cx │ │ └── microcode.bin │ ├── model_506ex │ │ └── microcode.bin │ ├── model_506fx │ │ └── microcode.bin │ ├── model_63x │ │ └── microcode.bin │ ├── model_65x │ │ └── microcode.bin │ ├── model_66x │ │ └── microcode.bin │ ├── model_67x │ │ └── microcode.bin │ ├── model_68x │ │ └── microcode.bin │ ├── model_69x │ │ └── microcode.bin │ ├── model_6ax │ │ └── microcode.bin │ ├── model_6bx │ │ └── microcode.bin │ ├── model_6dx │ │ └── microcode.bin │ ├── model_6ex │ │ └── microcode.bin │ ├── model_6fx │ │ └── microcode.bin │ ├── model_706ax │ │ └── microcode.bin │ ├── model_806ex │ │ └── microcode.bin │ ├── model_906ex │ │ └── microcode.bin │ ├── model_f0x │ │ └── microcode.bin │ ├── model_f1x │ │ └── microcode.bin │ ├── model_f2x │ │ └── microcode.bin │ ├── model_f3x │ │ └── microcode.bin │ ├── model_f4x │ │ └── microcode.bin │ ├── model_f6x │ │ └── microcode.bin │ └── stm │ │ ├── README.md │ │ ├── license.txt │ │ └── stm.bin ├── qualcomm │ ├── ipq40xx │ │ ├── cdt-AP.DK01.1-C1.bin │ │ ├── cdt.mbn │ │ ├── ddr.mbn │ │ ├── rpm.mbn │ │ ├── sbl.elf │ │ ├── tz.mbn │ │ └── tzbsp_no_xpu.mbn │ ├── ipq8064 │ │ ├── README │ │ └── sbls.bin │ └── ipq806x │ │ ├── README │ │ ├── cdt.mbn │ │ ├── ddr.mbn │ │ ├── rpm.mbn │ │ ├── tz.mbn │ │ └── uber-sbl.mbn ├── samsung │ ├── exynos5250 │ │ ├── bl1.bin │ │ └── update-bl1.sh │ └── exynos5420 │ │ └── bl1.bin └── via │ └── nano │ ├── microcode.bin │ └── microcode.h ├── mainboard ├── amd │ ├── bilby │ │ └── APCB_bilby.bin │ ├── majolica │ │ ├── APCB_CZN_D4.bin │ │ └── APCB_CZN_D4_DefaultRecovery.bin │ └── mandolin │ │ ├── APCB_cereme.bin │ │ └── APCB_mandolin.bin ├── facebook │ └── fbg1701 │ │ ├── descriptor.bin │ │ ├── license.txt │ │ └── me.bin ├── google │ ├── butterfly │ │ ├── descriptor.bin │ │ ├── me.bin │ │ └── snm_2130_coreboot.bin │ ├── guybrush │ │ ├── APCB_CZN_D4.bin │ │ ├── Release.txt │ │ └── TypeId0x55_SplTable_Prod_CZN_Chrome.sbin │ ├── kahlee │ │ ├── VBIOS_015_049_000_017.bin │ │ ├── VBIOS_015_049_000_018.bin │ │ ├── VBIOS_Release_Notes.txt │ │ ├── aleena │ │ │ ├── VBIOS_015_049_000_018.bin │ │ │ └── VBIOS_Release_Notes.txt │ │ ├── liara │ │ │ ├── VBIOS BRT39865 release note.txt │ │ │ └── VBIOS_BRT39865.001.bin │ │ └── license.txt │ ├── link │ │ ├── descriptor.bin │ │ ├── me.bin │ │ └── snm_2137.dat │ ├── parrot │ │ ├── descriptor.bin │ │ ├── me.bin │ │ └── snm_2130_coreboot.bin │ ├── skyrim │ │ ├── APCB_MDN_D5.bin │ │ ├── Release.txt │ │ ├── TypeId0x55_SplTableBl_MDN_CHROME.sbin │ │ └── TypeId0x55_SplTableBl_MDN_CHROME_RO.sbin │ ├── stout │ │ ├── descriptor.bin │ │ ├── me.bin │ │ └── snm_2137.dat │ └── utils │ │ └── prepare_verstage_to_sign.sh ├── intel │ └── emeraldlake2 │ │ ├── descriptor.bin │ │ ├── me.bin │ │ └── snm_2120.dat ├── ocp │ └── tiogapass │ │ └── descriptor.bin ├── pcengines │ └── apu2 │ │ └── AGESA.bin ├── samsung │ ├── lumpy │ │ ├── descriptor.bin │ │ ├── me.bin │ │ └── snm_2130_coreboot.bin │ └── stumpy │ │ ├── descriptor.bin │ │ ├── me.bin │ │ └── snm_2124_coreboot.bin └── starlabs │ ├── Logo.bmp │ ├── MIT.md │ ├── README.md │ ├── cezanne │ └── starbook │ │ ├── README.md │ │ └── ec.bin │ └── starbook │ ├── adl │ ├── README.md │ └── ec.bin │ ├── cml │ ├── README.md │ └── ec.bin │ └── tgl │ ├── README.md │ └── ec.bin ├── northbridge ├── amd │ ├── 00630F01 │ │ ├── VBIOS.bin │ │ ├── VBIOS_Release_Notes.txt │ │ └── license.txt │ ├── 00660F01 │ │ ├── VBIOS.bin │ │ ├── VBIOS_Release_Notes.txt │ │ └── license.txt │ └── 00730F01 │ │ ├── VBIOS.bin │ │ ├── VBIOS_Release_Notes.txt │ │ └── license.txt └── intel │ └── sandybridge │ └── systemagent-r6.bin ├── pi └── amd │ ├── 00630F01 │ └── FP3 │ │ ├── AGESA.bin │ │ ├── AGESA_Release_Notes.txt │ │ └── license.txt │ ├── 00660F01 │ └── FP4 │ │ ├── AGESA.bin │ │ ├── AGESA_Release_Notes.txt │ │ └── license.txt │ ├── 00670F00 │ ├── FP4 │ │ ├── AGESA.bin │ │ ├── AGESA_Release_Notes.txt │ │ └── license.txt │ └── FT4 │ │ ├── AGESA.bin │ │ ├── AGESA_Release_Notes.txt │ │ └── license.txt │ └── 00730F01 │ └── FT3b │ ├── AGESA.bin │ ├── AGESA_Release_Notes.txt │ └── license.txt ├── soc ├── amd │ └── stoneyridge │ │ ├── PSP │ │ ├── AmdPubKeyST.bin │ │ ├── PspAgesaS3Resume_prod_ST.csbin │ │ ├── PspBootLoader_prod_ST.sbin │ │ ├── PspNvramS3_ST.bin │ │ ├── PspNvramST.bin │ │ ├── PspRecoveryBootLoader_prod_ST.sbin │ │ ├── PspSecureDebugST.Key │ │ ├── PspSecureOs_prod_ST.csbin │ │ ├── PspTrustlets_TPMver137_prod_ST.cbin │ │ ├── PspTrustlets_prod_ST.cbin │ │ ├── ReleaseNote.txt │ │ ├── RtmPubSignedST.key │ │ ├── SmuFirmware2_prod_ST.csbin │ │ ├── SmuFirmware2_prod_ST.sbin │ │ ├── SmuFirmware2_prod_ST_FN.csbin │ │ ├── SmuFirmware2_prod_ST_FN.sbin │ │ ├── SmuFirmwareST.sbin │ │ ├── SmuFirmwareST_FN.sbin │ │ ├── SmuFirmware_ST.csbin │ │ ├── SmuFirmware_ST_FN.csbin │ │ ├── SmuReleaseNotes.txt │ │ ├── SmuReleaseNotesST.txt │ │ ├── SmuReleaseNotesST_FN.txt │ │ ├── SmuScsST.bin │ │ ├── TrustletKey_prod_ST.sbin │ │ └── license.txt │ │ ├── VBIOS.bin │ │ ├── VBIOS_Release_Notes.txt │ │ ├── imc.bin │ │ ├── license.txt │ │ ├── vbios_license.txt │ │ └── xhci.bin ├── cavium │ └── cn81xx │ │ ├── LICENSE │ │ ├── README │ │ ├── VERSION │ │ └── bl31.elf ├── intel │ ├── baytrail │ │ ├── M0C3067_0000031E.h │ │ ├── microcode.bin │ │ └── microcode_blob.h │ ├── broadwell │ │ ├── microcode-M7240651_0000001C.h │ │ ├── microcode-MC0306D3_FFFF0010.h │ │ ├── microcode-MC0306D4_0000001F.h │ │ ├── microcode-MF2306D2_FFFF0009.h │ │ ├── microcode.bin │ │ └── microcode_blob.h │ └── quark │ │ ├── Fsp2_0 │ │ ├── DEBUG │ │ │ ├── FSP_M.fd │ │ │ ├── FSP_S.fd │ │ │ ├── FSP_T.fd │ │ │ └── QUARK.fd │ │ ├── Fsp.bsf │ │ ├── Include │ │ │ ├── FspUpd.h │ │ │ ├── FspmUpd.h │ │ │ ├── FspsUpd.h │ │ │ └── FsptUpd.h │ │ └── RELEASE │ │ │ ├── FSP_M.fd │ │ │ ├── FSP_S.fd │ │ │ ├── FSP_T.fd │ │ │ └── QUARK.fd │ │ ├── Fsp2_0Pei │ │ ├── DEBUG │ │ │ ├── FSP_M.fd │ │ │ ├── FSP_S.fd │ │ │ ├── FSP_T.fd │ │ │ └── QUARK.fd │ │ ├── Fsp.bsf │ │ ├── Include │ │ │ ├── FspUpd.h │ │ │ ├── FspmUpd.h │ │ │ ├── FspsUpd.h │ │ │ └── FsptUpd.h │ │ └── RELEASE │ │ │ ├── FSP_M.fd │ │ │ ├── FSP_S.fd │ │ │ ├── FSP_T.fd │ │ │ └── QUARK.fd │ │ ├── QuarkFsp.patch │ │ └── README.txt └── mediatek │ ├── mt8183 │ ├── README.md │ ├── dram.elf │ ├── dram.elf.md5 │ ├── dram_release_notes.txt │ ├── license.txt │ ├── pcm_allinone_lp4_3200.bin │ ├── pcm_allinone_lp4_3733.bin │ ├── spm_release_notes.txt │ ├── sspm.bin │ └── sspm_release_notes.txt │ ├── mt8186 │ ├── README.md │ ├── dram.elf │ ├── dram.elf.md5 │ ├── dram_release_notes.txt │ ├── license.txt │ ├── spm_firmware.bin │ ├── spm_firmware.bin.md5 │ ├── spm_release_notes.txt │ ├── sspm.bin │ ├── sspm.bin.md5 │ └── sspm_release_notes.txt │ ├── mt8188 │ ├── README.md │ ├── dpm.dm │ ├── dpm.dm.md5 │ ├── dpm.pm │ ├── dpm.pm.md5 │ ├── dpm_release_notes.txt │ ├── dram.elf │ ├── dram.elf.md5 │ ├── dram_release_notes.txt │ ├── license.txt │ ├── mcupm.bin │ ├── mcupm.bin.md5 │ ├── mcupm_release_notes.txt │ ├── spm_firmware.bin │ ├── spm_firmware.bin.md5 │ ├── spm_release_notes.txt │ ├── sspm.bin │ ├── sspm.bin.md5 │ └── sspm_release_notes.txt │ ├── mt8192 │ ├── README.md │ ├── dpm.dm │ ├── dpm.md5 │ ├── dpm.pm │ ├── dpm_release_notes.txt │ ├── dram.elf │ ├── dram.elf.md5 │ ├── dram_release_notes.txt │ ├── license.txt │ ├── mcupm.bin │ ├── mcupm.bin.md5 │ ├── mcupm_release_notes.txt │ ├── spm_firmware.bin │ ├── spm_firmware.bin.md5 │ ├── spm_release_notes.txt │ ├── sspm.bin │ ├── sspm.bin.md5 │ └── sspm_release_notes.txt │ └── mt8195 │ ├── README.md │ ├── dpm.dm │ ├── dpm.dm.md5 │ ├── dpm.pm │ ├── dpm.pm.md5 │ ├── dpm_release_notes.txt │ ├── dram.elf │ ├── dram.elf.md5 │ ├── dram_release_notes.txt │ ├── license.txt │ ├── mcupm.bin │ ├── mcupm.bin.md5 │ ├── mcupm_release_notes.txt │ ├── spm_firmware.bin │ ├── spm_firmware.bin.md5 │ ├── spm_release_notes.txt │ ├── sspm.bin │ ├── sspm.bin.md5 │ └── sspm_release_notes.txt └── southbridge └── amd ├── avalon ├── PSP │ ├── AmdPubKey.bin │ ├── PspBootLoader.Bypass.sbin │ ├── PspEarlyUnlock.sbin │ ├── PspNvram.bin │ ├── PspRecovery.sbin │ ├── PspReleaseNote.txt │ ├── PspSecureDebug.Key │ ├── PspSecureOs.sbin │ ├── RtmPubSigned.key │ ├── SmuFirmware.sbin │ ├── SmuScs.bin │ ├── Trustlet.tkn.cert │ ├── license.txt │ └── trustlets.bin ├── Release_AvalonXHC.txt ├── Release_IMC_Mullins.txt ├── imc.bin ├── license.txt └── xhci.bin ├── bolton ├── License.rtf ├── Release_IMC_Hudson2.txt ├── XHCI_Release_Notes.txt ├── imc.bin └── xhci.bin ├── hudson ├── License.rtf ├── Release_Hudson2XHC.txt ├── Release_IMC_Hudson2.txt ├── imc.bin └── xhci.bin ├── kern ├── PSP │ ├── AmdPubKeyCZ.bin │ ├── PspAgesaS3Resume_prod_CZ.csbin │ ├── PspBootLoader_prod_CZ.sbin │ ├── PspNvramCZ.bin │ ├── PspNvramS3_CZ.bin │ ├── PspRecoveryBootLoader_prod_CZ.sbin │ ├── PspSecureDebugCZ.Key │ ├── PspSecureOs_prod_CZ.csbin │ ├── PspTrustlets_prod_CZ.cbin │ ├── ReleaseNote.txt │ ├── RtmPubSignedCZ.key │ ├── SmuFirmware2_prod_CZ.sbin │ ├── SmuFirmwareCZ.sbin │ ├── SmuReleaseNotes.txt │ ├── SmuScsCZ.bin │ ├── TrustletKey_prod_CZ.sbin │ └── license.txt ├── imc.bin ├── license.txt └── xhci.bin └── yangtze ├── imc.bin └── xhci.bin /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/README.md -------------------------------------------------------------------------------- /cpu/amd/family_10h-family_14h/microcode_amd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/amd/family_10h-family_14h/microcode_amd.bin -------------------------------------------------------------------------------- /cpu/amd/family_15h/microcode_amd_fam15h.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/amd/family_15h/microcode_amd_fam15h.bin -------------------------------------------------------------------------------- /cpu/intel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/LICENSE -------------------------------------------------------------------------------- /cpu/intel/microcode/microcode2bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/microcode/microcode2bin.sh -------------------------------------------------------------------------------- /cpu/intel/microcode/update-microcodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/microcode/update-microcodes.sh -------------------------------------------------------------------------------- /cpu/intel/model_1066x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_1066x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_1067x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_1067x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_106ax/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_106ax/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_106cx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_106cx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_106dx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_106dx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_106ex/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_106ex/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_2065x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_2065x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_2066x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_2066x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_206ax/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_206ax/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_206cx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_206cx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_206dx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_206dx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_206ex/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_206ex/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_206fx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_206fx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_306ax/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_306ax/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_306cx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_306cx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_306dx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_306dx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_306ex/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_306ex/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_306fx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_306fx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_4065x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_4065x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_4066x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_4066x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_4067x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_4067x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_406ex/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_406ex/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_5065x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_5065x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_5066x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_5066x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_506cx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_506cx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_506ex/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_506ex/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_506fx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_506fx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_63x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_63x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_65x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_65x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_66x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_66x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_67x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_67x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_68x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_68x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_69x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_69x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_6ax/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_6ax/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_6bx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_6bx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_6dx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_6dx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_6ex/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_6ex/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_6fx/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_6fx/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_706ax/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_706ax/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_806ex/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_806ex/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_906ex/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_906ex/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_f0x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_f0x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_f1x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_f1x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_f2x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_f2x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_f3x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_f3x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_f4x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_f4x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/model_f6x/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/model_f6x/microcode.bin -------------------------------------------------------------------------------- /cpu/intel/stm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/stm/README.md -------------------------------------------------------------------------------- /cpu/intel/stm/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/stm/license.txt -------------------------------------------------------------------------------- /cpu/intel/stm/stm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/intel/stm/stm.bin -------------------------------------------------------------------------------- /cpu/qualcomm/ipq40xx/cdt-AP.DK01.1-C1.bin: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /cpu/qualcomm/ipq40xx/cdt.mbn: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /cpu/qualcomm/ipq40xx/ddr.mbn: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /cpu/qualcomm/ipq40xx/rpm.mbn: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /cpu/qualcomm/ipq40xx/sbl.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq40xx/sbl.elf -------------------------------------------------------------------------------- /cpu/qualcomm/ipq40xx/tz.mbn: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /cpu/qualcomm/ipq40xx/tzbsp_no_xpu.mbn: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /cpu/qualcomm/ipq8064/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq8064/README -------------------------------------------------------------------------------- /cpu/qualcomm/ipq8064/sbls.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq8064/sbls.bin -------------------------------------------------------------------------------- /cpu/qualcomm/ipq806x/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq806x/README -------------------------------------------------------------------------------- /cpu/qualcomm/ipq806x/cdt.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq806x/cdt.mbn -------------------------------------------------------------------------------- /cpu/qualcomm/ipq806x/ddr.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq806x/ddr.mbn -------------------------------------------------------------------------------- /cpu/qualcomm/ipq806x/rpm.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq806x/rpm.mbn -------------------------------------------------------------------------------- /cpu/qualcomm/ipq806x/tz.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq806x/tz.mbn -------------------------------------------------------------------------------- /cpu/qualcomm/ipq806x/uber-sbl.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/qualcomm/ipq806x/uber-sbl.mbn -------------------------------------------------------------------------------- /cpu/samsung/exynos5250/bl1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/samsung/exynos5250/bl1.bin -------------------------------------------------------------------------------- /cpu/samsung/exynos5250/update-bl1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/samsung/exynos5250/update-bl1.sh -------------------------------------------------------------------------------- /cpu/samsung/exynos5420/bl1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/samsung/exynos5420/bl1.bin -------------------------------------------------------------------------------- /cpu/via/nano/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/via/nano/microcode.bin -------------------------------------------------------------------------------- /cpu/via/nano/microcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/cpu/via/nano/microcode.h -------------------------------------------------------------------------------- /mainboard/amd/bilby/APCB_bilby.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/amd/bilby/APCB_bilby.bin -------------------------------------------------------------------------------- /mainboard/amd/majolica/APCB_CZN_D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/amd/majolica/APCB_CZN_D4.bin -------------------------------------------------------------------------------- /mainboard/amd/majolica/APCB_CZN_D4_DefaultRecovery.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/amd/majolica/APCB_CZN_D4_DefaultRecovery.bin -------------------------------------------------------------------------------- /mainboard/amd/mandolin/APCB_cereme.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/amd/mandolin/APCB_cereme.bin -------------------------------------------------------------------------------- /mainboard/amd/mandolin/APCB_mandolin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/amd/mandolin/APCB_mandolin.bin -------------------------------------------------------------------------------- /mainboard/facebook/fbg1701/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/facebook/fbg1701/descriptor.bin -------------------------------------------------------------------------------- /mainboard/facebook/fbg1701/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/facebook/fbg1701/license.txt -------------------------------------------------------------------------------- /mainboard/facebook/fbg1701/me.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/facebook/fbg1701/me.bin -------------------------------------------------------------------------------- /mainboard/google/butterfly/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/butterfly/descriptor.bin -------------------------------------------------------------------------------- /mainboard/google/butterfly/me.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/butterfly/me.bin -------------------------------------------------------------------------------- /mainboard/google/butterfly/snm_2130_coreboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/butterfly/snm_2130_coreboot.bin -------------------------------------------------------------------------------- /mainboard/google/guybrush/APCB_CZN_D4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/guybrush/APCB_CZN_D4.bin -------------------------------------------------------------------------------- /mainboard/google/guybrush/Release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/guybrush/Release.txt -------------------------------------------------------------------------------- /mainboard/google/guybrush/TypeId0x55_SplTable_Prod_CZN_Chrome.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/guybrush/TypeId0x55_SplTable_Prod_CZN_Chrome.sbin -------------------------------------------------------------------------------- /mainboard/google/kahlee/VBIOS_015_049_000_017.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/kahlee/VBIOS_015_049_000_017.bin -------------------------------------------------------------------------------- /mainboard/google/kahlee/VBIOS_015_049_000_018.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/kahlee/VBIOS_015_049_000_018.bin -------------------------------------------------------------------------------- /mainboard/google/kahlee/VBIOS_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/kahlee/VBIOS_Release_Notes.txt -------------------------------------------------------------------------------- /mainboard/google/kahlee/aleena/VBIOS_015_049_000_018.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/kahlee/aleena/VBIOS_015_049_000_018.bin -------------------------------------------------------------------------------- /mainboard/google/kahlee/aleena/VBIOS_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/kahlee/aleena/VBIOS_Release_Notes.txt -------------------------------------------------------------------------------- /mainboard/google/kahlee/liara/ VBIOS BRT39865 release note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/kahlee/liara/ VBIOS BRT39865 release note.txt -------------------------------------------------------------------------------- /mainboard/google/kahlee/liara/VBIOS_BRT39865.001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/kahlee/liara/VBIOS_BRT39865.001.bin -------------------------------------------------------------------------------- /mainboard/google/kahlee/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/kahlee/license.txt -------------------------------------------------------------------------------- /mainboard/google/link/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/link/descriptor.bin -------------------------------------------------------------------------------- /mainboard/google/link/me.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/link/me.bin -------------------------------------------------------------------------------- /mainboard/google/link/snm_2137.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/link/snm_2137.dat -------------------------------------------------------------------------------- /mainboard/google/parrot/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/parrot/descriptor.bin -------------------------------------------------------------------------------- /mainboard/google/parrot/me.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/parrot/me.bin -------------------------------------------------------------------------------- /mainboard/google/parrot/snm_2130_coreboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/parrot/snm_2130_coreboot.bin -------------------------------------------------------------------------------- /mainboard/google/skyrim/APCB_MDN_D5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/skyrim/APCB_MDN_D5.bin -------------------------------------------------------------------------------- /mainboard/google/skyrim/Release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/skyrim/Release.txt -------------------------------------------------------------------------------- /mainboard/google/skyrim/TypeId0x55_SplTableBl_MDN_CHROME.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/skyrim/TypeId0x55_SplTableBl_MDN_CHROME.sbin -------------------------------------------------------------------------------- /mainboard/google/skyrim/TypeId0x55_SplTableBl_MDN_CHROME_RO.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/skyrim/TypeId0x55_SplTableBl_MDN_CHROME_RO.sbin -------------------------------------------------------------------------------- /mainboard/google/stout/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/stout/descriptor.bin -------------------------------------------------------------------------------- /mainboard/google/stout/me.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/stout/me.bin -------------------------------------------------------------------------------- /mainboard/google/stout/snm_2137.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/stout/snm_2137.dat -------------------------------------------------------------------------------- /mainboard/google/utils/prepare_verstage_to_sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/google/utils/prepare_verstage_to_sign.sh -------------------------------------------------------------------------------- /mainboard/intel/emeraldlake2/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/intel/emeraldlake2/descriptor.bin -------------------------------------------------------------------------------- /mainboard/intel/emeraldlake2/me.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/intel/emeraldlake2/me.bin -------------------------------------------------------------------------------- /mainboard/intel/emeraldlake2/snm_2120.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/intel/emeraldlake2/snm_2120.dat -------------------------------------------------------------------------------- /mainboard/ocp/tiogapass/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/ocp/tiogapass/descriptor.bin -------------------------------------------------------------------------------- /mainboard/pcengines/apu2/AGESA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/pcengines/apu2/AGESA.bin -------------------------------------------------------------------------------- /mainboard/samsung/lumpy/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/samsung/lumpy/descriptor.bin -------------------------------------------------------------------------------- /mainboard/samsung/lumpy/me.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/samsung/lumpy/me.bin -------------------------------------------------------------------------------- /mainboard/samsung/lumpy/snm_2130_coreboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/samsung/lumpy/snm_2130_coreboot.bin -------------------------------------------------------------------------------- /mainboard/samsung/stumpy/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/samsung/stumpy/descriptor.bin -------------------------------------------------------------------------------- /mainboard/samsung/stumpy/me.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/samsung/stumpy/me.bin -------------------------------------------------------------------------------- /mainboard/samsung/stumpy/snm_2124_coreboot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/samsung/stumpy/snm_2124_coreboot.bin -------------------------------------------------------------------------------- /mainboard/starlabs/Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/Logo.bmp -------------------------------------------------------------------------------- /mainboard/starlabs/MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/MIT.md -------------------------------------------------------------------------------- /mainboard/starlabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/README.md -------------------------------------------------------------------------------- /mainboard/starlabs/cezanne/starbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/cezanne/starbook/README.md -------------------------------------------------------------------------------- /mainboard/starlabs/cezanne/starbook/ec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/cezanne/starbook/ec.bin -------------------------------------------------------------------------------- /mainboard/starlabs/starbook/adl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/starbook/adl/README.md -------------------------------------------------------------------------------- /mainboard/starlabs/starbook/adl/ec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/starbook/adl/ec.bin -------------------------------------------------------------------------------- /mainboard/starlabs/starbook/cml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/starbook/cml/README.md -------------------------------------------------------------------------------- /mainboard/starlabs/starbook/cml/ec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/starbook/cml/ec.bin -------------------------------------------------------------------------------- /mainboard/starlabs/starbook/tgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/starbook/tgl/README.md -------------------------------------------------------------------------------- /mainboard/starlabs/starbook/tgl/ec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/mainboard/starlabs/starbook/tgl/ec.bin -------------------------------------------------------------------------------- /northbridge/amd/00630F01/VBIOS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00630F01/VBIOS.bin -------------------------------------------------------------------------------- /northbridge/amd/00630F01/VBIOS_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00630F01/VBIOS_Release_Notes.txt -------------------------------------------------------------------------------- /northbridge/amd/00630F01/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00630F01/license.txt -------------------------------------------------------------------------------- /northbridge/amd/00660F01/VBIOS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00660F01/VBIOS.bin -------------------------------------------------------------------------------- /northbridge/amd/00660F01/VBIOS_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00660F01/VBIOS_Release_Notes.txt -------------------------------------------------------------------------------- /northbridge/amd/00660F01/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00660F01/license.txt -------------------------------------------------------------------------------- /northbridge/amd/00730F01/VBIOS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00730F01/VBIOS.bin -------------------------------------------------------------------------------- /northbridge/amd/00730F01/VBIOS_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00730F01/VBIOS_Release_Notes.txt -------------------------------------------------------------------------------- /northbridge/amd/00730F01/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/amd/00730F01/license.txt -------------------------------------------------------------------------------- /northbridge/intel/sandybridge/systemagent-r6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/northbridge/intel/sandybridge/systemagent-r6.bin -------------------------------------------------------------------------------- /pi/amd/00630F01/FP3/AGESA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00630F01/FP3/AGESA.bin -------------------------------------------------------------------------------- /pi/amd/00630F01/FP3/AGESA_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00630F01/FP3/AGESA_Release_Notes.txt -------------------------------------------------------------------------------- /pi/amd/00630F01/FP3/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00630F01/FP3/license.txt -------------------------------------------------------------------------------- /pi/amd/00660F01/FP4/AGESA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00660F01/FP4/AGESA.bin -------------------------------------------------------------------------------- /pi/amd/00660F01/FP4/AGESA_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00660F01/FP4/AGESA_Release_Notes.txt -------------------------------------------------------------------------------- /pi/amd/00660F01/FP4/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00660F01/FP4/license.txt -------------------------------------------------------------------------------- /pi/amd/00670F00/FP4/AGESA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00670F00/FP4/AGESA.bin -------------------------------------------------------------------------------- /pi/amd/00670F00/FP4/AGESA_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00670F00/FP4/AGESA_Release_Notes.txt -------------------------------------------------------------------------------- /pi/amd/00670F00/FP4/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00670F00/FP4/license.txt -------------------------------------------------------------------------------- /pi/amd/00670F00/FT4/AGESA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00670F00/FT4/AGESA.bin -------------------------------------------------------------------------------- /pi/amd/00670F00/FT4/AGESA_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00670F00/FT4/AGESA_Release_Notes.txt -------------------------------------------------------------------------------- /pi/amd/00670F00/FT4/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00670F00/FT4/license.txt -------------------------------------------------------------------------------- /pi/amd/00730F01/FT3b/AGESA.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00730F01/FT3b/AGESA.bin -------------------------------------------------------------------------------- /pi/amd/00730F01/FT3b/AGESA_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00730F01/FT3b/AGESA_Release_Notes.txt -------------------------------------------------------------------------------- /pi/amd/00730F01/FT3b/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/pi/amd/00730F01/FT3b/license.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/AmdPubKeyST.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/AmdPubKeyST.bin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspAgesaS3Resume_prod_ST.csbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspAgesaS3Resume_prod_ST.csbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspBootLoader_prod_ST.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspBootLoader_prod_ST.sbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspNvramS3_ST.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspNvramS3_ST.bin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspNvramST.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspNvramST.bin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspRecoveryBootLoader_prod_ST.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspRecoveryBootLoader_prod_ST.sbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspSecureDebugST.Key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspSecureDebugST.Key -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspSecureOs_prod_ST.csbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspSecureOs_prod_ST.csbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspTrustlets_TPMver137_prod_ST.cbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspTrustlets_TPMver137_prod_ST.cbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/PspTrustlets_prod_ST.cbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/PspTrustlets_prod_ST.cbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/ReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/ReleaseNote.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/RtmPubSignedST.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/RtmPubSignedST.key -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuFirmware2_prod_ST.csbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuFirmware2_prod_ST.csbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuFirmware2_prod_ST.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuFirmware2_prod_ST.sbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuFirmware2_prod_ST_FN.csbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuFirmware2_prod_ST_FN.csbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuFirmware2_prod_ST_FN.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuFirmware2_prod_ST_FN.sbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuFirmwareST.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuFirmwareST.sbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuFirmwareST_FN.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuFirmwareST_FN.sbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuFirmware_ST.csbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuFirmware_ST.csbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuFirmware_ST_FN.csbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuFirmware_ST_FN.csbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuReleaseNotes.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuReleaseNotesST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuReleaseNotesST.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuReleaseNotesST_FN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuReleaseNotesST_FN.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/SmuScsST.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/SmuScsST.bin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/TrustletKey_prod_ST.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/TrustletKey_prod_ST.sbin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/PSP/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/PSP/license.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/VBIOS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/VBIOS.bin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/VBIOS_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/VBIOS_Release_Notes.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/imc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/imc.bin -------------------------------------------------------------------------------- /soc/amd/stoneyridge/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/license.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/vbios_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/vbios_license.txt -------------------------------------------------------------------------------- /soc/amd/stoneyridge/xhci.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/amd/stoneyridge/xhci.bin -------------------------------------------------------------------------------- /soc/cavium/cn81xx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/cavium/cn81xx/LICENSE -------------------------------------------------------------------------------- /soc/cavium/cn81xx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/cavium/cn81xx/README -------------------------------------------------------------------------------- /soc/cavium/cn81xx/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/cavium/cn81xx/VERSION -------------------------------------------------------------------------------- /soc/cavium/cn81xx/bl31.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/cavium/cn81xx/bl31.elf -------------------------------------------------------------------------------- /soc/intel/baytrail/M0C3067_0000031E.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/baytrail/M0C3067_0000031E.h -------------------------------------------------------------------------------- /soc/intel/baytrail/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/baytrail/microcode.bin -------------------------------------------------------------------------------- /soc/intel/baytrail/microcode_blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/baytrail/microcode_blob.h -------------------------------------------------------------------------------- /soc/intel/broadwell/microcode-M7240651_0000001C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/broadwell/microcode-M7240651_0000001C.h -------------------------------------------------------------------------------- /soc/intel/broadwell/microcode-MC0306D3_FFFF0010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/broadwell/microcode-MC0306D3_FFFF0010.h -------------------------------------------------------------------------------- /soc/intel/broadwell/microcode-MC0306D4_0000001F.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/broadwell/microcode-MC0306D4_0000001F.h -------------------------------------------------------------------------------- /soc/intel/broadwell/microcode-MF2306D2_FFFF0009.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/broadwell/microcode-MF2306D2_FFFF0009.h -------------------------------------------------------------------------------- /soc/intel/broadwell/microcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/broadwell/microcode.bin -------------------------------------------------------------------------------- /soc/intel/broadwell/microcode_blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/broadwell/microcode_blob.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/DEBUG/FSP_M.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/DEBUG/FSP_M.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/DEBUG/FSP_S.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/DEBUG/FSP_S.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/DEBUG/FSP_T.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/DEBUG/FSP_T.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/DEBUG/QUARK.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/DEBUG/QUARK.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/Fsp.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/Fsp.bsf -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/Include/FspUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/Include/FspUpd.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/Include/FspmUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/Include/FspmUpd.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/Include/FspsUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/Include/FspsUpd.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/Include/FsptUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/Include/FsptUpd.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/RELEASE/FSP_M.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/RELEASE/FSP_M.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/RELEASE/FSP_S.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/RELEASE/FSP_S.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/RELEASE/FSP_T.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/RELEASE/FSP_T.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0/RELEASE/QUARK.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0/RELEASE/QUARK.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/DEBUG/FSP_M.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/DEBUG/FSP_M.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/DEBUG/FSP_S.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/DEBUG/FSP_S.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/DEBUG/FSP_T.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/DEBUG/FSP_T.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/DEBUG/QUARK.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/DEBUG/QUARK.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/Fsp.bsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/Fsp.bsf -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/Include/FspUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/Include/FspUpd.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/Include/FspmUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/Include/FspmUpd.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/Include/FspsUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/Include/FspsUpd.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/Include/FsptUpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/Include/FsptUpd.h -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/RELEASE/FSP_M.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/RELEASE/FSP_M.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/RELEASE/FSP_S.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/RELEASE/FSP_S.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/RELEASE/FSP_T.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/RELEASE/FSP_T.fd -------------------------------------------------------------------------------- /soc/intel/quark/Fsp2_0Pei/RELEASE/QUARK.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/Fsp2_0Pei/RELEASE/QUARK.fd -------------------------------------------------------------------------------- /soc/intel/quark/QuarkFsp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/QuarkFsp.patch -------------------------------------------------------------------------------- /soc/intel/quark/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/intel/quark/README.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8183/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/README.md -------------------------------------------------------------------------------- /soc/mediatek/mt8183/dram.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/dram.elf -------------------------------------------------------------------------------- /soc/mediatek/mt8183/dram.elf.md5: -------------------------------------------------------------------------------- 1 | c2261728217c9e3ca21cb511724dde5d *dram.elf 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8183/dram_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/dram_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8183/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/license.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8183/pcm_allinone_lp4_3200.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/pcm_allinone_lp4_3200.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8183/pcm_allinone_lp4_3733.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/pcm_allinone_lp4_3733.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8183/spm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/spm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8183/sspm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/sspm.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8183/sspm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8183/sspm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8186/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8186/README.md -------------------------------------------------------------------------------- /soc/mediatek/mt8186/dram.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8186/dram.elf -------------------------------------------------------------------------------- /soc/mediatek/mt8186/dram.elf.md5: -------------------------------------------------------------------------------- 1 | 5c7f96716ec681544803301184a33f4b *dram.elf 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8186/dram_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8186/dram_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8186/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8186/license.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8186/spm_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8186/spm_firmware.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8186/spm_firmware.bin.md5: -------------------------------------------------------------------------------- 1 | 7db456c2374b3a76daa9e6f0f2b4fd71 *spm_firmware.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8186/spm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8186/spm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8186/sspm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8186/sspm.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8186/sspm.bin.md5: -------------------------------------------------------------------------------- 1 | 634e532d6acb98e4b1807944233b8f81 *sspm.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8186/sspm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8186/sspm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8188/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/README.md -------------------------------------------------------------------------------- /soc/mediatek/mt8188/dpm.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/dpm.dm -------------------------------------------------------------------------------- /soc/mediatek/mt8188/dpm.dm.md5: -------------------------------------------------------------------------------- 1 | c5fccdf936b3c85bebfa010313890aac *dpm.dm 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8188/dpm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/dpm.pm -------------------------------------------------------------------------------- /soc/mediatek/mt8188/dpm.pm.md5: -------------------------------------------------------------------------------- 1 | a4953cf61e566d02b23cd43abc565d0a *dpm.pm 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8188/dpm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/dpm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8188/dram.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/dram.elf -------------------------------------------------------------------------------- /soc/mediatek/mt8188/dram.elf.md5: -------------------------------------------------------------------------------- 1 | 2f1c79839e0a78d16c19b039d05a650a *dram.elf 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8188/dram_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/dram_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8188/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/license.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8188/mcupm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/mcupm.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8188/mcupm.bin.md5: -------------------------------------------------------------------------------- 1 | 05b8c9b38d790a3480a5d79a01a47d5b *mcupm.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8188/mcupm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/mcupm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8188/spm_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/spm_firmware.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8188/spm_firmware.bin.md5: -------------------------------------------------------------------------------- 1 | e5f3d221be6b549368c7aee91fcad274 *spm_firmware.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8188/spm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/spm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8188/sspm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/sspm.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8188/sspm.bin.md5: -------------------------------------------------------------------------------- 1 | e5b2c28a74bbb4bf93f8cb04a88a1a72 *sspm.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8188/sspm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8188/sspm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8192/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/README.md -------------------------------------------------------------------------------- /soc/mediatek/mt8192/dpm.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/dpm.dm -------------------------------------------------------------------------------- /soc/mediatek/mt8192/dpm.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/dpm.md5 -------------------------------------------------------------------------------- /soc/mediatek/mt8192/dpm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/dpm.pm -------------------------------------------------------------------------------- /soc/mediatek/mt8192/dpm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/dpm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8192/dram.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/dram.elf -------------------------------------------------------------------------------- /soc/mediatek/mt8192/dram.elf.md5: -------------------------------------------------------------------------------- 1 | b0873be4ce5cecc432b21977022ae852 *dram.elf 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8192/dram_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/dram_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8192/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/license.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8192/mcupm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/mcupm.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8192/mcupm.bin.md5: -------------------------------------------------------------------------------- 1 | 59de2352b53f52c6edf176f02ceca3ee mcupm.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8192/mcupm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/mcupm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8192/spm_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/spm_firmware.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8192/spm_firmware.bin.md5: -------------------------------------------------------------------------------- 1 | 7da2cadcb7051dc8fa91495f99cda851 *spm_firmware.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8192/spm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/spm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8192/sspm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/sspm.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8192/sspm.bin.md5: -------------------------------------------------------------------------------- 1 | 8d6d154ccde77ba7a618505f7ab66daa *sspm.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8192/sspm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8192/sspm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8195/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/README.md -------------------------------------------------------------------------------- /soc/mediatek/mt8195/dpm.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/dpm.dm -------------------------------------------------------------------------------- /soc/mediatek/mt8195/dpm.dm.md5: -------------------------------------------------------------------------------- 1 | fabc06d8e697fcbda135576997b5d86c *dpm.dm 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8195/dpm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/dpm.pm -------------------------------------------------------------------------------- /soc/mediatek/mt8195/dpm.pm.md5: -------------------------------------------------------------------------------- 1 | 8806d7a7ee847e04ff9996b39d746829 *dpm.pm 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8195/dpm_release_notes.txt: -------------------------------------------------------------------------------- 1 | ** Build from MediaTek Internal ** 2 | 3 | # Version 1.0 4 | 1. Add DRAM suspend/DVFS support. 5 | -------------------------------------------------------------------------------- /soc/mediatek/mt8195/dram.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/dram.elf -------------------------------------------------------------------------------- /soc/mediatek/mt8195/dram.elf.md5: -------------------------------------------------------------------------------- 1 | 7c42083cf2cc78c1f16e3a0f8fd00054 *dram.elf 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8195/dram_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/dram_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8195/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/license.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8195/mcupm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/mcupm.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8195/mcupm.bin.md5: -------------------------------------------------------------------------------- 1 | 8a0641145c57bcb223f27e3cca9f0572 *mcupm.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8195/mcupm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/mcupm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8195/spm_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/spm_firmware.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8195/spm_firmware.bin.md5: -------------------------------------------------------------------------------- 1 | 8f22ddf9d2ca7a780c2d7cf33727f2a6 *spm_firmware.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8195/spm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/spm_release_notes.txt -------------------------------------------------------------------------------- /soc/mediatek/mt8195/sspm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/sspm.bin -------------------------------------------------------------------------------- /soc/mediatek/mt8195/sspm.bin.md5: -------------------------------------------------------------------------------- 1 | 2695108b761bc3e55b7eb27358248059 *sspm.bin 2 | -------------------------------------------------------------------------------- /soc/mediatek/mt8195/sspm_release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/soc/mediatek/mt8195/sspm_release_notes.txt -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/AmdPubKey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/AmdPubKey.bin -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/PspBootLoader.Bypass.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/PspBootLoader.Bypass.sbin -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/PspEarlyUnlock.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/PspEarlyUnlock.sbin -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/PspNvram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/PspNvram.bin -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/PspRecovery.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/PspRecovery.sbin -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/PspReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/PspReleaseNote.txt -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/PspSecureDebug.Key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/PspSecureDebug.Key -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/PspSecureOs.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/PspSecureOs.sbin -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/RtmPubSigned.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/RtmPubSigned.key -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/SmuFirmware.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/SmuFirmware.sbin -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/SmuScs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/SmuScs.bin -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/Trustlet.tkn.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/Trustlet.tkn.cert -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/license.txt -------------------------------------------------------------------------------- /southbridge/amd/avalon/PSP/trustlets.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/PSP/trustlets.bin -------------------------------------------------------------------------------- /southbridge/amd/avalon/Release_AvalonXHC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/Release_AvalonXHC.txt -------------------------------------------------------------------------------- /southbridge/amd/avalon/Release_IMC_Mullins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/Release_IMC_Mullins.txt -------------------------------------------------------------------------------- /southbridge/amd/avalon/imc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/imc.bin -------------------------------------------------------------------------------- /southbridge/amd/avalon/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/license.txt -------------------------------------------------------------------------------- /southbridge/amd/avalon/xhci.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/avalon/xhci.bin -------------------------------------------------------------------------------- /southbridge/amd/bolton/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/bolton/License.rtf -------------------------------------------------------------------------------- /southbridge/amd/bolton/Release_IMC_Hudson2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/bolton/Release_IMC_Hudson2.txt -------------------------------------------------------------------------------- /southbridge/amd/bolton/XHCI_Release_Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/bolton/XHCI_Release_Notes.txt -------------------------------------------------------------------------------- /southbridge/amd/bolton/imc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/bolton/imc.bin -------------------------------------------------------------------------------- /southbridge/amd/bolton/xhci.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/bolton/xhci.bin -------------------------------------------------------------------------------- /southbridge/amd/hudson/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/hudson/License.rtf -------------------------------------------------------------------------------- /southbridge/amd/hudson/Release_Hudson2XHC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/hudson/Release_Hudson2XHC.txt -------------------------------------------------------------------------------- /southbridge/amd/hudson/Release_IMC_Hudson2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/hudson/Release_IMC_Hudson2.txt -------------------------------------------------------------------------------- /southbridge/amd/hudson/imc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/hudson/imc.bin -------------------------------------------------------------------------------- /southbridge/amd/hudson/xhci.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/hudson/xhci.bin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/AmdPubKeyCZ.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/AmdPubKeyCZ.bin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/PspAgesaS3Resume_prod_CZ.csbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/PspAgesaS3Resume_prod_CZ.csbin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/PspBootLoader_prod_CZ.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/PspBootLoader_prod_CZ.sbin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/PspNvramCZ.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/PspNvramCZ.bin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/PspNvramS3_CZ.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/PspNvramS3_CZ.bin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/PspRecoveryBootLoader_prod_CZ.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/PspRecoveryBootLoader_prod_CZ.sbin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/PspSecureDebugCZ.Key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/PspSecureDebugCZ.Key -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/PspSecureOs_prod_CZ.csbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/PspSecureOs_prod_CZ.csbin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/PspTrustlets_prod_CZ.cbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/PspTrustlets_prod_CZ.cbin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/ReleaseNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/ReleaseNote.txt -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/RtmPubSignedCZ.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/RtmPubSignedCZ.key -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/SmuFirmware2_prod_CZ.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/SmuFirmware2_prod_CZ.sbin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/SmuFirmwareCZ.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/SmuFirmwareCZ.sbin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/SmuReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/SmuReleaseNotes.txt -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/SmuScsCZ.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/SmuScsCZ.bin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/TrustletKey_prod_CZ.sbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/TrustletKey_prod_CZ.sbin -------------------------------------------------------------------------------- /southbridge/amd/kern/PSP/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/PSP/license.txt -------------------------------------------------------------------------------- /southbridge/amd/kern/imc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/imc.bin -------------------------------------------------------------------------------- /southbridge/amd/kern/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/license.txt -------------------------------------------------------------------------------- /southbridge/amd/kern/xhci.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/kern/xhci.bin -------------------------------------------------------------------------------- /southbridge/amd/yangtze/imc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/yangtze/imc.bin -------------------------------------------------------------------------------- /southbridge/amd/yangtze/xhci.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/blobs/HEAD/southbridge/amd/yangtze/xhci.bin --------------------------------------------------------------------------------