kernel update

This commit is contained in:
Maxim Devaev 2024-03-13 21:36:43 +02:00
parent 3ee1fba0d0
commit 1883da42a5
5 changed files with 8 additions and 5 deletions

View File

@ -200,7 +200,7 @@ for _variant in "${_variants[@]}"; do
cd \"kvmd-\$pkgver\" cd \"kvmd-\$pkgver\"
pkgdesc=\"PiKVM platform configs - $_platform for $_board\" pkgdesc=\"PiKVM platform configs - $_platform for $_board\"
depends=(kvmd=$pkgver-$pkgrel \"linux-rpi-pikvm>=5.15.68-3\") depends=(kvmd=$pkgver-$pkgrel \"linux-rpi-pikvm>=6.6.21-3\")
backup=( backup=(
etc/sysctl.d/99-kvmd.conf etc/sysctl.d/99-kvmd.conf

View File

@ -19,4 +19,4 @@ dtoverlay=spi0-1cs
dtparam=i2c_arm=on dtparam=i2c_arm=on
# Clock # Clock
dtoverlay=i2c-rtc,pcf8563 dtoverlay=i2c-rtc,pcf8563,wakeup-source

View File

@ -18,4 +18,4 @@ dtoverlay=tc358743-audio
dtparam=i2c_arm=on dtparam=i2c_arm=on
# Clock # Clock
dtoverlay=i2c-rtc,pcf8563 dtoverlay=i2c-rtc,pcf8563,wakeup-source

View File

@ -22,4 +22,4 @@ disable_overscan=1
dtparam=i2c_arm=on dtparam=i2c_arm=on
# Clock # Clock
dtoverlay=i2c-rtc,pcf8563 dtoverlay=i2c-rtc,pcf8563,wakeup-source

View File

@ -56,7 +56,7 @@ post_upgrade() {
echo "==> Patching configs ..." echo "==> Patching configs ..."
if [[ "$(vercmp "$1" 3.301)" -lt 0 ]]; then if [[ "$(vercmp "$2" 3.301)" -lt 0 ]]; then
[ ! -f /etc/fstab ] || (sed -i -e "s|,data=journal||g" /etc/fstab && touch -t 200701011000 /etc/fstab) [ ! -f /etc/fstab ] || (sed -i -e "s|,data=journal||g" /etc/fstab && touch -t 200701011000 /etc/fstab)
[ ! -f /etc/fstab ] || (sed -i -e "/tmpfs \/run\s/d" /etc/fstab && touch -t 200701011000 /etc/fstab) [ ! -f /etc/fstab ] || (sed -i -e "/tmpfs \/run\s/d" /etc/fstab && touch -t 200701011000 /etc/fstab)
[ ! -f /etc/pacman.conf ] || sed -i -e "s|^Server = https://pikvm.org/repos/|Server = https://files.pikvm.org/repos/arch/|g" /etc/pacman.conf [ ! -f /etc/pacman.conf ] || sed -i -e "s|^Server = https://pikvm.org/repos/|Server = https://files.pikvm.org/repos/arch/|g" /etc/pacman.conf
@ -67,6 +67,9 @@ post_upgrade() {
[ ! -f /etc/pam.d/system-auth ] || sed -i -e '/\<pam_systemd_home\.so\>/ s/^#*/#/' /etc/pam.d/system-auth [ ! -f /etc/pam.d/system-auth ] || sed -i -e '/\<pam_systemd_home\.so\>/ s/^#*/#/' /etc/pam.d/system-auth
[ -e /etc/systemd/network/99-default.link ] || ln -s /dev/null /etc/systemd/network/99-default.link [ -e /etc/systemd/network/99-default.link ] || ln -s /dev/null /etc/systemd/network/99-default.link
fi fi
if [[ "$(vercmp "$2" 3.317)" -lt 0 ]]; then
[ ! -f /boot/config.txt ] || sed -i -e 's/^dtoverlay=i2c-rtc,pcf8563$/dtoverlay=i2c-rtc,pcf8563,wakeup-source/g' /boot/config.txt
fi
# Some update deletes /etc/motd, WTF # Some update deletes /etc/motd, WTF
# shellcheck disable=SC2015,SC2166 # shellcheck disable=SC2015,SC2166