diff options
Diffstat (limited to 'entrypoint.sh')
| -rwxr-xr-x | entrypoint.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100755 index 0000000..7bdd9eb --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,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 |
