From: Myoung Ha, Ji Date: Mon, 20 Oct 2025 05:58:09 +0000 (+0900) Subject: iptime-crc32: add support for ipTIME AX2002MESH X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;p=project%2Ffirmware-utils.git iptime-crc32: add support for ipTIME AX2002MESH Add support for ipTIME AX2002MESH (ax2002m) model in iptime-crc32. Signed-off-by: Myoung Ha, Ji Link: https://github.com/openwrt/firmware-utils/pull/55 Signed-off-by: Hauke Mehrtens --- diff --git a/src/iptime-crc32.c b/src/iptime-crc32.c index 79c358c..35bc0b0 100644 --- a/src/iptime-crc32.c +++ b/src/iptime-crc32.c @@ -53,6 +53,7 @@ struct board_info { struct board_info boards[] = { { .model = "a6004mx", .payload_offset = 0x800 }, + { .model = "ax2002m", .payload_offset = 0x38 }, { .model = "ax2004m", .payload_offset = 0x38 }, { .model = "ax3000m", .payload_offset = 0x38 }, { .model = "ax3000q", .payload_offset = 0x38 },