default to 6.8 kernel

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2024-04-17 07:27:59 +02:00
parent 98b46d24ce
commit 12714e2c7c
2 changed files with 4 additions and 4 deletions

4
debian/control vendored
View File

@ -11,7 +11,7 @@ Architecture: all
Section: admin
Provides: pve-headers
Priority: optional
Depends: proxmox-headers-6.5,
Depends: proxmox-headers-6.8,
${misc:Depends}
Description: Default Proxmox Kernel Headers
This is a metapackage which will install the kernel headers for the default
@ -21,7 +21,7 @@ Package: proxmox-default-kernel
Architecture: all
Section: admin
Priority: optional
Depends: proxmox-kernel-6.5,
Depends: proxmox-kernel-6.8,
${misc:Depends}
Description: Default Proxmox Kernel Image
This is a metapackage which will install the kernel image for the default

View File

@ -7,8 +7,8 @@ case "$1" in
configure)
# setup kernel links for installation CD (rescue boot)
mkdir -p /boot/pve || true
ln -sf /boot/pve/vmlinuz-6.5 /boot/pve/vmlinuz || true
ln -sf /boot/pve/initrd.img-6.5 /boot/pve/initrd.img || true
ln -sf /boot/pve/vmlinuz-6.8 /boot/pve/vmlinuz || true
ln -sf /boot/pve/initrd.img-6.8 /boot/pve/initrd.img || true
;;
esac