Magellan Linux

Annotation of /trunk/busybox/agetty.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2137 - (hide 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 niro 2124 #!/bin/sh
2    
3 niro 2137 args=""
4 niro 2124
5 niro 2137 # 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 niro 2124 /sbin/getty ${args}