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
Add more default packages and adjust fstab.
This commit is contained in:
+1
-1
@@ -1 +1 @@
|
||||
root=LABEL=__DISTRO__ rootfstype=ext4 rw rootwait console=ttyTitania0 console=tty0 video=DP-1:1920x1080@60 mitigations=off idle=halt preempt=full
|
||||
root=LABEL=__DISTRO__ rw rootwait console=ttyTitania0 console=tty0 video=DP-1:1920x1080@60 mitigations=off idle=halt preempt=full
|
||||
|
||||
@@ -47,6 +47,14 @@ packages:
|
||||
- fonts-dejavu
|
||||
- fontconfig
|
||||
- systemd-zram-generator
|
||||
- git
|
||||
- flex
|
||||
- gawk
|
||||
- bison
|
||||
- dwarves
|
||||
- libelf-dev
|
||||
- libssl-dev
|
||||
- libncurses-dev
|
||||
action: install
|
||||
|
||||
files:
|
||||
|
||||
@@ -47,6 +47,14 @@ packages:
|
||||
- fonts-dejavu
|
||||
- fontconfig
|
||||
- systemd-zram-generator
|
||||
- git
|
||||
- flex
|
||||
- gawk
|
||||
- bison
|
||||
- dwarves
|
||||
- libelf-dev
|
||||
- libssl-dev
|
||||
- libncurses-dev
|
||||
action: install
|
||||
|
||||
files:
|
||||
|
||||
@@ -19,8 +19,13 @@ else
|
||||
mkdir -p "$STAGING/debs"
|
||||
cp /repo/distros/shared/zz-update-boot "$STAGING/"
|
||||
# Generate per-distro fstab with partition labels
|
||||
printf 'LABEL=%-14s / ext4 rw,relatime 0 1\nLABEL=%-14s /boot/efi vfat rw,relatime 0 2\n' \
|
||||
"$ROOT_LABEL" "$EFI_LABEL" > "$STAGING/fstab"
|
||||
cat <<EOF > "$STAGING/fstab"
|
||||
# /etc/fstab: static file system information.
|
||||
#
|
||||
# <file system> <mount point> <type> <options> <dump> <pass>
|
||||
LABEL=$ROOT_LABEL / ext4 defaults 0 1
|
||||
LABEL=$EFI_LABEL /boot/efi vfat defaults 0 1
|
||||
EOF
|
||||
cp /repo/distros/${DISTRO}/grow-rootfs "$STAGING/"
|
||||
cp /repo/distros/${DISTRO}/nm-dns.conf "$STAGING/" 2>/dev/null || true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user