blob: 35e5b4f51780110be647f6d68cbcd1be899d9c87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Maintainer: Alan Orth <aorth@mjanja.ch>
pkgdesc="Clear Linux kernel and modules in binary"
url="https://github.com/clearlinux-pkgs/linux"
pkgname=linux-clear-bin
# check org.clearlinux.native.X.Y.Z in Manifest
_major=6.2
_minor=11
_clr=1297
pkgver=${_major}.${_minor}.${_clr}
pkgrel=1
# use in case we need to update the Arch package without incrementing pkgrel
epoch=0
arch=('x86_64')
license=('GPL2')
depends=('coreutils' 'linux-firmware' 'kmod')
optdepends=(
'mkinitcpio>=0.7: to create custom init cpio'
'intel-ucode-clear: intel cpu and i915 firmware'
'linux-clear-headers-bin: header files for the kernel'
'crda: to set the correct wireless channels of your country'
)
provides=("WIREGUARD-MODULE")
options=('!strip')
# see: https://cdn.download.clearlinux.org/current/latest
_clear_version=38810
_kernel_version="${_major}.${_minor}-${_clr}.native"
source=("Manifest.kernel-native.${_clear_version}::https://cdn.download.clearlinux.org/update/${_clear_version}/Manifest.kernel-native"
"pack-kernel-native-from-0.${_clear_version}.tar::https://cdn.download.clearlinux.org/update/${_clear_version}/pack-kernel-native-from-0.tar"
)
build() {
# get kernel's filename (hash) from the Manifest, ie:
# 4776962fb058c91e89dcefac4740d7a1af37ea12d217d3f8d0f49797553146e7
local kernel=$(sed -n -re "s/^F.b.[[:space:]]+([a-f0-9]+)[[:space:]]+[[:digit:]]+[[:space:]]+\/usr\/lib\/kernel\/org.clearlinux.native.*$/\1/p" Manifest.kernel-native.${_clear_version})
local cmdline=$(sed -n -re "s/^F.b.[[:space:]]+([a-f0-9]+)[[:space:]]+[[:digit:]]+[[:space:]]+\/usr\/lib\/kernel\/cmdline.*$/\1/p" Manifest.kernel-native.${_clear_version})
local modules=$(sed -n -re "s/^F.b.[[:space:]]+([a-f0-9]+)[[:space:]]+[[:digit:]]+[[:space:]]+\/usr\/lib\/(modules.*)$/\1 \2/p" Manifest.kernel-native.${_clear_version})
cp staged/$kernel vmlinuz-${pkgname}
cp staged/$cmdline vmlinuz-${pkgname}.cmdline
echo 'module.sig_unenforce' >> vmlinuz-${pkgname}.cmdline
is_path=0
filename=''
for line in $modules; do
if [ $is_path = 0 ]; then
filename=$line
else
mkdir -p $line
rmdir $line
cp staged/$filename $line
fi
is_path=$(($is_path ^ 1))
done
}
package() {
local kernelname=${pkgname#linux}
local extramodules="extramodules$kernelname"
local modulesdir="$pkgdir/usr/lib/modules/$_kernel_version"
local extradir="$pkgdir/usr/lib/modules/$extramodules"
mkdir -p $pkgdir/usr/lib
mkdir -p $extradir
echo $_kernel_version > $extradir/version
chmod 644 $extradir/version
msg2 "Installing boot image..."
# systemd expects to find the kernel here to allow hibernation
# https://github.com/systemd/systemd/commit/edda44605f06a41fb86b7ab8128dcf99161d2344
install -Dm644 vmlinuz-${pkgname} "$modulesdir/vmlinuz"
install -Dm644 vmlinuz-${pkgname}.cmdline $pkgdir/boot/vmlinuz-${pkgname}.cmdline
# Used by mkinitcpio to name the kernel
echo "$pkgbase" | install -Dm644 /dev/stdin "$modulesdir/pkgbase"
msg2 "Installing modules..."
cp -r modules $pkgdir/usr/lib
msg2 "Fixing permissions..."
chmod -Rc u=rwX,go=rX "$pkgdir"
}
b2sums=('ca41f3af447b5538acd9263f9125d928d0d0c7a67c987d246b9bf6e60d99991b03e40042759698250a116b19d044f88106b4727909b2a2c0aef79e81c686fc87'
'3695945d79648ff801079b7840d70991b0258940fae0f77c8f70d1738a48c695082218d8408703e088c5632b3fb24768b56cbb6d3cba23e701f1797382236d41')
|