mirror of
https://github.com/ps5-linux/ps5-linux-image.git
synced 2026-07-16 01:50:40 +00:00
7 lines
193 B
Bash
7 lines
193 B
Bash
#!/bin/sh
|
|
# Switch to Ubuntu 24.04 via kexec
|
|
set -e
|
|
BOOT=/boot/efi
|
|
kexec -l "$BOOT/bzImage" --initrd="$BOOT/initrd-ubuntu2404.img" --command-line="$(cat $BOOT/cmdline-ubuntu2404.txt)"
|
|
kexec -e
|