diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2025-12-24 19:49:57 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2025-12-24 19:49:57 -0500 |
| commit | 939ac4319cb047a37ba46f84eff81948063f6954 (patch) | |
| tree | 5112cf8aad73125a13f5b52c0290a7f26f948b52 /entrypoint.sh | |
| parent | 3a1b5ba15b89c907f9bf66a0761ffdd73b32208b (diff) | |
| download | unixv4-939ac4319cb047a37ba46f84eff81948063f6954.tar.gz unixv4-939ac4319cb047a37ba46f84eff81948063f6954.tar.xz | |
Add working webpage for unix v4
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 |
