From fa4144a8f4a493895cf1f83987c06757f35a18b1 Mon Sep 17 00:00:00 2001 From: Alfonso Gamboa Date: Thu, 18 Aug 2022 23:04:44 -0700 Subject: [PATCH] add fw version and update boot script --- SD_ROOT/wz_mini/etc/init.d/S15fwupdate | 80 ++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 SD_ROOT/wz_mini/etc/init.d/S15fwupdate diff --git a/SD_ROOT/wz_mini/etc/init.d/S15fwupdate b/SD_ROOT/wz_mini/etc/init.d/S15fwupdate new file mode 100644 index 0000000..ed63b20 --- /dev/null +++ b/SD_ROOT/wz_mini/etc/init.d/S15fwupdate @@ -0,0 +1,80 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: +# Short-Description: Stock Firmware Detection and Upgrade +# Description: Detect the firmware version of the stock firmware and process upgrades, based off atomcam_tools S32fwupdate. +### END INIT INFO + +. /opt/wz_mini/wz_mini.conf + +flash_copy() { + size=`awk '{ if($1 == MTD ":") print ("0x" $2)/1024; }' MTD=${1##*/} /proc/mtd` + echo "flash_copy $1 $2 ${size}" + dd if=$1 of=/tmp/mtd bs=1k count=${size} + [ $? != 0 ] && return + + flash_eraseall $2 + [ $? != 0 ] && return + + flashcp -v /tmp/mtd $2 + [ $? != 0 ] && return + + rm -f /tmp/mtd +} + +flash_update() { + FWGRADEUP=`awk '/FWGRADEUP=/ { gsub(/^.*=/, ""); print $0; }' /dev/mtd7` + + if [ "${FWGRADEUP}" = "kernel+app" ] ; then + flash_copy /dev/mtd4 /dev/mtd1 + [ $? != 0 ] && return + flash_copy /dev/mtd5 /dev/mtd3 + [ $? != 0 ] && return + flash_eraseall /dev/mtd7 + fi + + if [ "${FWGRADEUP}" = "kernel+rootfs" ] ; then + flash_copy /dev/mtd4 /dev/mtd1 + [ $? != 0 ] && return + flash_copy /dev/mtd5 /dev/mtd2 + [ $? != 0 ] && return + flash_eraseall /dev/mtd7 + fi + + if [ "${FWGRADEUP}" = "kernel" ] ; then + flash_copy /dev/mtd4 /dev/mtd1 + [ $? != 0 ] && return + flash_eraseall /dev/mtd7 + fi + + if [ "${FWGRADEUP}" = "rootfs" ] ; then + flash_copy /dev/mtd5 /dev/mtd2 + [ $? != 0 ] && return + flash_eraseall /dev/mtd7 + fi + + if [ "${FWGRADEUP}" = "app" ] ; then + flash_copy /dev/mtd5 /dev/mtd3 + [ $? != 0 ] && return + flash_eraseall /dev/mtd7 + fi +} + +case "$1" in + start) + echo "#####$(basename "$0")#####" + + if [ -f /system/bin/app.ver ]; then + echo "Current stock firmware version:" + cat /system/bin/app.ver + else + echo "/system/bin/app.ver not found" + fi + + ;; + *) + echo "Usage: $0 {start}" + exit 1 + ;; +esac +