[1/1,configs/releng] use package amd-ucode for amd microcode

Message ID 20180824072947.10655-1-list@eworm.de
State New
Headers show
Series [1/1,configs/releng] use package amd-ucode for amd microcode | expand

Commit Message

Christian Hesse Aug. 24, 2018, 7:29 a.m. UTC
From: Christian Hesse <mail@eworm.de>

The package linux-firmware has a new split package amd-ucode. Do not
build the image manually but use the package.

Signed-off-by: Christian Hesse <mail@eworm.de>
---
 configs/releng/build.sh | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

Patch

diff --git a/configs/releng/build.sh b/configs/releng/build.sh
index 3272cd8..d405ece 100755
--- a/configs/releng/build.sh
+++ b/configs/releng/build.sh
@@ -61,7 +61,7 @@  make_pacman_conf() {
 # Base installation, plus needed packages (airootfs)
 make_basefs() {
     mkarchiso ${verbose} -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" init
-    mkarchiso ${verbose} -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" -p "haveged intel-ucode memtest86+ mkinitcpio-nfs-utils nbd zsh efitools" install
+    mkarchiso ${verbose} -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" -p "haveged intel-ucode amd-ucode memtest86+ mkinitcpio-nfs-utils nbd zsh efitools" install
 }
 
 # Additional packages (airootfs)
@@ -107,16 +107,6 @@  make_customize_airootfs() {
     rm ${work_dir}/x86_64/airootfs/root/customize_airootfs.sh
 }
 
-# Prepare amd_ucode
-make_amd_ucode_img() {
-    mkdir -p ${work_dir}/amd-ucode/kernel/x86/microcode
-    cat ${work_dir}/x86_64/airootfs/lib/firmware/amd-ucode/microcode_amd*.bin > ${work_dir}/amd-ucode/kernel/x86/microcode/AuthenticAMD.bin
-    pushd ${work_dir}/amd-ucode > /dev/null
-    echo kernel/x86/microcode/AuthenticAMD.bin | bsdcpio -o -H newc -R 0:0 > amd-ucode.img
-    popd > /dev/null
-    cp ${work_dir}/amd-ucode/amd-ucode.img ${work_dir}/x86_64/airootfs/boot/amd-ucode.img
-}
-
 # Prepare kernel/initramfs ${install_dir}/boot/
 make_boot() {
     mkdir -p ${work_dir}/iso/${install_dir}/boot/x86_64
@@ -266,7 +256,6 @@  run_once make_basefs
 run_once make_packages
 run_once make_setup_mkinitcpio
 run_once make_customize_airootfs
-run_once make_amd_ucode_img
 run_once make_boot
 run_once make_boot_extra
 run_once make_syslinux