15 lines
235 B
Bash
Executable File
15 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Default goto BROM upgmode
|
|
UPGVAL=1
|
|
if [ "$1" == "gotobl" ]; then
|
|
# Goto U-Boot upgmode
|
|
UPGVAL=2
|
|
fi
|
|
cd /sys/devices/platform/soc/*.wri || exit
|
|
echo "$UPGVAL" > aicupg
|
|
|
|
echo Will reboot after 3 seconds ...
|
|
sleep 3
|
|
reboot
|