9
0
Fork 0
barebox/defaultenv-2/base/bin/boot

19 lines
246 B
Bash

#!/bin/sh
if [ $# = 0 ]; then
scr="$global.boot.default"
else
scr="$1"
fi
if [ -n "$scr" ]; then
if [ ! -f /env/boot/$scr ]; then
echo -e "/env/boot/$scr does not exist.\nValid choices:"
ls /env/boot
exit
fi
/env/boot/$scr
fi
bootm