mirror of
https://github.com/ps5-linux/ps5-linux-image.git
synced 2026-07-15 21:42:27 +00:00
7 lines
193 B
Bash
Executable File
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
|