1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-02-17 13:18:20 +00:00

added include to mkfs.c for linux

cleaned up set in assem
fixed rk3->rk0 in simh.cfg
This commit is contained in:
brad@heeltoe.com
2008-05-03 14:36:51 +00:00
parent aa16294b7f
commit ffc33b4b4c
3 changed files with 13 additions and 5 deletions

View File

@@ -22,12 +22,16 @@ for f in rebuilt/u?.s ; do
if [ $COLD = 1 ] ; then
sed -e 's/.*init by copy.*/4;4;unkni;0;fpsym;0/' \
-e 'sX\[systm-inode\]\\/2X-191.X' \
-e 's/mount/xmount/' \
-e 's/cold = 0/cold = 1/' < $f > build/$b
-e 's/^mount:/_mount:/' \
-e 's/$mount/$_mount/' \
-e 's/cold = 0/cold = 1/' \
< $f > build/$b
else
sed -e 's/.*init by copy.*/4;4;unkni;0;fpsym;0/' \
-e 'sX[systm-inode]\/2X-101.X' \
-e 's/mount/xmount/' < $f > build/$b
-e 's/^mount:/xmount:/' \
-e 's/$mount/$xmount/' \
< $f > build/$b
fi
done