22 lines
902 B
Bash
22 lines
902 B
Bash
# Template file for 'intel-ucode'
|
|
pkgname=intel-ucode
|
|
version=20240910
|
|
revision=1
|
|
archs="i686* x86_64*"
|
|
short_desc="Microcode update files for Intel CPUs"
|
|
maintainer="Daniel Martinez <danielmartinez@cock.li>"
|
|
license="custom: Proprietary"
|
|
homepage="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files"
|
|
changelog="https://raw.githubusercontent.com/intel/Intel-Linux-Processor-Microcode-Data-Files/main/releasenote.md"
|
|
distfiles="https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/refs/tags/microcode-${version}.tar.gz"
|
|
checksum=8b7582eac7e9a691356e18b3bdcbc7b2db09494e040ec980a4a5fb6d0da261bf
|
|
repository=nonfree
|
|
|
|
do_install() {
|
|
vmkdir usr/lib/firmware/intel-ucode
|
|
vcopy "intel-ucode/*" usr/lib/firmware/intel-ucode
|
|
vmkdir usr/lib/dracut/dracut.conf.d
|
|
echo "early_microcode=yes" >> ${DESTDIR}/usr/lib/dracut/dracut.conf.d/intel_ucode.conf
|
|
vlicense license
|
|
}
|