blob: 944593610d299f5bfb59f5f92cb61504f4c37189 (
plain) (
blame)
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
|
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=easy-kernel
pkgver=4.14.0
pkgrel=0
pkgdesc="The Linux kernel, packaged for your convenience"
url="https://kernel.org/"
arch="all"
options="!check !dbg !strip"
license="GPL-2.0"
depends=""
makedepends="lzop openssl-dev"
install=""
subpackages="$pkgname-modules $pkgname-src"
source="https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz
https://distfiles.adelielinux.org/source/linux-4.14-mc0.patch.xz
config-x86_64"
builddir="$srcdir/linux-4.14"
prepare() {
default_prepare
cd "$srcdir"
cat linux-4.14-mc0.patch.xz | unxz -> linux-4.14-mc0.patch
cd "$builddir"
patch -Np1 <../linux-4.14-mc0.patch
cd "$srcdir"
cp config-$CARCH linux-4.14/.config
cp -pr linux-4.14 linux-src
}
build() {
cd "$builddir"
make
}
package() {
cd "$builddir"
mkdir -p "$pkgdir"/boot
make INSTALL_PATH="$pkgdir"/boot \
INSTALL_MOD_PATH="$pkgdir" \
install modules_install
}
modules() {
pkgdesc="Modules / device drivers for easy-kernel"
mkdir -p "$subpkgdir"/lib
mv "$pkgdir"/lib/modules "$subpkgdir"/lib/
}
src() {
pkgdesc="Kernel source code used to build THIS kernel"
mkdir -p "$subpkgdir"/usr/src
mv "$srcdir"/linux-src "$subpkgdir"/usr/src/linux
}
sha512sums="77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 linux-4.14.tar.xz
6a119b2e01e4cc11911c1151cffb068f2a42bd986b280bee44c714879d8ee7dcebf2de51a9bc64c1915964867e98d438c09db89c1d7bd3a98ed845924ee11cfa linux-4.14-mc0.patch.xz
8e8520cc5ae96b55d498462fd4c321c886870f8ad90ae681613216a01c1bfbbc86a3cd6f805a5f1271f1f9685632be0e3fafd932e08568b368fb39fb8abc63b8 config-x86_64"
|