It's been a hot minute ok..

This commit is contained in:
2026-03-05 02:35:28 -08:00
parent 86538fe574
commit 7d499ebb72
4 changed files with 11 additions and 2 deletions
+1 -1
View File
@@ -2,4 +2,4 @@ Types: deb
URIs: https://cdn.oxmc.me/apt
Suites: RELEASE
Components: main
Signed-By: /usr/share/keyrings/oxmc.gpg
Signed-By: /usr/share/keyrings/oxmc.pgp
+6 -1
View File
@@ -1,8 +1,13 @@
#!/bin/bash -e
install -v -m 644 files/fstab "${ROOTFS_DIR}/etc/fstab"
install -m 755 files/system-readonly "${ROOTFS_DIR}/sbin/"
if [ "${ARCH}" = "amd64" ]; then
install -m 644 files/fstab-amd64 "${ROOTFS_DIR}/etc/fstab"
elif [ "${ARCH}" = "arm64" ]; then
install -m 644 files/fstab-rpi "${ROOTFS_DIR}/etc/fstab"
fi
on_chroot << EOF
# Create a system user
useradd -r -M -d / system
+4
View File
@@ -0,0 +1,4 @@
proc /proc proc defaults 0 0
BOOTDEV /boot vfat defaults 0 2
EFIDEV /boot/efi vfat defaults 0 2
ROOTDEV / ext4 defaults,noatime 0 1