30 lines
993 B
Bash
30 lines
993 B
Bash
# Template file for 'intel-ucode'
|
|
pkgname=intel-ucode
|
|
version=20180312
|
|
revision=2
|
|
_dlid=27591
|
|
noarch=yes
|
|
create_wrksrc=yes
|
|
short_desc="Microcode update files for Intel CPUs"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="INTEL Software License Agreement"
|
|
homepage="http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&keyword=%22microcode%22"
|
|
distfiles="http://downloadmirror.intel.com/${_dlid}/eng/microcode-${version}.tgz"
|
|
checksum=0b381face2df1b0a829dc4fa8fa93f47f39e11b1c9c22ebd44f8614657c1e779
|
|
|
|
conf_files="/etc/dracut.conf.d/intel_ucode.conf"
|
|
|
|
only_for_archs="i686 x86_64 i686-musl x86_64-musl"
|
|
|
|
do_build() {
|
|
${CC} -Wall ${CFLAGS} -o intel-microcode2ucode ${FILESDIR}/intel-microcode2ucode.c
|
|
./intel-microcode2ucode ./microcode.dat
|
|
}
|
|
do_install() {
|
|
vmkdir usr/lib/firmware/intel-ucode
|
|
vcopy "intel-ucode/*" usr/lib/firmware/intel-ucode
|
|
vmkdir etc/dracut.conf.d
|
|
echo "early_microcode=yes" >> ${DESTDIR}/etc/dracut.conf.d/intel_ucode.conf
|
|
vlicense ${FILESDIR}/LICENSE
|
|
}
|