diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-05-26 01:23:53 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-05-26 19:28:37 +0200 |
commit | 28d9b73dcbae486c81a534f7ecb86c3e11763737 (patch) | |
tree | 869988d28e5397b9a64324472335d94a3dc82563 /libre/linux-libre-64/PKGBUILD | |
parent | 7c43008244329989d73b180631199397857077b5 (diff) | |
download | abslibre-28d9b73dcbae486c81a534f7ecb86c3e11763737.tar.gz abslibre-28d9b73dcbae486c81a534f7ecb86c3e11763737.tar.bz2 abslibre-28d9b73dcbae486c81a534f7ecb86c3e11763737.zip |
libre: linux-libre-64: temporarily disable the chromebook package
Note that even if it fixes packaging, in some case the
compiler segfauls. In that case you need to restart the
build until it succeddeds, which is usually around 1 or 2
times when you're unlucky.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'libre/linux-libre-64/PKGBUILD')
-rw-r--r-- | libre/linux-libre-64/PKGBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libre/linux-libre-64/PKGBUILD b/libre/linux-libre-64/PKGBUILD index c5a2c0e68..214394e0a 100644 --- a/libre/linux-libre-64/PKGBUILD +++ b/libre/linux-libre-64/PKGBUILD @@ -9,7 +9,7 @@ _replacesoldmodules=() # '%' gets replaced with kernel suffix pkgbase=linux-libre-64 pkgver=5.6.12 -pkgrel=3 +pkgrel=4 pkgdesc='64bit Linux-libre for Parabola $CARCH' rcnver=5.6.10 rcnrel=armv7-x12 @@ -374,7 +374,11 @@ _package-chromebook() { } pkgname=("$pkgbase" "$pkgbase-headers" "$pkgbase-docs") -[[ $CARCH = armv7h ]] && pkgname+=("$pkgbase-chromebook") +# The chromebook package is disabled until the following error is fixed: +# | ==> Starting package_linux-libre-64-chromebook()... +# | FATAL ERROR: Couldn't open "arch/arm/boot/zImage": No such file or directory +# | mkimage: Can't read kernel.signed.tmp: Invalid argument +# [[ $CARCH = armv7h ]] && pkgname+=("$pkgbase-chromebook") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") |