linux-surface/pkg/arch/kernel/PKGBUILD

224 lines
7.6 KiB
Bash
Raw Normal View History

# Maintainer: Blaž Hrastnik <blaz@mxxn.io>
2020-02-16 02:56:27 +00:00
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
pkgbase=linux-surface
2021-04-23 10:15:43 +00:00
pkgver=5.11.16.arch1
2021-05-05 14:29:12 +00:00
pkgrel=2
pkgdesc='Linux'
_shortver=${pkgver%.*}
_fullver=${pkgver%.*}-${pkgver##*.}
_srctag=v${_fullver}
url="https://git.archlinux.org/linux.git/log/?h=$_srctag"
arch=(x86_64)
license=(GPL2)
makedepends=(
bc kmod libelf cpio perl tar xz
python
# we don't need `pahole` as deps because we disable `CONFIG_DEBUG_INFO`
# ignoring deps for docs because we don't build docs package
git
)
optdepends=('iptsd: Touchscreen support')
options=('!strip')
_srcname=linux-${_fullver}
source=(
"https://git.archlinux.org/linux.git/snapshot/linux-$_fullver.tar.gz"
config # the main kernel config file
surface.config # surface specific options
arch.config # config changes for linux-surface kernel
2020-08-18 04:23:24 +00:00
0001-surface3-oemb.patch
0002-wifi.patch
0003-ipts.patch
2021-03-03 22:57:01 +00:00
0004-surface-sam-over-hid.patch
0005-surface-sam.patch
0006-surface-hotplug.patch
0007-surface-typecover.patch
0008-surface-sensors.patch
0009-cameras.patch
0010-ath10k-firmware-override.patch
)
validpgpkeys=(
'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds
'647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman
'A2FF3A36AAA56654109064AB19802F8B0D70FC30' # Jan Alexander Steffens (heftig)
)
2021-04-23 10:15:43 +00:00
sha256sums=('541ecfcadb70310a8f48de6e1cd36045d4547bc75101a823b7f93595175accf0'
2021-03-03 20:51:30 +00:00
'd8d5d11c80424985642b0eea6ace3256b5a1e5e69d637104523460a5ebdda202'
'3fbd134c61de6f4fa86567bb0faf02c4eb2c54111b6dc45367b8f6e9ef06556e'
'9474de18769968c5558fedda5be354fe0babf1365541d4d0ac8e1ac47d4bbb88'
'10317019ef5f98d4d642ae49c13992a7d29b1338affc67a63640ef9ad4508db2'
'c542fad80378d09c8c3611b424f3b7927521dd204a91d4d693c457cdecde21af'
'97f599520ffdce0b73eba49c11d9513fa32d0fbf81b1c2aff5e7229bf0b8d7b1'
'1ca1a7d2944ddc296a3ecd5290c263c839491d0c91a7d146c741e4eda1756791'
'5585cd028558e23850644b4eef2451f61f7a3872acb47a4022b652bc550772a9'
'4050b0474e05146f000c25e06b6b651a3bda44f17177081b6aac61bc06f3ea1a'
'35dd87691dad3518b1264347b49b1ed3a409b165a8e0d38577fd9439501a9b52'
'532fa256f95de02edaa201343e8f170c0dbdfd167312ee64081cb707b1a5f30e'
'bd3961ad0319e59ca9bd15b3d853a4fcd8ea0fba137be8f85273e0b21ef8678e'
'd1e3d7aa34981d9db62a86d266cee5c9fda4b2bc7add245b1e50bc650d0cf7f1')
2020-02-19 00:41:12 +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})"
2020-01-21 01:36:19 +00:00
# optional certificate and key for secure boot signing
_mok_crt="$PWD/MOK.crt"
_mok_key="$PWD/MOK.key"
prepare() {
cd $_srcname
2020-02-16 02:56:27 +00:00
echo "Setting version..."
scripts/setlocalversion --save-scmversion
echo "-$pkgrel" > localversion.10-pkgrel
echo "${pkgbase#linux}" > localversion.20-pkgname
local src
for src in "${source[@]}"; do
src="${src%%::*}"
src="${src##*/}"
[[ $src = *.patch ]] || continue
2020-02-16 02:56:27 +00:00
echo "Applying patch $src..."
patch -Np1 < "../$src"
done
2020-02-16 02:56:27 +00:00
echo "Setting config..."
# cp ../config .config
2020-01-05 02:58:28 +00:00
# merge the two configs together
./scripts/kconfig/merge_config.sh -m ../config ../surface.config ../arch.config
make olddefconfig
make -s kernelrelease > version
echo "Prepared $pkgbase version $(<version)"
}
build() {
cd $_srcname
make all
}
_package() {
pkgdesc="The $pkgdesc kernel and modules"
depends=(coreutils kmod initramfs)
optdepends=('crda: to set the correct wireless channels of your country'
'linux-firmware: firmware images needed for some devices')
provides=(VIRTUALBOX-GUEST-MODULES WIREGUARD-MODULE linux=${_shortver})
replaces=(virtualbox-guest-modules-arch wireguard-arch)
cd $_srcname
local kernver="$(<version)"
local modulesdir="$pkgdir/usr/lib/modules/$kernver"
local image_name="$(make -s image_name)"
# sign boot image if the prequisites are available
2020-01-21 01:36:19 +00:00
if [[ -f "$_mok_crt" ]] && [[ -f "$_mok_key" ]] && [[ -x "$(command -v sbsign)" ]]; then
2020-02-16 02:56:27 +00:00
echo "Signing boot image..."
2020-01-21 01:36:19 +00:00
sbsign --key "$_mok_key" --cert "$_mok_crt" --output "$image_name" "$image_name"
fi
2020-02-16 02:56:27 +00:00
echo "Installing boot image..."
# systemd expects to find the kernel here to allow hibernation
# https://github.com/systemd/systemd/commit/edda44605f06a41fb86b7ab8128dcf99161d2344
install -Dm644 "$(make -s image_name)" "$modulesdir/vmlinuz"
# Used by mkinitcpio to name the kernel
echo "$pkgbase" | install -Dm644 /dev/stdin "$modulesdir/pkgbase"
2020-02-16 02:56:27 +00:00
echo "Installing modules..."
make INSTALL_MOD_PATH="$pkgdir/usr" INSTALL_MOD_STRIP=1 modules_install
# remove build and source links
rm "$modulesdir"/{source,build}
}
_package-headers() {
pkgdesc="Headers and scripts for building modules for the $pkgdesc kernel"
provides=("linux-headers=${_shortver}")
cd $_srcname
local builddir="$pkgdir/usr/lib/modules/$(<version)/build"
2020-02-16 02:56:27 +00:00
echo "Installing build files..."
install -Dt "$builddir" -m644 .config Makefile Module.symvers System.map \
localversion.* version vmlinux
install -Dt "$builddir/kernel" -m644 kernel/Makefile
install -Dt "$builddir/arch/x86" -m644 arch/x86/Makefile
cp -t "$builddir" -a scripts
# add objtool for external module building and enabled VALIDATION_STACK option
install -Dt "$builddir/tools/objtool" tools/objtool/objtool
# add xfs and shmem for aufs building
mkdir -p "$builddir"/{fs/xfs,mm}
2020-02-16 02:56:27 +00:00
echo "Installing headers..."
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
install -Dt "$builddir/drivers/md" -m644 drivers/md/*.h
install -Dt "$builddir/net/mac80211" -m644 net/mac80211/*.h
# http://bugs.archlinux.org/task/13146
install -Dt "$builddir/drivers/media/i2c" -m644 drivers/media/i2c/msp3400-driver.h
# http://bugs.archlinux.org/task/20402
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
2020-02-16 02:56:27 +00:00
echo "Installing KConfig files..."
find . -name 'Kconfig*' -exec install -Dm644 {} "$builddir/{}" \;
2020-02-16 02:56:27 +00:00
echo "Removing unneeded architectures..."
local arch
for arch in "$builddir"/arch/*/; do
[[ $arch = */x86/ ]] && continue
echo "Removing $(basename "$arch")"
rm -r "$arch"
done
2020-02-16 02:56:27 +00:00
echo "Removing documentation..."
rm -r "$builddir/Documentation"
2020-02-16 02:56:27 +00:00
echo "Removing broken symlinks..."
find -L "$builddir" -type l -printf 'Removing %P\n' -delete
2020-02-16 02:56:27 +00:00
echo "Removing loose objects..."
find "$builddir" -type f -name '*.o' -printf 'Removing %P\n' -delete
2020-02-16 02:56:27 +00:00
echo "Stripping build tools..."
local file
while read -rd '' file; do
case "$(file -bi "$file")" in
application/x-sharedlib\;*) # Libraries (.so)
strip -v $STRIP_SHARED "$file" ;;
application/x-archive\;*) # Libraries (.a)
strip -v $STRIP_STATIC "$file" ;;
application/x-executable\;*) # Binaries
strip -v $STRIP_BINARIES "$file" ;;
application/x-pie-executable\;*) # Relocatable binaries
strip -v $STRIP_SHARED "$file" ;;
esac
done < <(find "$builddir" -type f -perm -u+x ! -name vmlinux -print0)
echo "Stripping vmlinux..."
strip -v $STRIP_STATIC "$builddir/vmlinux"
2020-02-16 02:56:27 +00:00
echo "Adding symlink..."
mkdir -p "$pkgdir/usr/src"
ln -sr "$builddir" "$pkgdir/usr/src/$pkgbase"
}
pkgname=("$pkgbase" "$pkgbase-headers")
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: