Update of /cvsroot/wisp/wisp/users/pisi/winix/beast/beast-flesh/winix/linux
In directory sc8-pr-cvs1:/tmp/cvs-serv14590/beast-flesh/winix/linux
Added Files:
sysinit
Log Message:
minimal flesh skeleton
--- NEW FILE: sysinit ---
#!/winix/linux/busybox ash
# mount proc that was unmounted in the previous step
mount -t proc proc /proc
# clean up after the flesh finding procedure
umount /media/initrd/dev
umount /media/initrd
umount /media/dev
# create the read-write temporary
mount -t tmpfs tmpfs /beast
# rocket-start m^Hwinix
exec /winix/winix
# or execute a shell for inspection
# exec /winix/linux/busybox ash
# this should never be reached
exit 0
|