From patchwork Mon Jun 8 15:47:57 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Petre X-Patchwork-Id: 481907 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 739C31401B5 for ; Tue, 9 Jun 2015 01:48:24 +1000 (AEST) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id B960C280838; Mon, 8 Jun 2015 17:46:28 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id C69A32807F4 for ; Mon, 8 Jun 2015 17:46:20 +0200 (CEST) X-policyd-weight: using cached result; rate: -7.6 Received: from mx02.posteo.de (mx02.posteo.de [89.146.194.165]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Mon, 8 Jun 2015 17:46:20 +0200 (CEST) Received: from dovecot04.posteo.de (unknown [185.67.36.27]) by mx02.posteo.de (Postfix) with ESMTPS id 8C56E25A2100 for ; Mon, 8 Jun 2015 17:47:58 +0200 (CEST) Received: from mail.posteo.de (localhost [127.0.0.1]) by dovecot04.posteo.de (Postfix) with ESMTPSA id 3m4zW22FlfzFpWW for ; Mon, 8 Jun 2015 17:47:58 +0200 (CEST) Message-ID: <5575B92D.8000806@posteo.net> Date: Mon, 08 Jun 2015 18:47:57 +0300 From: Daniel Petre User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: OpenWrt Devel Subject: [OpenWrt-Devel] [PATCH] ar71xx: add support for tp-link wr740n v5.0 (EU) X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" TP-Link ships wr740n v5.0 to Romania (so probably everywhere except China) with 4 MB flash and 32 MB memory (confirmed by their local support). This patch adds support for the v5.0 clone of v4, i just tested it on my own v5.0 router and it works. Signed-off-by: Daniel Petre define Device/tl-wr841n-v8 $(Device/tplink-4mlzma) Index: openwrt/target/linux/ar71xx/image/Makefile =================================================================== --- openwrt/target/linux/ar71xx/image/Makefile (revision 45921) +++ openwrt/target/linux/ar71xx/image/Makefile (working copy) @@ -443,6 +443,14 @@ CONSOLE := ttyATH0,115200 endef +define Device/tl-wr740n-v5 + $(Device/tplink-4mlzma) + BOARDNAME := TL-WR741ND-v4 + DEVICE_PROFILE := TLWR740 + TPLINK_HWID := 0x07400005 + CONSOLE := ttyATH0,115200 +endef + define Device/tl-wr741nd-v1 $(Device/tplink-4m) BOARDNAME := TL-WR741ND @@ -472,7 +480,7 @@ TPLINK_HWID := 0x07430002 CONSOLE := ttyATH0,115200 endef -TARGET_DEVICES += tl-wr740n-v4 tl-wr741nd-v1 tl-wr741nd-v2 tl-wr741nd-v4 tl-wr743nd-v2 +TARGET_DEVICES += tl-wr740n-v4 tl-wr740n-v5 tl-wr741nd-v1 tl-wr741nd-v2 tl-wr741nd-v4 tl-wr743nd-v2