From patchwork Mon Dec 7 18:59:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andre Heider X-Patchwork-Id: 553509 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 B69FB140311 for ; Tue, 8 Dec 2015 05:59:42 +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=v444Rgho; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 59D1328063C; Mon, 7 Dec 2015 19:59:17 +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 6F92028063C for ; Mon, 7 Dec 2015 19:59:11 +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 ; Mon, 7 Dec 2015 19:59:10 +0100 (CET) Received: by wmww144 with SMTP id w144so153115084wmw.1 for ; Mon, 07 Dec 2015 10:59:19 -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=ZliqXAH2Ppzn74Jt18YCvd8S5OvaKrJd1ctmY4yqfWo=; b=v444Rgho0jKuQ4MgD2es2ojqkqp0OUZqkuw5LwlTqC1EloKdqeQrQGOILPrn9WVgBh fG8M2efnbKIZOYLgjiAxGZuHLytMjZ0JBCXf50oE/2QtZiDOd0gurYG9cU7wbCpHZC5F VtP47turlET1hC9m8LObUucw34IFnvj+1wK/T/M8OcUTkKInUGew4dQapxx3nRHd1J2g iT2ljFfSQ2rlsUaJEh9W50eYVwaRcClSzuH5z4L5BpMS0tnvkss3Dk9dg/VQgDgROGow GmhlHHMb7H08elqEcSjBc1MUc7+BFC0xwv1R56iUM1xm0tHzw7M2LH7t1zQojHgdT6IH Q5EQ== X-Received: by 10.194.243.201 with SMTP id xa9mr35086712wjc.122.1449514759233; Mon, 07 Dec 2015 10:59:19 -0800 (PST) Received: from mamamia.internal (a89-182-116-168.net-htp.de. [89.182.116.168]) by smtp.gmail.com with ESMTPSA id bg10sm26473958wjb.46.2015.12.07.10.59.18 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 07 Dec 2015 10:59:18 -0800 (PST) From: Andre Heider To: openwrt-devel@lists.openwrt.org Date: Mon, 7 Dec 2015 19:59:07 +0100 Message-Id: <1449514747-31702-1-git-send-email-a.heider@gmail.com> X-Mailer: git-send-email 2.6.2 In-Reply-To: <1449088692-4597-3-git-send-email-a.heider@gmail.com> References: <1449088692-4597-3-git-send-email-a.heider@gmail.com> Subject: [OpenWrt-Devel] [PATCH v2] 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. --- v2: rebased target/linux/lantiq/base-files/etc/board.d/02_network | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/base-files/etc/board.d/02_network b/target/linux/lantiq/base-files/etc/board.d/02_network index 08a143f..00ebb62 100755 --- a/target/linux/lantiq/base-files/etc/board.d/02_network +++ b/target/linux/lantiq/base-files/etc/board.d/02_network @@ -136,7 +136,7 @@ if [ -n "$(ls /lib/modules/`uname -r`/ltq_atm*)" ]; then fi if [ -n "$(grep "system type.*: VR9" /proc/cpuinfo)" ]; then - ucidef_add_vdsl_modem "$annex" "/lib/firmware/vdsl.bin" "av" "ptm" + ucidef_add_vdsl_modem "" "/lib/firmware/vdsl.bin" "av" "ptm" else ucidef_add_adsl_modem "$annex" "/lib/firmware/adsl.bin" fi