From 98147abaa2c855c63291d0fbadd6a3acf56406a5 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 9 Aug 2023 11:18:17 +0200 Subject: [PATCH] intel-microcode: Install files in correct directory The directory layout in the archive from GitHub changed, and contains a directory `intel-ucode` with the microcode update data files. Missing this, the files were installed incorrectly: /lib/firmware/intel-ucode/intel-ucode/06-03-02 Specify the subdirectory the files should be copied from, so they are installed correctly directly in `/lib/firmware/intel-ucode`. Increment revision by one. Fixes: https://github.molgen.mpg.de/mariux64/bee-files/commit/6fa3920e841e87ac024d75c642fca5d1492ff49e Resolves: https://github.molgen.mpg.de/mariux64/mariux64-issues/issues/83 --- intel-microcode.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/intel-microcode.be0 b/intel-microcode.be0 index b9324c6d1..9cf4f3cdd 100755 --- a/intel-microcode.be0 +++ b/intel-microcode.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION intel-microcode-20230808-0 +# BEE_VERSION intel-microcode-20230808-1 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -64,7 +64,7 @@ SRCURL[0]="https://beehive.molgen.mpg.de/3ee34344da8f31b3651d901f2d5e2f31/microc mee_install() { mkdir -p $D/lib/firmware/intel-ucode - cp -ax ${S}/* $D/lib/firmware/intel-ucode + cp -ax ${S}/intel-ucode/* $D/lib/firmware/intel-ucode } ## by default this may be 'make install DESTDIR="${D}"'