diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b87c5e4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,12 @@ +Copyright Arch Linux Contributors + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE +FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY +DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN +AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/LICENSES/0BSD.txt b/LICENSES/0BSD.txt new file mode 120000 index 0000000..ea5b606 --- /dev/null +++ b/LICENSES/0BSD.txt @@ -0,0 +1 @@ +../LICENSE \ No newline at end of file diff --git a/PKGBUILD b/PKGBUILD index 44b147e..59147bf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,11 +2,13 @@ # copied from Jan Alexander Steffens (heftig) pkgbase=linux-tom -pkgver=6.18.8.arch2 +pkgver=6.19.6.arch1 pkgrel=1 pkgdesc='Linux' url='https://github.com/archlinux/linux' -arch=(x86_64) +arch=( + x86_64 +) license=(GPL-2.0-only) makedepends=( bc @@ -46,24 +48,24 @@ _srctag=v${pkgver%.*}-${pkgver##*.} source=( https://cdn.kernel.org/pub/linux/kernel/v${pkgver%%.*}.x/${_srcname}.tar.{xz,sign} $url/releases/download/$_srctag/linux-$_srctag.patch.zst{,.sig} - config # the main kernel config file ) +source_x86_64=(config.x86_64) validpgpkeys=( ABAF11C65A2970B130ABE3C479BE3E4300411886 # Linus Torvalds 647F28654894E3BD457199BE38DBBDC86092693E # Greg Kroah-Hartman 83BC8889351B5DEBBB68416EB8AC08600F108CDF # Jan Alexander Steffens (heftig) ) +b2sums=('SKIP' + 'SKIP' + 'SKIP' + 'SKIP') +b2sums_x86_64=('SKIP') + # https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc sha256sums=('SKIP' - 'SKIP' 'SKIP' 'SKIP' 'SKIP') -b2sums=('SKIP' - 'SKIP' - 'SKIP' - 'SKIP' - 'SKIP') export KBUILD_BUILD_HOST=archlinux export KBUILD_BUILD_USER=$pkgbase @@ -88,27 +90,27 @@ prepare() { done echo "Setting config..." - # cp ../config .config + # cp ../config.$CARCH .config - cfgver=../../config-${pkgver%.*} + cfgver=../../config-${pkgver%.*}.$CARCH if test -f "${cfgver}" then echo "${cfgver} exists." cp "${cfgver}" .config echo ".config now has the content of ${cfgver}" else - echo "copy original config file, ${cfgver} does not exist." - cp ../config .config + echo "copy original config.$CARCH file, ${cfgver} does _not_ exist!" + cp ../config.$CARCH .config fi make olddefconfig - # diff -u ../config .config || : + # diff -u ../config.$CARCH .config || : # this and next line is added by me, Thomas Kuschel oe3tkt read -p "Press enter to continue with nconfig (former menuconfig)" make nconfig - diff -u ../config .config | tee "../../config-${pkgver%.*}.patch" || : - cp .config "../../config-${pkgver%.*}" + diff -u ../config.$CARCH .config | tee "../../config-${pkgver%.*}.$CARCH.patch" || : + cp .config "../../config-${pkgver%.*}.$CARCH" make -s kernelrelease > version echo "Prepared $pkgbase version $(