summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChuanhong Guo <gch981213@gmail.com>2019-07-16 19:38:27 +0800
committerChuanhong Guo <gch981213@gmail.com>2019-07-16 20:14:02 +0800
commitdeb2c56b4c59d2308110eaeb154b6f45b42f2624 (patch)
treef699e7db4bda9daf64892c729034f1e1a0a3f7cd
parente2cd70d6b17bb902502966694baa037bb2769f88 (diff)
downloadopenwrt-deb2c56b4c59d2308110eaeb154b6f45b42f2624.tar.gz
openwrt-deb2c56b4c59d2308110eaeb154b6f45b42f2624.tar.bz2
openwrt-deb2c56b4c59d2308110eaeb154b6f45b42f2624.zip
ath79: add seama header fixup for Qihoo C301
This script is copied from ar71xx. Without a header fixup, u-boot checksum for kernel will fail after the first boot. Fixes: a9360452f0 ("ath79: add support for Qihoo C301") Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
-rw-r--r--target/linux/ath79/base-files/etc/uci-defaults/09_fix-checksum15
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/ath79/base-files/etc/uci-defaults/09_fix-checksum b/target/linux/ath79/base-files/etc/uci-defaults/09_fix-checksum
new file mode 100644
index 0000000000..22c9483e74
--- /dev/null
+++ b/target/linux/ath79/base-files/etc/uci-defaults/09_fix-checksum
@@ -0,0 +1,15 @@
+#!/bin/sh
+. /lib/functions.sh
+
+fix_seama_header() {
+ local kernel_size=$(sed -n 's/mtd[0-9]*: \([0-9a-f]*\).*"kernel".*/\1/p' /proc/mtd)
+ [ "$kernel_size" ] && mtd -c 0x$kernel_size fixseama firmware
+}
+
+board=$(board_name)
+
+case "$board" in
+qihoo,c301)
+ fix_seama_header
+ ;;
+esac