got some of the pty actually working in userspace

This commit is contained in:
2026-07-12 03:56:25 -05:00
parent 992ffd1f6b
commit 3c6fd8cb65
16 changed files with 140 additions and 147 deletions

View File

@@ -1,14 +1,14 @@
#!/bin/bash
mkdir -p initrd
rm -f initrd/*.elf
rm -f initrd/bin/*.elf
cp programs/bin/* initrd
mkdir -p initrd/dev
mkdir -p initrd/bin
cp programs/bin/* initrd/bin
cd initrd
mkdir -p dev
mkdir -p output
find . -depth -print | cpio -o -H newc > output/initrd.img
find . -depth -print | cpio -o -H newc > ../initrd.img
cd ..
cp initrd/output/*.img isodir/boot
cp initrd.img isodir/boot