From patchwork Mon Feb 9 14:55:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "." X-Patchwork-Id: 437957 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.1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 059BD1400B6 for ; Tue, 10 Feb 2015 01:55:32 +1100 (AEDT) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 8347E28BBED; Mon, 9 Feb 2015 15:52:51 +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 autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 2965128013B for ; Mon, 9 Feb 2015 15:52:47 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .nurfuerspam. - helo: .mout.gmx. - helo-domain: .gmx.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -8.5 Received: from mout.gmx.net (mout.gmx.net [212.227.15.15]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Mon, 9 Feb 2015 15:52:46 +0100 (CET) Received: from [192.168.1.55] ([78.55.51.78]) by mail.gmx.com (mrgmx003) with ESMTPSA (Nemesis) id 0MSutp-1YDNcN1QfN-00RtgR for ; Mon, 09 Feb 2015 15:55:22 +0100 Message-ID: <54D8CA59.4090501@nurfuerspam.de> Date: Mon, 09 Feb 2015 15:55:21 +0100 From: "." User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: openwrt-devel@lists.openwrt.org X-Provags-ID: V03:K0:EI2jFkk6laKpQmMnYOFAUVHEzl2Api+bv9+lsK1g8fJ0Up6V7eI Z2rAb9YARzDel3KXm6TUgVWUK9XvNtreiqoEK1/Pkkcus90efLDw4VE4jEG2dfm4QEbD62j Zzto50Aw6i5PYLI3OWiKcPHxW/Uv7jA3jIyzMz8GZpSWoMpuTwAbIjh4gBpuQNorA0eVv3d TEBGekTT4vHRMAvJjNnzQ== X-UI-Out-Filterresults: notjunk:1; Subject: [OpenWrt-Devel] [PATCH] @44360 scripts 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" From d1f104b6fe94507a80b85943fd1d4ba895f4e0a0 Mon Sep 17 00:00:00 2001 From: Detlef Schmitt Date: Mon, 9 Feb 2015 15:35:28 +0100 Subject: [PATCH 2/2] daemon.notice netifd: wan (4235): udhcpc: option -h NAME is deprecated, use -x hostname:NAME daemon.notice netifd: wan (4235): udhcpc (v1.22.1) started replaced the deprecated option "-h HOSTNAME" for udhcpc with the new one --- package/network/config/netifd/files/lib/netifd/proto/dhcp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh b/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh index d4c483d..bde60a2 100755 --- a/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh +++ b/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh @@ -52,7 +52,7 @@ proto_dhcp_setup() { -s /lib/netifd/dhcp.script \ -f -t 0 -i "$iface" \ ${ipaddr:+-r $ipaddr} \ - ${hostname:+-H $hostname} \ + ${hostname:+-x hostname:$hostname} \ ${vendorid:+-V $vendorid} \ $clientid $broadcast $dhcpopts }