From patchwork Tue Apr 12 06:23:10 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stijn Segers X-Patchwork-Id: 609252 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (caladan.dune.hu [78.24.191.180]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3qkcML3ZQLz9sdb for ; Tue, 12 Apr 2016 16:23:42 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; secure) header.d=inventati.org header.i=@inventati.org header.b=DziWDD/N; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id A7F01B91B87; Tue, 12 Apr 2016 08:23:26 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00,RDNS_NONE, T_DKIM_INVALID autolearn=no autolearn_force=no version=3.4.1 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP; Tue, 12 Apr 2016 08:23:26 +0200 (CEST) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id EE06AB91B83 for ; Tue, 12 Apr 2016 08:23:24 +0200 (CEST) X-policyd-weight: using cached result; rate: -6.1 Received: from perdizione.investici.org (unknown [94.23.50.208]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Tue, 12 Apr 2016 08:23:24 +0200 (CEST) Received: from [94.23.50.208] (perdizione [94.23.50.208]) (Authenticated sender: francesco.borromini@inventati.org) by localhost (Postfix) with ESMTPSA id 57E40120370 for ; Tue, 12 Apr 2016 06:23:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1460442203; bh=SJcaxp/zAHTg3VGxYyyJCIu3jvpzo8A5SyGo8R/0BCo=; h=From:To:Subject:Date; b=DziWDD/NcIhMlz1gTtxcBQlnyJ3MEym/jpnTTNOupwjCcKbdD3t5B/tQcDAaY5KVV PobQCA1Nx5BzTN3IK3FMVFfkGvhMqHxdqtv6/je4Zg/qSMQDAOPi2zoJihsEnJhDRN mXmrxMHLAJFU2KoXUazKvuH3yYMmWn+d9PuzhyU8= From: Stijn Segers To: openwrt-devel@lists.openwrt.org Date: Tue, 12 Apr 2016 08:23:10 +0200 Message-Id: <1460442190-2096-1-git-send-email-francesco.borromini@inventati.org> X-Mailer: git-send-email 2.1.4 Subject: [OpenWrt-Devel] [PATCH] ar71xx: Add TP-Link TL-WR740N v6 support to 15.05.1 X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" This patch adds support for the TP-Link TL-WR740N v6 to OpenWrt Chaos Calmer. Hardware wise, it's very similar to the TL-WR841N v10. See the forum thread [1]. Credit goes to the user 'traveler' who did the legwork and tested builds. Also thanks to Matthias Schiffer for clarifying the DEVICE_PROFILE settings. Signed-off by: Stijn Segers [1]: https://forum.openwrt.org/viewtopic.php?pid=318704 --- target/linux/ar71xx/image/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 80adedb..f533805 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -509,6 +509,13 @@ define Device/tl-wr740n-v5 CONSOLE := ttyATH0,115200 endef +define Device/tl-wr740n-v6 + $(Device/tplink-4mlzma) + BOARDNAME := TL-WR841N-v9 + DEVICE_PROFILE := TLWR740 + TPLINK_HWID := 0x07400006 +endef + define Device/tl-wr741nd-v1 $(Device/tplink-4m) BOARDNAME := TL-WR741ND @@ -546,7 +553,7 @@ define Device/tl-wr743nd-v2 TPLINK_HWID := 0x07430002 CONSOLE := ttyATH0,115200 endef -TARGET_DEVICES += tl-wr740n-v4 tl-wr740n-v5 tl-wr741nd-v1 tl-wr741nd-v2 tl-wr741nd-v4 tl-wr741nd-v5 tl-wr743nd-v2 +TARGET_DEVICES += tl-wr740n-v4 tl-wr740n-v5 tl-wr740n-v6 tl-wr741nd-v1 tl-wr741nd-v2 tl-wr741nd-v4 tl-wr741nd-v5 tl-wr743nd-v2 define Device/tl-wr841-v8 $(Device/tplink-4mlzma)