mirror of
https://github.com/archlinux/aur.git
synced 2026-02-08 21:43:04 +01:00
Sync with CachyOS
Signed-off-by: Piotr Gorski <lucjan.lucjanov@gmail.com>
This commit is contained in:
parent
17268f138c
commit
6472ae83e7
2 changed files with 10 additions and 6 deletions
2
.SRCINFO
2
.SRCINFO
|
|
@ -1,7 +1,7 @@
|
|||
pkgbase = linux-cachyos-eevdf
|
||||
pkgdesc = Linux EEVDF scheduler + Cachy Sauce Kernel by CachyOS with other patches and improvements
|
||||
pkgver = 6.15.4
|
||||
pkgrel = 1
|
||||
pkgrel = 2
|
||||
url = https://github.com/CachyOS/linux-cachyos
|
||||
arch = x86_64
|
||||
license = GPL-2.0-only
|
||||
|
|
|
|||
14
PKGBUILD
14
PKGBUILD
|
|
@ -150,7 +150,7 @@ _stable=${_major}.${_minor}
|
|||
_srcname=linux-${_stable}
|
||||
#_srcname=linux-${_major}
|
||||
pkgdesc='Linux EEVDF scheduler + Cachy Sauce Kernel by CachyOS with other patches and improvements'
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
_kernver="$pkgver-$pkgrel"
|
||||
_kernuname="${pkgver}-${_pkgsuffix}"
|
||||
arch=('x86_64')
|
||||
|
|
@ -174,7 +174,7 @@ makedepends=(
|
|||
)
|
||||
|
||||
_patchsource="https://raw.githubusercontent.com/cachyos/kernel-patches/master/${_major}"
|
||||
_nv_ver=575.64
|
||||
_nv_ver=575.64.03
|
||||
_nv_pkg="NVIDIA-Linux-x86_64-${_nv_ver}"
|
||||
_nv_open_pkg="NVIDIA-kernel-module-source-${_nv_ver}"
|
||||
source=(
|
||||
|
|
@ -308,7 +308,7 @@ prepare() {
|
|||
|
||||
if ! _is_lto_kernel; then
|
||||
echo "Enabling QR Code Panic for GCC Kernels"
|
||||
scripts/config --set-str DRM_PANIC_SCREEN qr-code -e DRM_PANIC_SCREEN_QR_CODE \
|
||||
scripts/config --set-str DRM_PANIC_SCREEN qr_code -e DRM_PANIC_SCREEN_QR_CODE \
|
||||
--set-str DRM_PANIC_SCREEN_QR_CODE_URL https://panic.archlinux.org/panic_report# \
|
||||
--set-val CONFIG_DRM_PANIC_SCREEN_QR_VERSION 40
|
||||
fi
|
||||
|
|
@ -582,9 +582,13 @@ _package-headers() {
|
|||
echo "Installing KConfig files..."
|
||||
find . -name 'Kconfig*' -exec install -Dm644 {} "$builddir/{}" \;
|
||||
|
||||
if ! _is_lto_kernel; then
|
||||
echo "Installing Rust files..."
|
||||
# Install .rmeta files if they exist
|
||||
if compgen -G "rust/*.rmeta" 1>/dev/null; then
|
||||
install -Dt "$builddir/rust" -m644 rust/*.rmeta
|
||||
fi
|
||||
|
||||
# Install .so files if they exist
|
||||
if compgen -G "rust/*.so" 1>/dev/null; then
|
||||
install -Dt "$builddir/rust" rust/*.so
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue