28fae0bccf
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> SVN-Revision: 17324
18 lines
378 B
Bash
Executable file
18 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
|