mirror of
https://github.com/ps5-linux/ps5-linux-image.git
synced 2026-07-15 21:42:27 +00:00
Initial commit
This commit is contained in:
1
boot/cmdline.txt
Normal file
1
boot/cmdline.txt
Normal file
@@ -0,0 +1 @@
|
||||
root=LABEL=__DISTRO__ rw rootwait console=ttyTitania0 console=tty0 video=DP-1:1920x1080@60 mitigations=off idle=halt rootfstype=ext4
|
||||
6
boot/kexec-alpine.sh
Normal file
6
boot/kexec-alpine.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/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
|
||||
6
boot/kexec-arch.sh
Normal file
6
boot/kexec-arch.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
# Switch to Arch Linux via kexec
|
||||
set -e
|
||||
BOOT=/boot/efi
|
||||
kexec -l "$BOOT/bzImage" --initrd="$BOOT/initrd-arch.img" --command-line="$(cat $BOOT/cmdline-arch.txt)"
|
||||
kexec -e
|
||||
6
boot/kexec-ubuntu.sh
Normal file
6
boot/kexec-ubuntu.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
# Switch to Ubuntu via kexec
|
||||
set -e
|
||||
BOOT=/boot/efi
|
||||
kexec -l "$BOOT/bzImage" --initrd="$BOOT/initrd-ubuntu.img" --command-line="$(cat $BOOT/cmdline-ubuntu.txt)"
|
||||
kexec -e
|
||||
6
boot/kexec-ubuntu2604.sh
Executable file
6
boot/kexec-ubuntu2604.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/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
|
||||
1
boot/vram.txt
Normal file
1
boot/vram.txt
Normal file
@@ -0,0 +1 @@
|
||||
0x20000000
|
||||
Reference in New Issue
Block a user