From 3cc9e42bfbfd63b933a5e0e400c16534313554b5 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Fri, 20 Oct 2023 16:23:39 -0500 Subject: [PATCH] soc/amd/stoneyridge: Update SMU fw2 name in fw.cfg Update the filename for the PSP_SMUFW2_SUB1_FILE to use the compressed and signed version (.csbin) rather than the uncompression + signed version (.sbin), in order to be consistent with the other SMU firmware files. This will also facilitate dropping the duplicate files in an upcoming update to the amd_blobs repo and updating the SMU files (all of which are .csbin). This change is actually a no-op since the .csbin and .sbin are the same file; it appears that the .sbin file was incorrectly named when added, and then the same file was added later with the correct extension. TEST=build/boot google/kahlee (liara) Change-Id: I10fa8e949ab589d315862c06b4125c902520cbbc Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/78512 Tested-by: build bot (Jenkins) Reviewed-by: Felix Held --- src/soc/amd/stoneyridge/fw_st.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/amd/stoneyridge/fw_st.cfg b/src/soc/amd/stoneyridge/fw_st.cfg index 049242b337..deb49b69d0 100644 --- a/src/soc/amd/stoneyridge/fw_st.cfg +++ b/src/soc/amd/stoneyridge/fw_st.cfg @@ -10,7 +10,7 @@ PSPBTLDR_FILE PspBootLoader_prod_ST.sbin PSP_SMUFW1_SUB0_FILE SmuFirmware_ST.csbin PSP_SMUFW1_SUB1_FILE SmuFirmware_ST_FN.csbin PSP_SMUFW2_SUB0_FILE SmuFirmware2_prod_ST.csbin -PSP_SMUFW2_SUB1_FILE SmuFirmware2_prod_ST_FN.sbin +PSP_SMUFW2_SUB1_FILE SmuFirmware2_prod_ST_FN.csbin PSPRCVR_FILE PspRecoveryBootLoader_prod_ST.sbin PUBSIGNEDKEY_FILE RtmPubSignedST.key PSPNVRAM_FILE PspNvramST.bin -- 2.11.4.GIT