diff options
Diffstat (limited to 'services')
-rwxr-xr-x | services/agetty-generic/run | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/agetty-generic/run b/services/agetty-generic/run index 1e6c2bd..af36daa 100755 --- a/services/agetty-generic/run +++ b/services/agetty-generic/run @@ -4,10 +4,10 @@ tty=${PWD##*-} [ -r conf ] && . ./conf -if [ -x /sbin/getty ]; then +if [ -x /sbin/getty -o -x /bin/getty ]; then # busybox GETTY=getty -elif [ -x /sbin/agetty ]; then +elif [ -x /sbin/agetty -o -x /bin/agetty ]; then # util-linux GETTY=agetty fi |