blob: eba330de0d37d3773d4f335982a6e5e3b4254f13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
# Setup critical hurd translators
set -v
# Make sure the filesystem is writable
fsysopts / --writable
# Set up standard passive translators
/bin/settrans -c /servers/socket/local /hurd/pflocal
/bin/settrans -c /servers/crash /hurd/crash
# Setup crucial devices
cd /dev
/bin/sh ./MAKEDEV std ptyp ptyq
echo 'Hit ^C now for shell prompt or RET to reboot'
read response
sync
reboot
|