1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-09-30 11:21:38 +03:00
openwrt-packages/nanonote-files/base-files/usr/bin/login.nn

14 lines
177 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ -f /usr/bin/gmenu2x ]; then
exec /usr/bin/gmenu2x
fi
if [ -f /bin/ash ]; then
exec /bin/ash --login
fi
if [ -f /bin/bash ]; then
exec /bin/sh --login
fi