mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 06:19:43 +02:00
a336902e47
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17324 3c298f89-4303-0410-b956-a3cf2f4a3e73
19 lines
378 B
Bash
Executable File
19 lines
378 B
Bash
Executable File
#!/bin/sh
|
|
# Run petitboot at first startup, otherwise run a login.
|
|
|
|
sbindir=/usr/sbin
|
|
localstatedir=/var/petitboot
|
|
|
|
petitboot=$sbindir/petitboot
|
|
run_once=$localstatedir/.run-once
|
|
|
|
if [ ! -f $run_once -a -x $petitboot ]; then
|
|
# quiet console
|
|
echo 3 > /proc/sys/kernel/printk
|
|
mkdir -p $localstatedir
|
|
touch $run_once
|
|
exec $petitboot --timeout
|
|
fi
|
|
|
|
exec /bin/ash --login
|