mirror of
https://github.com/ps5-linux/ps5-linux-tools.git
synced 2026-07-15 21:42:26 +00:00
11 lines
199 B
Bash
Executable File
11 lines
199 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
CMDLINE=$(cat /boot/efi/cmdline.txt)
|
|
VMLINUZ=/boot/efi/bzImage
|
|
INITRD=/boot/efi/initrd.img
|
|
|
|
kexec -l "$VMLINUZ" --initrd="$INITRD" --append="$CMDLINE"
|
|
systemctl kexec -i
|