diff mbox series

[LEDE-DEV,2/2] amd64-microcode: create early load microcode image

Message ID 20180424125620.1558-3-tomek_n@o2.pl
State New
Headers show
Series [LEDE-DEV,1/2] x86: add amd microcode entries to grub config | expand

Commit Message

Tomasz Maciej Nowak April 24, 2018, 12:56 p.m. UTC
Create initrd image with packed microcode. This'll allow to load it at
early boot stage.

Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
---
 package/firmware/amd64-microcode/Makefile | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/package/firmware/amd64-microcode/Makefile b/package/firmware/amd64-microcode/Makefile
index e88b02950f..5eecf24351 100644
--- a/package/firmware/amd64-microcode/Makefile
+++ b/package/firmware/amd64-microcode/Makefile
@@ -35,11 +35,17 @@  define Build/Prepare
 endef
 
 define Build/Compile
+	mkdir -p $(PKG_BUILD_DIR)/kernel/x86/microcode/
+	cat $(PKG_BUILD_DIR)/microcode_amd*.bin \
+		> $(PKG_BUILD_DIR)/kernel/x86/microcode/AuthenticAMD.bin
+	(cd $(PKG_BUILD_DIR); \
+	echo "kernel/x86/microcode/AuthenticAMD.bin" \
+		| cpio -o -H newc --reproducible > amd-ucode.cpio)
 endef
 
 define Package/amd64-microcode/install
-	$(INSTALL_DIR) $(1)/lib/firmware/amd-ucode
-	$(INSTALL_DATA) $(PKG_BUILD_DIR)/*.bin $(1)/lib/firmware/amd-ucode
+	$(INSTALL_DIR) $(1)/boot
+	$(INSTALL_DATA) $(PKG_BUILD_DIR)/amd-ucode.cpio $(1)/boot/amd-ucode.img
 endef
 
 $(eval $(call BuildPackage,amd64-microcode))