Magellan Linux

Contents of /trunk/busybox/agetty.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2137 - (show annotations) (download) (as text)
Thu Mar 28 08:35:43 2013 UTC (11 years, 1 month ago) by niro
File MIME type: application/x-sh
File size: 190 byte(s)
-handle autologin properly
1 #!/bin/sh
2
3 args=""
4
5 # very basic getops
6 for i in $*
7 do
8 case $1 in
9 --noclear) ;; # ignore --noclear
10 --autologin=*) args+=" -l /sbin/autologin" ;;
11 esac
12 shift
13 done
14
15 /sbin/getty ${args}