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