Linux V 6.13.4

This commit is contained in:
2025-02-23 17:26:44 +01:00
parent 9d7fd9961c
commit 04b74e69f0
7 changed files with 12021 additions and 11 deletions

View File

@@ -2,7 +2,7 @@
# copied from Jan Alexander Steffens (heftig) <heftig@archlinux.org>
pkgbase=linux-tom
pkgver=6.13.3.arch1
pkgver=6.13.4.arch1
pkgrel=1
pkgdesc='Linux'
url='https://github.com/archlinux/linux'
@@ -84,6 +84,8 @@ prepare() {
done
echo "Setting config..."
# cp ../config .config
cfgver=../../config-${pkgver%.*}
if test -f "${cfgver}"
then
@@ -94,12 +96,16 @@ prepare() {
echo "copy original config file, ${cfgver} does not exist."
cp ../config .config
fi
make olddefconfig
# diff -u ../config .config || :
# this and next line is added by me, Thomas Kuschel oe3tkt
read -p "Press enter to continue with menuconfig"
make menuconfig
diff -u ../config .config | tee "../../config-${pkgver%.*}.patch" || :
cp .config "../../config-${pkgver%.*}"
make -s kernelrelease > version
echo "Prepared $pkgbase version $(<version)"
}
@@ -265,3 +271,5 @@ for _p in "${pkgname[@]}"; do
_package${_p#$pkgbase}
}"
done
# vim:set ts=8 sts=2 sw=2 et: