diff options
Diffstat (limited to 'contrib/getty.boot')
-rw-r--r-- | contrib/getty.boot | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/getty.boot b/contrib/getty.boot new file mode 100644 index 0000000..bb5a5e3 --- /dev/null +++ b/contrib/getty.boot @@ -0,0 +1,4 @@ +for getty in 1 2 3 4 5 6; do + while :; do /sbin/getty 38400 tty${getty} 2>&1 ; done & # busybox getty + while :; do /sbin/getty /dev/tty${getty} linux 2>&1 ; done & # ubase getty +done |