From patchwork Tue Oct 8 18:18:50 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: hurrhnn--- via openwrt-devel X-Patchwork-Id: 1994369 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=lists.infradead.org header.i=@lists.infradead.org header.a=rsa-sha256 header.s=bombadil.20210309 header.b=vIWbJrgU; dkim-atps=neutral Authentication-Results: legolas.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.openwrt.org (client-ip=2607:7c80:54:3::133; helo=bombadil.infradead.org; envelope-from=openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org; receiver=patchwork.ozlabs.org) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4XNPTh5WQdz1xtV for ; Wed, 9 Oct 2024 05:20:54 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type:List-Help: Reply-To:List-Archive:List-Unsubscribe:List-Subscribe:From:List-Post:List-Id: Message-ID:MIME-Version:Date:Subject:To:Cc:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=gfcjnCdtchS+QgyzuJX1WDTLYSz1DpmycJojI6o/dMU=; b=vIWbJrgU8mUs/GbjgqI4YoBXSe +loagVyD3Y3Xa6STws+gWJAGnpiljuCQLiD95EwVcHlauoG1Qb77ObPis/14RnnKZvZi1Yh5plssl SIj4Gt8DJnShLqaIlVb73E3JjGCzMYuOrErKKfteK5HiNJPOtJHZJ6EwgVQCwFnCslCmbIXSxLGiN EdmrfyGhZnoTfeR4sRuZn+33WhFm4peNYSFZz3dGcZtX8xBJ+XtgdaV1WsBnjWw80XCFZXiMVMseG s8nCnvHsc1tkVTwuh1rtB5eVTd7sjg8VYiJQxgd+1KBjD5gRC87pNCs4ih3LBAHgMDoanrgeeaN3N 9TEcOLEg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1syEnY-00000006lI7-0cJg; Tue, 08 Oct 2024 18:19:04 +0000 To: openwrt-devel@lists.openwrt.org Subject: [PATCH] iptime-crc32: add support for ipTIME AX3000M Date: Wed, 9 Oct 2024 03:18:50 +0900 MIME-Version: 1.0 Message-ID: List-Id: OpenWrt Development List List-Post: X-Patchwork-Original-From: hurrhnn--- via openwrt-devel From: hurrhnn--- via openwrt-devel Precedence: list X-Mailman-Version: 2.1.34 X-BeenThere: openwrt-devel@lists.openwrt.org List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: hurrhnn@icmp.kr List-Help: Sender: "openwrt-devel" Errors-To: openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software. From: Rhnn Hur Add support to create flashable factory image on ipTIME webpage for target model. Signed-off-by: Rhnn Hur --- src/iptime-crc32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/iptime-crc32.c b/src/iptime-crc32.c index e50bdd3..7871e42 100644 --- a/src/iptime-crc32.c +++ b/src/iptime-crc32.c @@ -54,6 +54,7 @@ struct board_info { struct board_info boards[] = { { .model = "a6004mx", .payload_offset = 0x800 }, { .model = "ax2004m", .payload_offset = 0x38 }, + { .model = "ax3000m", .payload_offset = 0x38 }, { .model = "ax8004m", .payload_offset = 0x38 }, { /* sentinel */ } };