linux-vfio/PKGBUILD

254 lines
8.6 KiB
Bash
Raw Normal View History

2017-04-05 19:33:52 +00:00
# Maintainer: Dan Ziemba <zman0900@gmail.com>
# Maintainer: Mark Weiman <markzz@archlinux.net>
2015-01-30 06:07:58 +00:00
pkgbase=linux-vfio
2018-02-08 03:41:21 +00:00
_srcname=linux-4.15
2018-04-06 17:50:57 +00:00
pkgver=4.15.15
2017-12-13 22:27:14 +00:00
pkgrel=1
arch=('x86_64')
2015-01-30 06:07:58 +00:00
url="http://www.kernel.org/"
license=('GPL2')
2016-06-13 22:23:14 +00:00
makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'libelf')
2015-01-30 06:07:58 +00:00
options=('!strip')
2015-04-13 19:18:51 +00:00
source=("https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz"
"https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.sign"
2016-08-20 19:45:15 +00:00
"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz"
"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign"
2015-01-30 06:07:58 +00:00
# the main kernel config files
2017-12-13 22:27:14 +00:00
'config'
2017-12-23 16:43:40 +00:00
# pacman hook for depmod
'60-linux.hook'
2016-11-20 17:54:15 +00:00
# pacman hook for initramfs regeneration
2017-06-23 03:51:45 +00:00
'90-linux.hook'
2015-01-30 06:07:58 +00:00
# standard config files for mkinitcpio ramdisk
'linux.preset'
2017-03-10 22:29:12 +00:00
# patches for pci passthrough
2017-02-10 16:08:50 +00:00
'add-acs-overrides.patch'
2017-12-13 22:27:14 +00:00
'i915-vga-arbiter.patch'
2017-12-23 16:43:40 +00:00
0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
2018-02-08 03:41:21 +00:00
0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch
2018-01-06 16:51:18 +00:00
)
2018-02-08 03:41:21 +00:00
sha256sums=('5a26478906d5005f4f809402e981518d2b8844949199f60c4b6e1f986ca2a769'
2016-06-13 22:23:14 +00:00
'SKIP'
2018-04-06 17:50:57 +00:00
'd8e7f93e24db5517a1be2030a765431120e07f7cd55e510d0de562c70e45bc00'
2016-08-20 19:45:15 +00:00
'SKIP'
2018-03-13 02:08:42 +00:00
'f38927db126ec7141ea2dd70cabb2ef378552672b31db4ab621493928497abd7'
2017-12-23 16:43:40 +00:00
'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
2018-03-25 17:34:23 +00:00
'75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919'
'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65'
2018-02-08 03:41:21 +00:00
'1a4a992199d4d70f7f35735f63a634bb605c2b594b7352ad5fd54512737d2784'
'7cb4a5da6bf551dbb2db2e0b4e4d0774ee98cc30d9e617e030b27e6cba3e6293'
2018-03-25 17:34:23 +00:00
'4ffdc2a458845c2a7c03c735477dbf51b5b01b10568bf577b37a29e872135cab'
'12b281dc45f1954cc3f52276927bb2965c3132c0a8bd7f485869ced2c541d485')
2015-01-30 06:07:58 +00:00
validpgpkeys=(
'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds
'647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman
)
_kernelname=${pkgbase#linux}
prepare() {
2017-12-23 16:43:40 +00:00
cd ${_srcname}
2015-01-30 06:07:58 +00:00
# add upstream patch
2017-12-23 16:43:40 +00:00
patch -p1 -i ../patch-${pkgver}
2018-01-03 15:54:08 +00:00
chmod +x tools/objtool/sync-check.sh # GNU patch doesn't support git-style file mode
2017-12-23 16:43:40 +00:00
# security patches
2015-01-30 06:07:58 +00:00
# add latest fixes from stable queue, if needed
# http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
2016-01-20 02:11:44 +00:00
2017-12-13 22:27:14 +00:00
# disable USER_NS for non-root users by default
patch -Np1 -i ../0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
2018-02-08 03:41:21 +00:00
# https://bugs.archlinux.org/task/56711
patch -Np1 -i ../0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch
2017-12-29 23:27:48 +00:00
2015-01-30 06:07:58 +00:00
# patches for vga arbiter fix in intel systems
2017-02-10 16:08:50 +00:00
patch -p1 -i "${srcdir}/i915-vga-arbiter.patch"
2015-01-30 06:07:58 +00:00
# Overrides for missing acs capabilities
2017-02-10 16:08:50 +00:00
patch -p1 -i "${srcdir}/add-acs-overrides.patch"
2015-01-30 06:07:58 +00:00
2018-03-25 17:34:23 +00:00
cat ../config - >.config <<END
CONFIG_LOCALVERSION="${_kernelname}"
CONFIG_LOCALVERSION_AUTO=n
END
2017-12-23 16:43:40 +00:00
2018-03-25 17:34:23 +00:00
sed -e "/^EXTRAVERSION =/s/=.*/= -${pkgrel}/" \
-e "/^EXTRAVERSION =/aLOCALVERSION =" \
-i Makefile
2015-01-30 06:07:58 +00:00
# don't run depmod on 'make install'. We'll do this ourselves in packaging
sed -i '2iexit 0' scripts/depmod.sh
# get kernel version
make prepare
# load configuration
# Configure the kernel. Replace the line below with one of your choice.
#make menuconfig # CLI menu for configuration
#make nconfig # new CLI menu for configuration
#make xconfig # X-based configuration
#make oldconfig # using old config from previous kernel version
# ... or manually edit .config
# rewrite configuration
yes "" | make config >/dev/null
}
build() {
2017-12-23 16:43:40 +00:00
cd ${_srcname}
2015-01-30 06:07:58 +00:00
2018-03-25 17:34:23 +00:00
make bzImage modules
2015-01-30 06:07:58 +00:00
}
_package() {
2017-12-23 16:43:40 +00:00
pkgdesc="The ${pkgbase/linux/Linux} kernel and modules"
2015-01-30 06:07:58 +00:00
[ "${pkgbase}" = "linux" ] && groups=('base')
depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7')
optdepends=('crda: to set the correct wireless channels of your country')
backup=("etc/mkinitcpio.d/${pkgbase}.preset")
install=linux.install
2017-12-23 16:43:40 +00:00
cd ${_srcname}
2015-01-30 06:07:58 +00:00
2017-12-23 16:43:40 +00:00
# get kernel version
2018-03-25 17:34:23 +00:00
_kernver="$(make kernelrelease)"
2017-12-23 16:43:40 +00:00
_basekernel=${_kernver%%-*}
_basekernel=${_basekernel%.*}
2015-01-30 06:07:58 +00:00
2017-12-23 16:43:40 +00:00
mkdir -p "${pkgdir}"/{boot,usr/lib/modules}
2018-03-25 17:34:23 +00:00
make INSTALL_MOD_PATH="${pkgdir}/usr" modules_install
2017-12-23 16:43:40 +00:00
cp arch/x86/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgbase}"
2016-11-20 17:54:15 +00:00
2017-12-23 16:43:40 +00:00
# make room for external modules
local _extramodules="extramodules-${_basekernel}${_kernelname:--ARCH}"
ln -s "../${_extramodules}" "${pkgdir}/usr/lib/modules/${_kernver}/extramodules"
# add real version for building modules and running depmod from hook
echo "${_kernver}" |
install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modules/${_extramodules}/version"
2015-01-30 06:07:58 +00:00
# remove build and source links
2017-12-23 16:43:40 +00:00
rm "${pkgdir}"/usr/lib/modules/${_kernver}/{source,build}
2017-10-11 09:50:17 +00:00
2017-12-23 16:43:40 +00:00
# now we call depmod...
depmod -b "${pkgdir}/usr" -F System.map "${_kernver}"
2017-10-11 09:50:17 +00:00
2017-12-23 16:43:40 +00:00
# add vmlinux
install -Dt "${pkgdir}/usr/lib/modules/${_kernver}/build" -m644 vmlinux
2017-10-11 09:50:17 +00:00
2017-12-23 16:43:40 +00:00
# sed expression for following substitutions
local _subst="
s|%PKGBASE%|${pkgbase}|g
s|%KERNVER%|${_kernver}|g
s|%EXTRAMODULES%|${_extramodules}|g
"
2015-01-30 06:07:58 +00:00
2017-12-23 16:43:40 +00:00
# hack to allow specifying an initially nonexisting install file
sed "${_subst}" "${startdir}/${install}" > "${startdir}/${install}.pkg"
true && install=${install}.pkg
2015-01-30 06:07:58 +00:00
2017-12-23 16:43:40 +00:00
# install mkinitcpio preset file
sed "${_subst}" ../linux.preset |
install -Dm644 /dev/stdin "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
2015-01-30 06:07:58 +00:00
2017-12-23 16:43:40 +00:00
# install pacman hooks
sed "${_subst}" ../60-linux.hook |
install -Dm644 /dev/stdin "${pkgdir}/usr/share/libalpm/hooks/60-${pkgbase}.hook"
sed "${_subst}" ../90-linux.hook |
install -Dm644 /dev/stdin "${pkgdir}/usr/share/libalpm/hooks/90-${pkgbase}.hook"
2015-01-30 06:07:58 +00:00
}
_package-headers() {
pkgdesc="Header files and scripts for building modules for ${pkgbase/linux/Linux} kernel"
2017-12-23 16:43:40 +00:00
cd ${_srcname}
2017-10-11 09:50:17 +00:00
local _builddir="${pkgdir}/usr/lib/modules/${_kernver}/build"
2015-01-30 06:07:58 +00:00
2017-10-11 09:50:17 +00:00
install -Dt "${_builddir}" -m644 Makefile .config Module.symvers
install -Dt "${_builddir}/kernel" -m644 kernel/Makefile
2015-01-30 06:07:58 +00:00
2017-10-11 09:50:17 +00:00
mkdir "${_builddir}/.tmp_versions"
2015-01-30 06:07:58 +00:00
2017-10-11 09:50:17 +00:00
cp -t "${_builddir}" -a include scripts
2015-01-30 06:07:58 +00:00
2017-12-23 16:43:40 +00:00
install -Dt "${_builddir}/arch/x86" -m644 arch/x86/Makefile
install -Dt "${_builddir}/arch/x86/kernel" -m644 arch/x86/kernel/asm-offsets.s
2015-01-30 06:07:58 +00:00
2017-12-23 16:43:40 +00:00
cp -t "${_builddir}/arch/x86" -a arch/x86/include
2015-01-30 06:07:58 +00:00
2017-10-11 09:50:17 +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
# http://bugs.archlinux.org/task/9912
2017-10-11 09:50:17 +00:00
install -Dt "${_builddir}/drivers/media/dvb-core" -m644 drivers/media/dvb-core/*.h
2015-01-30 06:07:58 +00:00
# http://bugs.archlinux.org/task/13146
2017-10-11 09:50:17 +00:00
install -Dt "${_builddir}/drivers/media/i2c" -m644 drivers/media/i2c/msp3400-driver.h
2015-01-30 06:07:58 +00:00
# http://bugs.archlinux.org/task/20402
2017-10-11 09:50:17 +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
2015-01-30 06:07:58 +00:00
# add xfs and shmem for aufs building
2017-10-11 09:50:17 +00:00
mkdir -p "${_builddir}"/{fs/xfs,mm}
2015-01-30 06:07:58 +00:00
# copy in Kconfig files
2017-10-11 09:50:17 +00:00
find . -name Kconfig\* -exec install -Dm644 {} "${_builddir}/{}" \;
2015-01-30 06:07:58 +00:00
2016-06-01 03:45:13 +00:00
# add objtool for external module building and enabled VALIDATION_STACK option
2017-12-23 16:43:40 +00:00
install -Dt "${_builddir}/tools/objtool" tools/objtool/objtool
2016-06-01 03:45:13 +00:00
2017-10-11 09:50:17 +00:00
# remove unneeded architectures
local _arch
for _arch in "${_builddir}"/arch/*/; do
2017-12-23 16:43:40 +00:00
[[ ${_arch} == */x86/ ]] && continue
rm -r "${_arch}"
2017-10-11 09:50:17 +00:00
done
# remove files already in linux-docs package
rm -r "${_builddir}/Documentation"
# Fix permissions
chmod -R u=rwX,go=rX "${_builddir}"
2015-01-30 06:07:58 +00:00
# strip scripts directory
2017-10-11 09:50:17 +00:00
local _binary _strip
while read -rd '' _binary; do
case "$(file -bi "${_binary}")" in
*application/x-sharedlib*) _strip="${STRIP_SHARED}" ;; # Libraries (.so)
*application/x-archive*) _strip="${STRIP_STATIC}" ;; # Libraries (.a)
*application/x-executable*) _strip="${STRIP_BINARIES}" ;; # Binaries
*) continue ;;
2015-01-30 06:07:58 +00:00
esac
2017-10-11 09:50:17 +00:00
/usr/bin/strip ${_strip} "${_binary}"
done < <(find "${_builddir}/scripts" -type f -perm -u+w -print0 2>/dev/null)
2015-01-30 06:07:58 +00:00
}
_package-docs() {
pkgdesc="Kernel hackers manual - HTML documentation that comes with the ${pkgbase/linux/Linux} kernel"
2017-12-23 16:43:40 +00:00
cd ${_srcname}
2017-10-11 09:50:17 +00:00
local _builddir="${pkgdir}/usr/lib/modules/${_kernver}/build"
2015-01-30 06:07:58 +00:00
2017-10-11 09:50:17 +00:00
mkdir -p "${_builddir}"
cp -t "${_builddir}" -a Documentation
2015-01-30 06:07:58 +00:00
2017-10-11 09:50:17 +00:00
# Fix permissions
chmod -R u=rwX,go=rX "${_builddir}"
2015-01-30 06:07:58 +00:00
}
pkgname=("${pkgbase}" "${pkgbase}-headers" "${pkgbase}-docs")
for _p in ${pkgname[@]}; do
eval "package_${_p}() {
$(declare -f "_package${_p#${pkgbase}}")
_package${_p#${pkgbase}}
}"
done
# vim:set ts=8 sts=2 sw=2 et: