Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/84295?usp=email )
Change subject: soc/intel/raptorlake: Fall back to Intel microcode repo ......................................................................
soc/intel/raptorlake: Fall back to Intel microcode repo
With the release 20240910 of the Intel microcode repository, it also includes the updated microcode file with version 0x129, which makes the one from the coreboot blobs repo superfluous. Thus, use the one from the Intel repository again.
Change-Id: I7fb58874719a8373072419e34b3f8923f7db927d Signed-off-by: Felix Singer felixsinger@posteo.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/84295 Reviewed-by: Nico Huber nico.h@gmx.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/intel/alderlake/Makefile.mk 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved
diff --git a/src/soc/intel/alderlake/Makefile.mk b/src/soc/intel/alderlake/Makefile.mk index 2246c86..55fc83ea 100644 --- a/src/soc/intel/alderlake/Makefile.mk +++ b/src/soc/intel/alderlake/Makefile.mk @@ -82,7 +82,7 @@ # ADL-S/HX C0/H0 and RPL-S C0/H0 cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-97-05 # RPL-S/HX B0 -cpu_microcode_bins += 3rdparty/blobs/soc/intel/raptorlake/06-b7-01 +cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-b7-01 else ifeq ($(CONFIG_SOC_INTEL_ALDERLAKE_PCH_N),y) cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-be-00 else