]> git.proxmox.com Git - pve-kernel-meta.git/commitdiff
default to 6.8 kernel
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 17 Apr 2024 05:27:59 +0000 (07:27 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 17 Apr 2024 05:28:40 +0000 (07:28 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
debian/control
debian/proxmox-default-kernel.postinst

index c4d909dad652e2760f8b237c535de04e348b9000..51ca0d495765b75efcb4aaaad7ced412e1677a16 100644 (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
index c7d127097d342dda12d2a02147382195b9cccd53..53fd72b76dab41a1e1a38e2a2e27fb138336464d 100755 (executable)
@@ -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