Skip to content

Commit

Permalink
intel-microcode: Install files in correct directory
Browse files Browse the repository at this point in the history
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: 6fa3920
Resolves: mariux64/mariux64-issues#83
  • Loading branch information
pmenzel committed Aug 9, 2023
1 parent 6883dfc commit 98147ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions intel-microcode.be0
Original file line number Diff line number Diff line change
@@ -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.)
Expand Down Expand Up @@ -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}"'

Expand Down

0 comments on commit 98147ab

Please sign in to comment.