Update main.sh
This commit is contained in:
parent
99370134de
commit
ef78270dd0
23
main.sh
23
main.sh
@ -1,17 +1,16 @@
|
||||
#! /bin/bash
|
||||
DRIVER=535
|
||||
|
||||
apt show nvidia-driver-$DRIVER 2>&1 | grep -v "does not have a stable" | grep Version: | head -n1 | cut -f2 -d":" | tr -d ' ' > ./linux-nvidia-modules/pika_nvidia.txt
|
||||
|
||||
rm -rfv /etc/apt/preferences.d/*
|
||||
echo 'Package: *' > /etc/apt/preferences.d/0-a
|
||||
echo 'Pin: release c=main' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Pin-Priority: 390' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Package: *' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Pin: release c=external' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Pin-Priority: 390' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Pin: release c=external' > /etc/apt/preferences.d/0-a
|
||||
echo 'Pin-Priority: 1000' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Package: *' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Pin: release c=ubuntu' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Pin-Priority: 390' >> /etc/apt/preferences.d/0-a
|
||||
echo 'Pin-Priority: 1000' >> /etc/apt/preferences.d/0-a
|
||||
apt update -y
|
||||
apt show nvidia-driver-$DRIVER 2>&1 | grep -v "does not have a stable" | grep Version: | head -n1 | cut -f2 -d":" | cut -f1,2,3 -d"." | cut -f1 -d"-" | tr -d ' ' > ./linux-nvidia-modules/new_nvidia.txt
|
||||
echo "$(apt show nvidia-driver-$DRIVER 2>&1 | grep -v "does not have a stable" | grep Version: | head -n1 | cut -f2 -d":" | cut -f1,2,3 -d"." | cut -f1 -d"-" | tr -d ' ')" > ./linux-nvidia-modules/DRIVER
|
||||
echo "$(apt show kernel-pika 2>&1 | grep -v "does not have a stable" | grep Depends: | head -n1 | cut -f2 -d":" | cut -f1 -d"," | cut -f3,4 -d"-" | tr -d ' ')" > ./linux-nvidia-modules/KERNEL
|
||||
echo "$(apt show nvidia-kernel-source-$DRIVER 2>&1 | grep -v "does not have a stable" | grep Version: | head -n1 | cut -f2 -d":" | tr -d ' ')" > ./linux-nvidia-modules/DRIVER_VERSION
|
||||
@ -23,13 +22,17 @@ VERSION="$(cat ./DRIVER)-$(cat ./KERNEL)-100pika5"
|
||||
|
||||
echo -e "linux-nvidia-modules ("$VERSION") pikauwu; urgency=medium\n\n * New Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
|
||||
|
||||
if echo $VERSION | grep $(cat ./DRIVER_PIKA)
|
||||
if echo $VERSION | grep -v "$(cat ./pika_nvidia.txt)"
|
||||
then
|
||||
echo "Driver up to date"
|
||||
echo "driver already built"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo -e "linux-nvidia-modules ("$VERSION") pikauwu; urgency=medium\n\n * New Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
|
||||
|
||||
if cat ./pika_nvidia.txt | grep "$(cat ./new_nvidia.txt)"
|
||||
echo "driver up to date"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo -e "Source: linux-nvidia-modules\nSection: graphics\nPriority: optional\nMaintainer: Ward Nakchbandi <hotrod.master@hotmail.com>\nStandards-Version: 4.6.1\nBuild-Depends: debhelper-compat (= 13), linux-image-$(cat ./KERNEL), linux-headers-$(cat ./KERNEL), dkms, fakeroot\nRules-Requires-Root: no\n\nPackage: linux-modules-nvidia-$DRIVER-$(cat ./KERNEL)\nArchitecture: linux-any\nDepends: linux-image-$(cat ./KERNEL), linux-headers-$(cat ./KERNEL), $(apt-cache show nvidia-dkms-$DRIVER | grep Depends: | head -n1 | cut -f2 -d":")\nConflicts: nvidia-6.5.0-pikaos-module-535, nvidia-$(cat ./KERNEL)-module-$DRIVER, "$(apt list 2>/dev/null | cut -d'/' -f1 | grep linux-modules-nvidia | grep $(cat ./KERNEL) | grep -v linux-modules-nvidia-$DRIVER-$(cat ./KERNEL) | sed ':a;N;$!ba;s/\n/, /g')", nvidia-dkms-$DRIVER (= $(cat DRIVER_VERSION))\nProvides: linux-modules-nvidia-$(cat ./KERNEL), nvidia-dkms-$DRIVER (= $(cat DRIVER_VERSION))\nReplaces: nvidia-dkms-$DRIVER (= $(cat DRIVER_VERSION))\nDescription: Prebuilt Nvidia module for PikaOS kernel\n\nPackage: nvidia-pika-kernel-module-$DRIVER\nArchitecture: linux-any\nDepends: linux-modules-nvidia-$DRIVER-$(cat ./KERNEL) $(echo '(= ${binary:Version})')\nDescription: DKMS NVIDIA PLACEHOLDER" > ./debian/control
|
||||
echo -e "usr" > ./debian/linux-modules-nvidia-$DRIVER-$(cat ./KERNEL).install
|
||||
|
Loading…
Reference in New Issue
Block a user