mirror of
https://git.proxmox.com/git/pve-kernel-meta
synced 2025-04-28 21:32:46 +00:00
16 lines
339 B
Bash
Executable File
16 lines
339 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# Abort if any command returns an error value
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
# setup kernel links for installation CD (rescue boot)
|
|
mkdir -p /boot/pve
|
|
ln -sf /boot/vmlinuz-@KERNEL_ABI@ /boot/pve/vmlinuz-@KERNEL_VER@
|
|
ln -sf /boot/initrd.img-@KERNEL_ABI@ /boot/pve/initrd.img-@KERNEL_VER@
|
|
;;
|
|
esac
|
|
|
|
exit 0
|