Files
ps5-linux-image/boot/kexec-ubuntu2604.sh
2026-04-26 10:25:41 +02:00

7 lines
193 B
Bash
Executable File

#!/bin/sh
# Switch to Ubuntu 26.04 via kexec
set -e
BOOT=/boot/efi
kexec -l "$BOOT/bzImage" --initrd="$BOOT/initrd-ubuntu2604.img" --command-line="$(cat $BOOT/cmdline-ubuntu2604.txt)"
kexec -e