196 lines
6.8 KiB
Bash
196 lines
6.8 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgbase=linux-firmware
|
|
pkgname=(linux-firmware-whence linux-firmware amd-ucode
|
|
linux-firmware-{nfp,mellanox,marvell,qcom,liquidio,qlogic,bnx2x})
|
|
_tag=20230804
|
|
pkgver=20230804.7be2766d
|
|
pkgrel=02
|
|
pkgdesc="Firmware files for Linux"
|
|
url="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary"
|
|
makedepends=(git)
|
|
options=(!strip)
|
|
source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#tag=${_tag}?signed")
|
|
|
|
_backports=(
|
|
f2eb058afc57348cde66852272d6bf11da1eef8f # fixes for "inception": https://www.amd.com/en/resources/product-security/bulletin/amd-sb-7005.html
|
|
)
|
|
|
|
prepare() {
|
|
cd ${pkgbase}
|
|
|
|
local _c
|
|
for _c in "${_backports[@]}"; do
|
|
git log --oneline -1 "${_c}"
|
|
git cherry-pick -n "${_c}"
|
|
done
|
|
|
|
# # add firmware compression support - patch taken from Fedora
|
|
# patch -Np1 -i ../0001-Add-support-for-compressing-firmware-in-copy-firmware.patch
|
|
}
|
|
|
|
pkgver() {
|
|
cd ${pkgbase}
|
|
|
|
# Commit date + short rev
|
|
echo $(TZ=UTC git show -s --pretty=%cd --date=format-local:%Y%m%d HEAD).$(git rev-parse --short HEAD)
|
|
}
|
|
|
|
build() {
|
|
mkdir -p kernel/x86/microcode
|
|
cat ${pkgbase}/amd-ucode/microcode_amd*.bin > kernel/x86/microcode/AuthenticAMD.bin
|
|
|
|
# Reproducibility: set the timestamp on the bin file
|
|
if [[ -n ${SOURCE_DATE_EPOCH} ]]; then
|
|
touch -d @${SOURCE_DATE_EPOCH} kernel/x86/microcode/AuthenticAMD.bin
|
|
fi
|
|
|
|
# Reproducibility: strip the inode and device numbers from the cpio archive
|
|
echo kernel/x86/microcode/AuthenticAMD.bin |
|
|
bsdtar --uid 0 --gid 0 -cnf - -T - |
|
|
bsdtar --null -cf - --format=newc @- > amd-ucode.img
|
|
}
|
|
|
|
_pick() {
|
|
local p="$1" f d; shift
|
|
for f; do
|
|
d="$srcdir/$p/${f#$pkgdir/}"
|
|
mkdir -p "$(dirname "$d")"
|
|
mv "$f" "$d"
|
|
rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
|
|
done
|
|
}
|
|
|
|
package_linux-firmware-whence() {
|
|
pkgdesc+=" - contains the WHENCE license file which documents the vendor license details"
|
|
|
|
install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 ${pkgbase}/WHENCE
|
|
}
|
|
|
|
package_linux-firmware() {
|
|
depends=('linux-firmware-whence')
|
|
|
|
cd ${pkgbase}
|
|
|
|
## Avoid ZSTD wherever we can - xz will have to do
|
|
## ZSTD_CLEVEL=19 make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install-zst
|
|
|
|
make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install-xz
|
|
|
|
# useless (FS#46591)
|
|
# Trigger a microcode reload for configurations not using early updates
|
|
#echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' |
|
|
# install -Dm644 /dev/stdin "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
|
|
|
|
install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 LICEN*
|
|
|
|
cd "${pkgdir}"
|
|
|
|
# remove arm64 firmware https://bugs.archlinux.org/task/76583
|
|
rm usr/lib/firmware/mrvl/prestera/mvsw_prestera_fw_arm64-v4.1.img.xz
|
|
|
|
# split
|
|
_pick linux-firmware-nfp usr/lib/firmware/netronome
|
|
_pick linux-firmware-nfp usr/share/licenses/${pkgname}/LICENCE.Netronome
|
|
|
|
_pick linux-firmware-mellanox usr/lib/firmware/mellanox
|
|
|
|
_pick linux-firmware-marvell usr/lib/firmware/{libertas,mwl8k,mwlwifi,mrvl}
|
|
_pick linux-firmware-marvell usr/share/licenses/${pkgname}/LICENCE.{Marvell,NXP}
|
|
|
|
_pick linux-firmware-qcom usr/lib/firmware/{qcom,a300_*}
|
|
_pick linux-firmware-qcom usr/share/licenses/${pkgname}/LICENSE.qcom*
|
|
|
|
_pick linux-firmware-liquidio usr/lib/firmware/liquidio
|
|
_pick linux-firmware-liquidio usr/share/licenses/${pkgname}/LICENCE.cavium_liquidio
|
|
|
|
_pick linux-firmware-qlogic usr/lib/firmware/{qlogic,qed,ql2???_*,c{b,t,t2}fw-*}
|
|
_pick linux-firmware-qlogic usr/share/licenses/${pkgname}/LICENCE.{qla1280,qla2xxx}
|
|
|
|
_pick linux-firmware-bnx2x usr/lib/firmware/bnx2x*
|
|
}
|
|
|
|
package_amd-ucode() {
|
|
pkgdesc="Microcode update image for AMD CPUs"
|
|
license=(custom)
|
|
|
|
install -Dt "${pkgdir}/boot" -m644 amd-ucode.img
|
|
|
|
install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 ${pkgbase}/LICENSE.amd-ucode
|
|
}
|
|
|
|
package_linux-firmware-nfp() {
|
|
pkgdesc+=" - nfp / Firmware for Netronome Flow Processors"
|
|
depends=('linux-firmware-whence')
|
|
|
|
mv -v linux-firmware-nfp/* "${pkgdir}"
|
|
}
|
|
|
|
package_linux-firmware-mellanox() {
|
|
pkgdesc+=" - mellanox / Firmware for Mellanox Spectrum switches"
|
|
depends=('linux-firmware-whence')
|
|
|
|
mv -v linux-firmware-mellanox/* "${pkgdir}"
|
|
}
|
|
|
|
package_linux-firmware-marvell() {
|
|
pkgdesc+=" - marvell / Firmware for Marvell devices"
|
|
depends=('linux-firmware-whence')
|
|
|
|
mv -v linux-firmware-marvell/* "${pkgdir}"
|
|
}
|
|
|
|
package_linux-firmware-qcom() {
|
|
pkgdesc+=" - qcom / Firmware for Qualcomm SoCs"
|
|
depends=('linux-firmware-whence')
|
|
|
|
mv -v linux-firmware-qcom/* "${pkgdir}"
|
|
}
|
|
|
|
package_linux-firmware-liquidio() {
|
|
pkgdesc+=" - liquidio / Firmware for Cavium LiquidIO server adapters"
|
|
depends=('linux-firmware-whence')
|
|
|
|
mv -v linux-firmware-liquidio/* "${pkgdir}"
|
|
}
|
|
|
|
package_linux-firmware-qlogic() {
|
|
pkgdesc+=" - qlogic / Firmware for QLogic devices"
|
|
depends=('linux-firmware-whence')
|
|
|
|
mv -v linux-firmware-qlogic/* "${pkgdir}"
|
|
}
|
|
|
|
package_linux-firmware-bnx2x() {
|
|
pkgdesc+=" - bnx2x / Firmware for Broadcom NetXtreme II 10Gb ethernet adapters"
|
|
depends=('linux-firmware-whence')
|
|
|
|
mv -v linux-firmware-bnx2x/* "${pkgdir}"
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('GPL2' 'GPL3' 'custom')
|
|
|
|
validpgpkeys=(4CDE8575E547BF835FE15807A31B6BD72486CFD6) # Josh Boyer <jwboyer@fedoraproject.org>
|
|
|
|
sha256sums=(SKIP) # linux-firmware
|
|
|
|
## 338dc5e2774fefbd26324de5d90a44a374f25043a9d9f06559002b35a2fb37b3 amd-ucode-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## 89e3d25767933d995866c0c1c0e7a97e4595ad3c948b087de650b823b69c7180 linux-firmware-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## 6e8848cc56157917955c6f2af2c4801373d1ba4c4886adf678d5db7c3df7f284 linux-firmware-bnx2x-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## ffd4218632358143b425cee660d4e99dcbff67b4a23b448e36ab989d084095da linux-firmware-liquidio-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## 92c8f271bc3e38e681f4aa18a8971472d6395788291217752300502a449cbcee linux-firmware-marvell-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## b9f9c834615d454d36ed657e2de742fe65fa82ff7bb98001736949ee866e4144 linux-firmware-mellanox-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## 41b89950b8a8ba4528470913fd18e21570c21fa73a24ebe9d5665eb37b8e8129 linux-firmware-nfp-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## c0cf6f1c91fb3d965a670a07cfc12faa2e53e8ef8359f587e0e2a45b2be1eb6f linux-firmware-qcom-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## b77a8f6d70909114babed0ba354a6f69478b4ad20ee1b47b158ddd20a36964d8 linux-firmware-qlogic-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
## 5ba79e644b3f2a3bceeffccb2d2889f11c3a888f17d9398867e1821653b3ec01 linux-firmware-whence-20230804.7be2766d-2-x86_64.pkg.tar.lz
|
|
|