blob: 67ec0c454f79728508aa1f32d4f83d3e2d4ee381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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
/bin/settrans -c /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
|