Revert "PKGBUILD: apply extra uarches patch even when defconfig is copied"
This reverts commit 6da003f220
.
This commit is contained in:
parent
ce9c9a0c58
commit
795a54ebd2
1 changed files with 5 additions and 5 deletions
10
PKGBUILD
10
PKGBUILD
|
@ -201,11 +201,6 @@ apply_patches() {
|
||||||
|
|
||||||
patch -Np1 -i "${srcdir}/cl-linux/${i}" || true
|
patch -Np1 -i "${srcdir}/cl-linux/${i}" || true
|
||||||
done
|
done
|
||||||
|
|
||||||
# Patch with kernel_compiler_patch patches.
|
|
||||||
# Do this before any defconfig invocations so we
|
|
||||||
# have all of the extra selectable uarches ready and selectable
|
|
||||||
patch -Np1 -i "$srcdir/kernel_compiler_patch-$_kernelcompilerpatch/more-ISA-levels-and-uarches-for-kernel-6.1.79+.patch"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Allows user to modify the kernel config
|
# Allows user to modify the kernel config
|
||||||
|
@ -324,6 +319,11 @@ update_defconfig() {
|
||||||
make ${BUILD_FLAGS[*]} olddefconfig
|
make ${BUILD_FLAGS[*]} olddefconfig
|
||||||
diff -u $srcdir/cl-linux/config .config || :
|
diff -u $srcdir/cl-linux/config .config || :
|
||||||
|
|
||||||
|
# Patch with kernel_compiler_patch patches
|
||||||
|
# This must be executed after olddefconfig
|
||||||
|
# to allow for the next section to run.
|
||||||
|
patch -Np1 -i "$srcdir/kernel_compiler_patch-$_kernelcompilerpatch/more-ISA-levels-and-uarches-for-kernel-6.1.79+.patch"
|
||||||
|
|
||||||
# Set subarch automatically
|
# Set subarch automatically
|
||||||
if [ -n "${_subarch}" ]; then
|
if [ -n "${_subarch}" ]; then
|
||||||
if [ "${_subarch}" == "41" ]; then
|
if [ "${_subarch}" == "41" ]; then
|
||||||
|
|
Loading…
Reference in a new issue