diff options
author | Samuel Thibault <sthibault@debian.org> | 2010-01-11 04:35:57 +0000 |
---|---|---|
committer | Samuel Thibault <sthibault@debian.org> | 2010-01-11 04:35:57 +0000 |
commit | 4544d433921db70fea839a7c940ad38df8b431d1 (patch) | |
tree | 65641535a9b4351ca4bf461b3c7bf102be37eb90 /debian | |
parent | 6694fa2e834cf110697fa1aa19efcb5b922d3ef1 (diff) |
add some native install initialization
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/local/runsystem.gnu | 38 |
1 files changed, 32 insertions, 6 deletions
diff --git a/debian/local/runsystem.gnu b/debian/local/runsystem.gnu index 92870c36..0f1326da 100755 --- a/debian/local/runsystem.gnu +++ b/debian/local/runsystem.gnu @@ -6,15 +6,41 @@ export PATH SHELL=/bin/sh RUNCOM=/libexec/rc -# See whether pflocal is setup already, and do so if not (install case) +mkdir /servers/ +mkdir /servers/socket +settrans -c /servers/socket/1 /hurd/pflocal +settrans -c /servers/socket/2 /hurd/pfinet +settrans -ck /servers/exec /hurd/exec +settrans -c /servers/crash-suspend /hurd/crash --suspend +settrans -c /servers/crash-kill /hurd/crash --kill +settrans -c /servers/password /hurd/password +settrans -c /servers/crash-suspend /hurd/crash --suspend +settrans -c /servers/crash-dump-core /hurd/crash --dump-core +ln -s crash-kill /servers/crash +ln -s 1 /servers/socket/local +ln -s 2 /servers/socket/inet -if ! test -e /servers/socket/1 && test -x /bin/settrans >/dev/null ; then - /bin/settrans -c /servers/socket/1 /hurd/pflocal -fi +# would be better than the -N parameter given to genext2fs +#settrans /dev /hurd/tmpfs 1M +#ln -s /sbin/MAKEDEV /dev -# TODO: -# set up translators, /dev, etc. (./native-install, roughly) +cd /dev +rm -f null +rm -f console +echo "setting up /dev" +./MAKEDEV fd +./MAKEDEV std ptyp ptyq com0 vcs tty1 tty2 tty3 tty4 tty5 tty6 hd0 hd1 hd2 hd3 loop0 loop1 +echo "setting up /dev/hd*" +for i in 0 1 2 3 +do + for j in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 + do + ./MAKEDEV hd${i}s${j} + done +done +cd / +echo "running rc" # Run the rc script. As long as it exits nonzero, punt to single-user. # After the single-user shell exits, we will start over attempting to # run rc; but later invocations strip the `autoboot' argument. |