You've already forked ps5-linux-image
mirror of
https://github.com/ps5-linux/ps5-linux-image.git
synced 2026-04-29 16:42:45 -07:00
7 lines
185 B
Bash
7 lines
185 B
Bash
#!/bin/sh
|
|
# Switch to Alpine Linux via kexec
|
|
set -e
|
|
BOOT=/boot/efi
|
|
kexec -l "$BOOT/bzImage" --initrd="$BOOT/initrd-alpine.img" --command-line="$(cat $BOOT/cmdline-alpine.txt)"
|
|
kexec -e
|