From e629ced778263da2a256a9920c9856ec1efebc28 Mon Sep 17 00:00:00 2001 From: Linus Walleij Date: Thu, 20 Oct 2022 22:43:45 +0200 Subject: bcm53xx: only fixup seama on D-Link DIR-885L MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just one device builds seama images so let's just fix up seama on that one device. I guess the tool errors out but this feels cleaner. Cc: Hauke Mehrtens Cc: Rafał Miłecki Signed-off-by: Linus Walleij [rmilecki: drop "fixtrx" from D-Link case] Signed-off-by: Rafał Miłecki --- .../bcm53xx/base-files/etc/uci-defaults/09_fix_crc | 23 +++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'target/linux/bcm53xx') diff --git a/target/linux/bcm53xx/base-files/etc/uci-defaults/09_fix_crc b/target/linux/bcm53xx/base-files/etc/uci-defaults/09_fix_crc index eae84bb771..89ce8970d7 100644 --- a/target/linux/bcm53xx/base-files/etc/uci-defaults/09_fix_crc +++ b/target/linux/bcm53xx/base-files/etc/uci-defaults/09_fix_crc @@ -1,5 +1,22 @@ +. /lib/functions.sh + +board=$(board_name) + kernel_size=$(sed -n 's/mtd[0-9]*: \([0-9a-f]*\).*"\(kernel\|linux\)".*/\1/p' /proc/mtd) -mtd ${kernel_size:+-c 0x$kernel_size} fixtrx firmware && exit 0 -mtd ${kernel_size:+-c 0x$kernel_size} fixseama firmware && exit 0 -exit 1 +fixtrx() { + mtd ${kernel_size:+-c 0x$kernel_size} fixtrx firmware && exit 0 +} + +fixseama() { + mtd ${kernel_size:+-c 0x$kernel_size} fixseama firmware && exit 0 +} + +case "$board" in +dlink,dir-885l) + fixseama + ;; +*) + fixtrx + ;; +esac -- cgit v1.2.3