1
0
mirror of https://aur.archlinux.org/linux-vfio.git synced 2024-12-26 06:24:09 +00:00
linux-vfio/PKGBUILD

319 lines
8.6 KiB
Bash
Raw Normal View History

2023-12-29 13:26:28 +00:00
# Maintainer:
# Contributor: éclairevoyant
# Contributor: Mark Weiman (markzz) <mark.weiman@markzz.com>
# Contributor: Katelyn Schiesser (slowbro) <katelyn.schiesser@gmail.com>
2020-04-02 05:25:10 +00:00
# Contributor: Dan Ziemba <zman0900@gmail.com>
2015-01-30 06:07:58 +00:00
2024-01-09 18:36:25 +00:00
## options
2024-02-08 02:42:57 +00:00
: ${_build_arch_patch:=true}
2024-01-09 18:36:25 +00:00
2024-01-10 14:29:49 +00:00
: ${_build_clang:=false}
2024-01-11 00:52:38 +00:00
: ${_build_tracer:=true}
: ${_build_numa:=true}
: ${_build_vfio:=true}
: ${_build_lts:=false}
2024-01-10 14:29:49 +00:00
: ${_build_v3:=false}
2024-03-01 21:51:07 +00:00
unset _pkgtype
2024-01-11 00:52:38 +00:00
[[ "${_build_vfio::1}" == "t" ]] && _pkgtype+="-vfio"
[[ "${_build_lts::1}" == "t" ]] && _pkgtype+="-lts"
2024-08-12 02:56:01 +00:00
[[ "${_build_v3::1}" == "t" ]] && _pkgtype+="-x64v3"
2024-01-10 14:29:49 +00:00
## basic info
2023-12-29 13:26:28 +00:00
_gitname="linux"
2024-01-11 00:52:38 +00:00
_pkgname="$_gitname${_pkgtype:-}"
pkgbase="$_pkgname"
2024-11-19 18:25:00 +00:00
pkgver=6.11.9
2024-01-20 19:01:19 +00:00
pkgrel=1
2019-12-02 15:30:36 +00:00
pkgdesc='Linux'
2023-12-29 13:26:28 +00:00
url='https://www.kernel.org'
2024-03-17 03:00:50 +00:00
license=('GPL-2.0-or-later')
arch=('x86_64')
2023-06-12 21:57:14 +00:00
makedepends=(
bc
cpio
gettext
libelf
pahole
perl
2023-12-29 13:26:28 +00:00
python
2023-06-12 21:57:14 +00:00
tar
xz
# htmldocs
graphviz
imagemagick
python-sphinx
2024-03-17 03:00:50 +00:00
python-yaml
2023-06-12 21:57:14 +00:00
texlive-latexextra
)
2024-11-02 06:22:49 +00:00
options=('!debug' '!strip')
2023-12-29 13:26:28 +00:00
_srcname=linux-$pkgver
2024-11-08 18:57:59 +00:00
source=(
2023-12-29 13:26:28 +00:00
https://cdn.kernel.org/pub/linux/kernel/v${pkgver%%.*}.x/${_srcname}.tar.{xz,sign}
2024-01-27 03:26:58 +00:00
"config-$pkgver"::https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/raw/main/config
2018-01-06 16:51:18 +00:00
)
2024-11-08 18:57:59 +00:00
sha256sums=(
2024-11-19 18:25:00 +00:00
'75658a7aa3bd9598c96ee1e5862c5e1d34fced75c28d825c727a1510a6f384b4' ###
2024-01-27 03:26:58 +00:00
'SKIP'
2023-12-29 13:26:28 +00:00
'SKIP'
)
2024-01-09 18:36:25 +00:00
validpgpkeys=(
2024-04-18 00:47:18 +00:00
ABAF11C65A2970B130ABE3C479BE3E4300411886 # Linus Torvalds
647F28654894E3BD457199BE38DBBDC86092693E # Greg Kroah-Hartman
83BC8889351B5DEBBB68416EB8AC08600F108CDF # Jan Alexander Steffens (heftig)
2024-01-09 18:36:25 +00:00
)
2024-04-18 00:47:18 +00:00
if [[ ${_build_vfio::1} == "t" ]]; then
2024-01-09 18:36:25 +00:00
source+=(
2024-03-17 03:00:50 +00:00
1001-6.8.0-add-acs-overrides.patch # updated from https://lkml.org/lkml/2013/5/30/513
1002-6.8.0-i915-vga-arbiter.patch # updated from https://lkml.org/lkml/2014/5/9/517
2024-01-09 18:36:25 +00:00
)
sha256sums+=(
2024-03-17 03:00:50 +00:00
'b35c26d5dc31fb9cfac68292de7b1ee8ca93b4647e4958efc77e2c77f586f1f2'
'966c15da4044a9a3b5f9d362c2cf08303f1265ad4489c9835c95973b71255d07'
2024-01-09 18:36:25 +00:00
)
fi
2024-04-18 00:47:18 +00:00
if [[ ${_build_arch_patch::1} == "t" ]]; then
2024-01-27 03:26:58 +00:00
_srctag=v${pkgver}-arch1
_dl_url_arch='https://github.com/archlinux/linux'
source+=(
$_dl_url_arch/releases/download/$_srctag/linux-$_srctag.patch.zst{,.sig}
)
sha256sums+=(
'SKIP'
'SKIP'
)
2024-01-11 00:52:38 +00:00
fi
2024-04-18 00:47:18 +00:00
if [[ ${_build_clang::1} == "t" ]]; then
2024-01-10 14:29:49 +00:00
makedepends+=(clang llvm lld)
export LLVM=1
export LLVM_IAS=1
fi
2024-04-18 00:47:18 +00:00
if [[ "${_build_v3::1}" == "t" ]]; then
2024-03-17 03:00:50 +00:00
export KCFLAGS="-march=x86-64-v3 -mtune=generic -O3"
2024-01-11 00:52:38 +00:00
fi
2019-12-02 15:30:36 +00:00
export KBUILD_BUILD_HOST=archlinux
export KBUILD_BUILD_USER=$pkgbase
export KBUILD_BUILD_TIMESTAMP="$(date -Ru${SOURCE_DATE_EPOCH:+d @$SOURCE_DATE_EPOCH})"
2015-01-30 06:07:58 +00:00
2024-01-11 00:52:38 +00:00
_prepare_extra() {
# remove extra version suffix
sed -E 's&^(EXTRAVERSION =).*$&\1&' -i Makefile
2024-04-18 00:47:18 +00:00
if [[ "${_build_clang::1}" == "t" ]]; then
2024-01-11 00:52:38 +00:00
scripts/config --disable LTO_CLANG_FULL
scripts/config --enable LTO_CLANG_THIN
fi
2024-01-10 14:29:49 +00:00
2024-04-18 00:47:18 +00:00
if [[ "${_build_clang::1}" == "t" ]] || [[ "${_build_tracer::1}" != "t" ]]; then
2024-01-11 00:52:38 +00:00
echo "Disabling Tracers..."
scripts/config \
--disable CONFIG_FTRACE \
--disable CONFIG_FUNCTION_TRACER \
--disable CONFIG_STACK_TRACER
fi
2024-04-18 00:47:18 +00:00
if [[ "${_build_numa::1}" != "t" ]]; then
2024-01-11 00:52:38 +00:00
echo "Disabling NUMA..."
scripts/config --disable CONFIG_NUMA
fi
2024-01-10 14:29:49 +00:00
}
2015-01-30 06:07:58 +00:00
prepare() {
2024-01-27 03:26:58 +00:00
cp "config-$pkgver" "config"
2018-08-13 17:21:15 +00:00
cd $_srcname
echo "Setting version..."
2018-08-13 17:21:15 +00:00
echo "-$pkgrel" > localversion.10-pkgrel
2019-12-02 15:30:36 +00:00
echo "${pkgbase#linux}" > localversion.20-pkgname
2018-08-13 17:21:15 +00:00
local src
for src in "${source[@]}"; do
src="${src%%::*}"
src="${src##*/}"
2023-12-29 13:26:28 +00:00
src="${src%.zst}"
2018-08-13 17:21:15 +00:00
[[ $src = *.patch ]] || continue
2023-12-29 13:26:28 +00:00
echo
echo "Applying patch $src..."
2023-12-29 13:26:28 +00:00
patch -Np1 -F100 -i "../$src"
2018-08-13 17:21:15 +00:00
done
2015-01-30 06:07:58 +00:00
echo "Setting config..."
2018-08-13 17:21:15 +00:00
cp ../config .config
2023-12-29 13:26:28 +00:00
make olddefconfig
2022-02-01 23:06:17 +00:00
diff -u ../config .config || :
2015-01-30 06:07:58 +00:00
2024-01-11 00:52:38 +00:00
_prepare_extra
2023-12-29 13:26:28 +00:00
make -s kernelrelease > version
2024-04-18 00:47:18 +00:00
echo "Prepared $pkgbase version $(< version)"
2015-01-30 06:07:58 +00:00
}
build() {
2018-08-13 17:21:15 +00:00
cd $_srcname
2023-12-29 13:26:28 +00:00
make all
2024-03-17 03:00:50 +00:00
make -C tools/bpf/bpftool vmlinux.h feature-clang-bpf-co-re=1
2024-01-04 17:45:03 +00:00
#make htmldocs
2015-01-30 06:07:58 +00:00
}
_package() {
pkgdesc="The $pkgdesc kernel and modules (ACS override and i915 VGA arbiter patches)"
2023-06-12 21:57:14 +00:00
depends=(
coreutils
initramfs
kmod
)
optdepends=(
'wireless-regdb: to set the correct wireless channels of your country'
'linux-firmware: firmware images needed for some devices'
)
provides=(
KSMBD-MODULE
VIRTUALBOX-GUEST-MODULES
WIREGUARD-MODULE
)
2015-01-30 06:07:58 +00:00
2018-08-13 17:21:15 +00:00
cd $_srcname
2024-04-18 00:47:18 +00:00
local modulesdir="$pkgdir/usr/lib/modules/$(< version)"
2015-01-30 06:07:58 +00:00
echo "Installing boot image..."
2019-12-02 15:30:36 +00:00
# systemd expects to find the kernel here to allow hibernation
# https://github.com/systemd/systemd/commit/edda44605f06a41fb86b7ab8128dcf99161d2344
2023-12-29 13:26:28 +00:00
install -Dm644 "$(make -s image_name)" "$modulesdir/vmlinuz"
2019-12-02 15:30:36 +00:00
# Used by mkinitcpio to name the kernel
echo "$pkgbase" | install -Dm644 /dev/stdin "$modulesdir/pkgbase"
2016-11-20 17:54:15 +00:00
echo "Installing modules..."
2023-12-29 13:26:28 +00:00
ZSTD_CLEVEL=19 make INSTALL_MOD_PATH="$pkgdir/usr" INSTALL_MOD_STRIP=1 \
2024-04-18 00:47:18 +00:00
DEPMOD=/doesnt/exist modules_install # Suppress depmod
2017-12-23 16:43:40 +00:00
2023-12-29 14:57:05 +00:00
# remove build link
rm "$modulesdir"/build
2015-01-30 06:07:58 +00:00
}
_package-headers() {
pkgdesc="Headers and scripts for building modules for the $pkgdesc kernel (ACS override and i915 VGA arbiter patches)"
2021-02-25 03:07:58 +00:00
depends=(pahole)
2015-01-30 06:07:58 +00:00
2018-08-13 17:21:15 +00:00
cd $_srcname
2024-04-18 00:47:18 +00:00
local builddir="$pkgdir/usr/lib/modules/$(< version)/build"
2015-01-30 06:07:58 +00:00
echo "Installing build files..."
2019-12-02 15:30:36 +00:00
install -Dt "$builddir" -m644 .config Makefile Module.symvers System.map \
localversion.* version vmlinux
2018-08-13 17:21:15 +00:00
install -Dt "$builddir/kernel" -m644 kernel/Makefile
install -Dt "$builddir/arch/x86" -m644 arch/x86/Makefile
cp -t "$builddir" -a scripts
2015-01-30 06:07:58 +00:00
2022-02-01 23:06:17 +00:00
# required when STACK_VALIDATION is enabled
2018-08-13 17:21:15 +00:00
install -Dt "$builddir/tools/objtool" tools/objtool/objtool
2022-02-01 23:06:17 +00:00
# required when DEBUG_INFO_BTF_MODULES is enabled
install -Dt "$builddir/tools/bpf/resolve_btfids" tools/bpf/resolve_btfids/resolve_btfids
2015-01-30 06:07:58 +00:00
echo "Installing headers..."
2018-08-13 17:21:15 +00:00
cp -t "$builddir" -a include
cp -t "$builddir/arch/x86" -a arch/x86/include
install -Dt "$builddir/arch/x86/kernel" -m644 arch/x86/kernel/asm-offsets.s
2015-01-30 06:07:58 +00:00
2018-08-13 17:21:15 +00:00
install -Dt "$builddir/drivers/md" -m644 drivers/md/*.h
install -Dt "$builddir/net/mac80211" -m644 net/mac80211/*.h
2015-01-30 06:07:58 +00:00
2022-02-01 23:06:17 +00:00
# https://bugs.archlinux.org/task/13146
2018-08-13 17:21:15 +00:00
install -Dt "$builddir/drivers/media/i2c" -m644 drivers/media/i2c/msp3400-driver.h
2015-01-30 06:07:58 +00:00
2022-02-01 23:06:17 +00:00
# https://bugs.archlinux.org/task/20402
2018-08-13 17:21:15 +00:00
install -Dt "$builddir/drivers/media/usb/dvb-usb" -m644 drivers/media/usb/dvb-usb/*.h
install -Dt "$builddir/drivers/media/dvb-frontends" -m644 drivers/media/dvb-frontends/*.h
install -Dt "$builddir/drivers/media/tuners" -m644 drivers/media/tuners/*.h
# https://bugs.archlinux.org/task/71392
install -Dt "$builddir/drivers/iio/common/hid-sensors" -m644 drivers/iio/common/hid-sensors/*.h
echo "Installing KConfig files..."
2018-08-13 17:21:15 +00:00
find . -name 'Kconfig*' -exec install -Dm644 {} "$builddir/{}" \;
echo "Removing unneeded architectures..."
2018-08-13 17:21:15 +00:00
local arch
for arch in "$builddir"/arch/*/; do
[[ $arch = */x86/ ]] && continue
echo "Removing $(basename "$arch")"
rm -r "$arch"
2017-10-11 09:50:17 +00:00
done
echo "Removing documentation..."
2018-08-13 17:21:15 +00:00
rm -r "$builddir/Documentation"
echo "Removing broken symlinks..."
2018-08-13 17:21:15 +00:00
find -L "$builddir" -type l -printf 'Removing %P\n' -delete
echo "Removing loose objects..."
2018-08-13 17:21:15 +00:00
find "$builddir" -type f -name '*.o' -printf 'Removing %P\n' -delete
echo "Stripping build tools..."
2018-08-13 17:21:15 +00:00
local file
while read -rd '' file; do
case "$(file -Sib "$file")" in
2024-04-18 00:47:18 +00:00
application/x-sharedlib\;*) # Libraries (.so)
2018-08-13 17:21:15 +00:00
strip -v $STRIP_SHARED "$file" ;;
2024-04-18 00:47:18 +00:00
application/x-archive\;*) # Libraries (.a)
2018-08-13 17:21:15 +00:00
strip -v $STRIP_STATIC "$file" ;;
2024-04-18 00:47:18 +00:00
application/x-executable\;*) # Binaries
2018-08-13 17:21:15 +00:00
strip -v $STRIP_BINARIES "$file" ;;
application/x-pie-executable\;*) # Relocatable binaries
strip -v $STRIP_SHARED "$file" ;;
2015-01-30 06:07:58 +00:00
esac
2018-08-13 17:21:15 +00:00
done < <(find "$builddir" -type f -perm -u+x ! -name vmlinux -print0)
2020-06-14 01:17:39 +00:00
echo "Stripping vmlinux..."
strip -v $STRIP_STATIC "$builddir/vmlinux"
echo "Adding symlink..."
2018-08-25 19:22:45 +00:00
mkdir -p "$pkgdir/usr/src"
2019-12-02 15:30:36 +00:00
ln -sr "$builddir" "$pkgdir/usr/src/$pkgbase"
2015-01-30 06:07:58 +00:00
}
_package-docs() {
pkgdesc="Documentation for the $pkgdesc kernel (ACS override and i915 VGA arbiter patches)"
2018-08-13 17:21:15 +00:00
cd $_srcname
2024-04-18 00:47:18 +00:00
local builddir="$pkgdir/usr/lib/modules/$(< version)/build"
2015-01-30 06:07:58 +00:00
echo "Installing documentation..."
2019-12-02 15:30:36 +00:00
local src dst
while read -rd '' src; do
dst="${src#Documentation/}"
dst="$builddir/Documentation/${dst#output/}"
install -Dm644 "$src" "$dst"
done < <(find Documentation -name '.*' -prune -o ! -type d -print0)
echo "Adding symlink..."
2018-08-25 19:22:45 +00:00
mkdir -p "$pkgdir/usr/share/doc"
ln -sr "$builddir/Documentation" "$pkgdir/usr/share/doc/$pkgbase"
2015-01-30 06:07:58 +00:00
}
2023-06-12 21:57:14 +00:00
pkgname=(
"$pkgbase"
"$pkgbase-headers"
2024-01-04 17:45:03 +00:00
#"$pkgbase-docs"
2023-06-12 21:57:14 +00:00
)
2018-08-13 17:21:15 +00:00
for _p in "${pkgname[@]}"; do
eval "package_$_p() {
$(declare -f "_package${_p#$pkgbase}")
_package${_p#$pkgbase}
2015-01-30 06:07:58 +00:00
}"
done