blob: 7bdd9ebe7a9acacb337b24a1c21769a625c60e64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
if ! test -t ; then
echo "need an interactive terminal"
exit 1
fi
echo "You will need to type:"
echo " k<enter>"
echo " unix<enter>"
echo ""
echo "Where <enter> is the literal enter/return key."
echo "Once you get to the login prompt, the root user without a password"
echo "Will be available to you."
echo ""
echo "Note: to stop the simulation you can press c-e and type quit"
exec /usr/bin/pdp11 boot.ini
|