mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-25 21:07:05 +00:00
12 lines
198 B
Bash
Executable File
12 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
test -x /usr/bin/bootctl || exit 0
|
|
|
|
bootctl is-installed --quiet || exit 0
|
|
|
|
echo "Updating kernel version $1 in systemd-boot..."
|
|
|
|
kernel-install add "$1" "/boot/vmlinuz-$1" "$2"
|