2021-02-12 18:24:32 +00:00
|
|
|
DEVICE_VARS += SENAO_IMGNAME
|
2021-01-01 21:48:52 +00:00
|
|
|
|
2021-03-17 23:07:46 +00:00
|
|
|
# This needs to make OEM config archive 'sysupgrade.tgz' an empty file prior to OEM
|
2021-01-01 21:48:52 +00:00
|
|
|
# sysupgrade, as otherwise it will implant the old configuration from
|
|
|
|
# OEM firmware when writing rootfs from factory.bin
|
2021-02-25 03:55:09 +00:00
|
|
|
# rootfs size and checksum is taken from a squashfs header
|
|
|
|
# the header does not exist, therefore, supply the size and md5
|
2021-02-12 18:24:32 +00:00
|
|
|
define Build/senao-tar-gz
|
2021-01-01 21:48:52 +00:00
|
|
|
-[ -f "$@" ] && \
|
|
|
|
mkdir -p $@.tmp && \
|
|
|
|
touch $@.tmp/failsafe.bin && \
|
2021-03-17 23:07:46 +00:00
|
|
|
touch $@.tmp/FWINFO-$(word 1,$(1))-$(REVISION) && \
|
2021-01-01 21:48:52 +00:00
|
|
|
echo '#!/bin/sh' > $@.tmp/before-upgrade.sh && \
|
2021-03-17 23:07:46 +00:00
|
|
|
echo ': > /tmp/sysupgrade.tgz' >> $@.tmp/before-upgrade.sh && \
|
2021-01-01 21:48:52 +00:00
|
|
|
echo ': > /tmp/_sys/sysupgrade.tgz' >> $@.tmp/before-upgrade.sh && \
|
2021-02-25 03:55:09 +00:00
|
|
|
echo -n $$(( $$(cat $@ | wc -c) / 4096 * 4096 )) > $@.len && \
|
|
|
|
dd if=$@ bs=$$(cat $@.len) count=1 | md5sum - | cut -d ' ' -f 1 > $@.md5 && \
|
|
|
|
echo '#!/bin/sh' > $@.tmp/after-upgrade.sh && \
|
|
|
|
printf 'fw_setenv rootfs_size 0x%08x\n' $$(cat $@.len) >> $@.tmp/after-upgrade.sh && \
|
|
|
|
printf 'fw_setenv rootfs_checksum %s\n' $$(cat $@.md5) >> $@.tmp/after-upgrade.sh && \
|
2021-01-01 21:48:52 +00:00
|
|
|
$(CP) $(KDIR)/loader-$(DEVICE_NAME).uImage \
|
|
|
|
$@.tmp/openwrt-$(word 1,$(1))-uImage-lzma.bin && \
|
|
|
|
$(CP) $@ $@.tmp/openwrt-$(word 1,$(1))-root.squashfs && \
|
|
|
|
$(TAR) -cp --numeric-owner --owner=0 --group=0 --mode=a-s --sort=name \
|
|
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
|
|
|
|
-C $@.tmp . | gzip -9n > $@ && \
|
2021-02-25 03:55:09 +00:00
|
|
|
rm -rf $@.tmp $@.len $@.md5
|
2021-01-01 21:48:52 +00:00
|
|
|
endef
|
|
|
|
|
2021-02-12 18:24:32 +00:00
|
|
|
define Device/senao_loader_okli
|
2021-09-26 14:07:44 +00:00
|
|
|
$(Device/loader-okli-uimage)
|
2021-02-25 03:55:09 +00:00
|
|
|
KERNEL := kernel-bin | append-dtb | lzma | uImage lzma -M 0x73714f4b
|
|
|
|
LOADER_KERNEL_MAGIC := 0x73714f4b
|
2021-01-01 21:48:52 +00:00
|
|
|
IMAGES += factory.bin
|
2021-02-25 03:55:09 +00:00
|
|
|
IMAGE/factory.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | \
|
2021-02-12 18:24:32 +00:00
|
|
|
check-size | senao-tar-gz $$$$(SENAO_IMGNAME)
|
ath79: add Senao 'failsafe' sysupgrade procedure
Use a similar upgrade method for sysupgrade.bin, like factory.bin,
for Senao boards with the tar.gz OEM upgrade platform,
and 'failsafe' image which is loaded on checksum failure.
This is inspired by the OEM upgrade script /etc/fwupgrade.sh
and the existing platforms for dual-boot Senao boards.
Previously, if the real kernel was damaged or missing
the only way to recover was with UART serial console,
because the OKLI lzma-loader is programmed to halt.
uboot did not detect cases where kernel or rootfs is damaged
and boots OKLI instead of the failsafe image,
because the checksums stored in uboot environment
did not include the real kernel and rootfs space.
Now, the stored checksums include the space for both
the lzma-loader, kernel, and rootfs.
Therefore, these boards are now practically unbrickable.
Also, the factory.bin and sysupgrade.bin are now the same,
except for image metadata.
This allows for flashing OEM image directly from openwrt
as well as flashing openwrt image directly from OEM.
Make 'loader' partition writable so that it can be updated
during a sysupgrade.
tested with
ENS202EXT v1
EAP1200H
EAP350 v1
EAP600
ECB350 v1
ECB600
ENH202 v1
Signed-off-by: Michael Pratt <mcpratt@pm.me>
2021-02-12 23:19:10 +00:00
|
|
|
IMAGE/sysupgrade.bin := $$(IMAGE/factory.bin) | append-metadata
|
2021-01-01 21:48:52 +00:00
|
|
|
endef
|