Initial commit

This commit is contained in:
2026-03-03 19:53:38 -05:00
parent 64e854364b
commit bfd1006698
82 changed files with 9540 additions and 0 deletions

14
buildtools/customchroot Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# customchroot - Modify a stock SystemRescueCD
# Set up the chroot environment
for vfs in proc dev sys; do
mkdir -p /mnt/custom/customcd/files/$vfs
mount -o bind /$vfs /mnt/custom/customcd/files/$vfs
done
echo "Entering chroot environment. Type exit to leave."
chroot /mnt/custom/customcd/files /bin/bash
for vfs in proc dev sys; do
umount /mnt/custom/customcd/files/$vfs
done