mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-18 08:03:09 +02:00
14 lines
177 B
Bash
Executable File
14 lines
177 B
Bash
Executable File
#!/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
|