From patchwork Wed Dec 2 20:38:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andre Heider X-Patchwork-Id: 551750 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 7104C1402DE for ; Thu, 3 Dec 2015 07:40:20 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=NEgkelLP; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id AEA5628C139; Wed, 2 Dec 2015 21:38:49 +0100 (CET) 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,FREEMAIL_FROM, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 461D928C0A7 for ; Wed, 2 Dec 2015 21:38:23 +0100 (CET) X-policyd-weight: using cached result; rate: -8.5 Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Wed, 2 Dec 2015 21:38:19 +0100 (CET) Received: by wmuu63 with SMTP id u63so231284818wmu.0 for ; Wed, 02 Dec 2015 12:38:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:in-reply-to:references; bh=qprQEDKxMDY385PTH1RxGw0AvG32nndB0usxecdS78Q=; b=NEgkelLP0r2Q27WCwyGF6enrUbK/WpDvWfyHcm4G/t8dAdAvwSDoXLBrbe/2dzIaL9 RrB9NhFIIOeRR9Z6A64Ad+cziL+Vf6N9cz6IIGcIqzx1pbWD3KKkyX6UTv8uCpswkoOx eEbATmhqS0MANemT2N4uvfIBzElcZdr+jA8gSdOBmlVbiQeEmNQtwgbqSiCBXduGmB3s gY+Nem/d069j1uxwav/W7Y+MiLXOaPBtPRrdg/S2ATCevIB3bSeVh/HOVuHxTW40LZuE j8uuUtbWRE+0mePfB9lUVoZ+3VmvJVqrj398NjVlul4OzKZZLqgikUSlLxKqr6vSk1wy Ps2w== X-Received: by 10.28.8.15 with SMTP id 15mr48055146wmi.50.1449088704897; Wed, 02 Dec 2015 12:38:24 -0800 (PST) Received: from mamamia.internal (a89-182-25-248.net-htp.de. [89.182.25.248]) by smtp.gmail.com with ESMTPSA id h5sm4367282wjz.21.2015.12.02.12.38.24 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 02 Dec 2015 12:38:24 -0800 (PST) From: Andre Heider To: openwrt-devel@lists.openwrt.org Date: Wed, 2 Dec 2015 21:38:11 +0100 Message-Id: <1449088692-4597-3-git-send-email-a.heider@gmail.com> X-Mailer: git-send-email 2.6.2 In-Reply-To: <1449088692-4597-1-git-send-email-a.heider@gmail.com> References: <1449088692-4597-1-git-send-email-a.heider@gmail.com> Subject: [OpenWrt-Devel] [PATCH 3/4] lantiq: base-files: use vdsl per default 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: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" Since r43114 adsl will be used if annex is specified, so don't. Signed-off-by: Andre Heider --- target/linux/lantiq/base-files/etc/uci-defaults/02_network | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/02_network b/target/linux/lantiq/base-files/etc/uci-defaults/02_network index 4974b48..08a284d 100644 --- a/target/linux/lantiq/base-files/etc/uci-defaults/02_network +++ b/target/linux/lantiq/base-files/etc/uci-defaults/02_network @@ -196,7 +196,7 @@ esac [ -z "$(ls /lib/modules/`uname -r`/ltq_atm*)" ] || set_atm_wan "$vpi" "$vci" "$encaps" "$payload" if [ -n "$(grep "system type.*: VR9" /proc/cpuinfo)" ]; then - set_vdsl_modem "$annex" "/lib/firmware/vdsl.bin" "ptm" + set_vdsl_modem "" "/lib/firmware/vdsl.bin" "ptm" else set_adsl_modem "$annex" "/lib/firmware/adsl.bin" fi