linuxOS_D21X/package/third-party/skeleton-init-sysv/skeleton/usr/bin/aicupg
2025-06-05 14:33:02 +08:00

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