From 7cc715c1249422ddf91987be64a35eef43e3e62d Mon Sep 17 00:00:00 2001 From: davidovski Date: Thu, 14 Apr 2022 22:28:41 +0100 Subject: added auto create file --- repo/linux/linux-src.xibuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 repo/linux/linux-src.xibuild (limited to 'repo/linux/linux-src.xibuild') diff --git a/repo/linux/linux-src.xibuild b/repo/linux/linux-src.xibuild new file mode 100644 index 0000000..d4d704e --- /dev/null +++ b/repo/linux/linux-src.xibuild @@ -0,0 +1,33 @@ +#!/bin/sh + +MAKEDEPS="make bc" +DEPS="sbase kmod" + +PKG_VER=5.17.2 +SOURCE=https://cdn.kernel.org/pub/linux/kernel/v${PKG_VER%%.*}.x/linux-$PKG_VER.tar.xz +ADDITIONAL=" + fix-sbase-coreutils.patch + config +" + +DESC="The latest linux kernel (source)" + +prepare () { + rm linux-$PKG_VER.tar.xz + apply_patches + + make mrproper + make headers + + mv config .config + make olddefconfig + make -s kernelrelease > version +} + +package () { + local kernver="$(cat version)" + srcdir=$PKG_DEST/usr/src/linux + mkdir -p $srcdir + cp -r ./ $srcdir/ +} + -- cgit v1.2.1