From nobody Thu Apr 2 00:48:39 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 25D03C433EF for ; Tue, 2 Nov 2021 23:55:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0EB4860E0C for ; Tue, 2 Nov 2021 23:55:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231588AbhKBX5l (ORCPT ); Tue, 2 Nov 2021 19:57:41 -0400 Received: from smtpcmd13146.aruba.it ([62.149.156.146]:37381 "EHLO smtpcmd13146.aruba.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231359AbhKBX5g (ORCPT ); Tue, 2 Nov 2021 19:57:36 -0400 Received: from ubuntu.localdomain ([146.241.216.221]) by Aruba Outgoing Smtp with ESMTPSA id i3cHmA3UmueW5i3cImi7n5; Wed, 03 Nov 2021 00:54:59 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aruba.it; s=a1; t=1635897299; bh=EKouxjESLduVmOfCsLluFku3U4dwAjwdu1pApB1O3O4=; h=From:To:Subject:Date:MIME-Version; b=FiuNyz7UcSUGvuhJ01mgWMLh5aU6yGMNW5ubO2konbVIxL+sksNYfTjeM9Pi7p9dI A6frq0cD1Sb7elyV5R8671sXAn/+LQ5YncWyq38QD+5ZHgccx7pddXRtdfDR0e9JvW GlXNu6RNLjI0et7TitDEp0dQZ8Iv8goErb3H1oQJSLLTVV7oqYL2CASECaa3RB5Ao6 i+LPWF2gAciGAgOI/MAqVnEJJxhpL98nCMtUzZ632njONhb2D3z/fk+hhq59/eluDw ySq4Fxm4STNjC9wJGnx5M6ezsFZSJ74exdevu80bM12d4MmskuQ5ushC+VVOSp8WRQ 3tnqb35ythP3Q== From: Giulio Benetti To: Lubomir Rintel Cc: Rob Herring , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Russell King , Giulio Benetti , Alexandre Belloni , Krzysztof Kozlowski , Andrey Zhizhikin , Sam Ravnborg , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/7] ARM: dts: mmp2-brownstone: fix wrong static ip autoconf Date: Wed, 3 Nov 2021 00:54:50 +0100 Message-Id: <20211102235456.710617-2-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> References: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-CMAE-Envelope: MS4wfGpcu/r5eG+py2luhJEriB/6aDLbc+j1VFN7E59ZzTmOdLGJUSPBGQHId+NyA6guTYUmns0JRHD4ToYu4InSzA7ncZd878e2NBenGHYVa2L+WivbIxCx 1nLvioNNI9gN9cYO/glWHHItfS3Fcx/Dw2Huhf6V1Uy3nHnxZEBvJjVqQVXnd3KPOleGD5Sv6A6Gtol9p+aGW8u/QlHXaX8mEuWFzY06gSoSkXJ84rDtTwWl kPxhdTtbzwXRZHFzs9GuhRmP1dSoLm3WPna1xH/7uxF/5Vn69wKKWQEcAyC85vDiG805QbhQw6TFub1nIc7HY1fv7QOHDl3cG3LGQz/fcDZno+0LIZQfLfo4 pDkKkNiIBnmf+vcSW2E2Ji334yVtIkYGX7Yi3Rge+QiLjpnfN4oR+sfzmbIbBVgRK9NY02TrQSMPZQ89c+wEGRBe5XIwwlr2Mf/syJE2Tyw/GAsWuNjOVb4l TCJNsMVvKLsrQfWv9TDbUeqR7ui48mKjxfQOlfNeXaKNogosm2/tELPxRxwXl6YQaeRGjFmCH3EwaZu07gCBxKqOb5TcpUcR2etv2Xj7em25O7i2s5Z38zIt Kq1TYkJ2GlSoYlkAxfs9NgWEqaIGn1cF66lCI69/f2vKP702ccgikyj6OEWvpM5SC1McDDG06LWM8vwshxEdAXkshXX8ta7fYFqXwh9cYy1KPA== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" At the moment field is set to 'on' but judging from the static ip setting it should be set to 'off', since in [1] states: ``` off or none: don't use autoconfiguration (do static IP assignment instead) on or any: use any protocol available in the kernel (default) ``` So let's substitute 'on' with 'off'. [1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt Signed-off-by: Giulio Benetti --- arch/arm/boot/dts/mmp2-brownstone.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/mmp2-brownstone.dts b/arch/arm/boot/dts/mmp2= -brownstone.dts index 04f1ae1382e7..05ccb567e516 100644 --- a/arch/arm/boot/dts/mmp2-brownstone.dts +++ b/arch/arm/boot/dts/mmp2-brownstone.dts @@ -12,7 +12,7 @@ / { compatible =3D "mrvl,mmp2-brownstone", "mrvl,mmp2"; =20 chosen { - bootargs =3D "console=3DttyS2,38400 root=3D/dev/nfs nfsroot=3D192.168.1.= 100:/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:on"; + bootargs =3D "console=3DttyS2,38400 root=3D/dev/nfs nfsroot=3D192.168.1.= 100:/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:off"; }; =20 memory { --=20 2.25.1 From nobody Thu Apr 2 00:48:39 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6AE48C433FE for ; Tue, 2 Nov 2021 23:55:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 53E7560E0C for ; Tue, 2 Nov 2021 23:55:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231368AbhKBX5j (ORCPT ); Tue, 2 Nov 2021 19:57:39 -0400 Received: from smtpcmd13146.aruba.it ([62.149.156.146]:46771 "EHLO smtpcmd13146.aruba.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231361AbhKBX5g (ORCPT ); Tue, 2 Nov 2021 19:57:36 -0400 Received: from ubuntu.localdomain ([146.241.216.221]) by Aruba Outgoing Smtp with ESMTPSA id i3cHmA3UmueW5i3cJmi7ne; Wed, 03 Nov 2021 00:54:59 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aruba.it; s=a1; t=1635897299; bh=injCjrST3vI53Ax5VupyKt6Fw+4MXa4L026VD0NF4Lg=; h=From:To:Subject:Date:MIME-Version; b=UHQymmKJS9J7yO/aU5amTmKaJZbRJ/4B8bQfLGoMS+N1Z5U4gxhNS8RYCf2AKpBL4 kz2xSSIh1Aa5VixDBrWdh8kwE0PE0Tt2iAaYHR4Dp+wMvCNlzxO7IB3fRe2OzAEYTZ KldeOjSmp7ac85/bMLetZA515zeXyjj3ixsD2deL5ZFWlpkqkajGnin1yMaLv4K6wU WSVucnUbJLiUFksytWxJDSXCSZaxaVZyn0PsIAXdn3ZPABK+3MsnrLTMlFezCj/Lnk N32tL+jBx0kFJmdlHREar1MevrxdUwdLeF+5mlu31bKpQhLioD21OyhrePP4WhRN2g dQTzCMI3Tlt9A== From: Giulio Benetti To: Lubomir Rintel Cc: Rob Herring , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Russell King , Giulio Benetti , Alexandre Belloni , Krzysztof Kozlowski , Andrey Zhizhikin , Sam Ravnborg , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 2/7] ARM: dts: pxa168-aspenite: fix wrong static ip autoconf Date: Wed, 3 Nov 2021 00:54:51 +0100 Message-Id: <20211102235456.710617-3-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> References: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-CMAE-Envelope: MS4wfGpcu/r5eG+py2luhJEriB/6aDLbc+j1VFN7E59ZzTmOdLGJUSPBGQHId+NyA6guTYUmns0JRHD4ToYu4InSzA7ncZd878e2NBenGHYVa2L+WivbIxCx 1nLvioNNI9gN9cYO/glWHHItfS3Fcx/Dw2Huhf6V1Uy3nHnxZEBvJjVqQVXnd3KPOleGD5Sv6A6Gtol9p+aGW8u/QlHXaX8mEuWFzY06gSoSkXJ84rDtTwWl kPxhdTtbzwXRZHFzs9GuhRmP1dSoLm3WPna1xH/7uxF/5Vn69wKKWQEcAyC85vDiG805QbhQw6TFub1nIc7HY1fv7QOHDl3cG3LGQz/fcDZno+0LIZQfLfo4 pDkKkNiIBnmf+vcSW2E2Ji334yVtIkYGX7Yi3Rge+QiLjpnfN4oR+sfzmbIbBVgRK9NY02TrQSMPZQ89c+wEGRBe5XIwwlr2Mf/syJE2Tyw/GAsWuNjOVb4l TCJNsMVvKLsrQfWv9TDbUeqR7ui48mKjxfQOlfNeXaKNogosm2/tELPxRxwXl6YQaeRGjFmCH3EwaZu07gCBxKqOb5TcpUcR2etv2Xj7em25O7i2s5Z38zIt Kq1TYkJ2GlSoYlkAxfs9NgWEqaIGn1cF66lCI69/f2vKP702ccgikyj6OEWvpM5SC1McDDG06LWM8vwshxEdAXkshXX8ta7fYFqXwh9cYy1KPA== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" At the moment field is set to 'on' but judging from the static ip setting it should be set to 'off', since in [1] states: ``` off or none: don't use autoconfiguration (do static IP assignment instead) on or any: use any protocol available in the kernel (default) ``` So let's substitute 'on' with 'off'. [1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt Signed-off-by: Giulio Benetti --- arch/arm/boot/dts/pxa168-aspenite.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/pxa168-aspenite.dts b/arch/arm/boot/dts/pxa1= 68-aspenite.dts index 8bade6bf395b..68076f1c5cd3 100644 --- a/arch/arm/boot/dts/pxa168-aspenite.dts +++ b/arch/arm/boot/dts/pxa168-aspenite.dts @@ -12,7 +12,7 @@ / { compatible =3D "mrvl,pxa168-aspenite", "mrvl,pxa168"; =20 chosen { - bootargs =3D "console=3DttyS0,115200 root=3D/dev/nfs nfsroot=3D192.168.1= .100:/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:on"; + bootargs =3D "console=3DttyS0,115200 root=3D/dev/nfs nfsroot=3D192.168.1= .100:/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:off"; }; =20 memory { --=20 2.25.1 From nobody Thu Apr 2 00:48:39 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AA5C7C433F5 for ; Tue, 2 Nov 2021 23:55:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8F40360E0C for ; Tue, 2 Nov 2021 23:55:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231547AbhKBX5q (ORCPT ); Tue, 2 Nov 2021 19:57:46 -0400 Received: from smtpcmd13146.aruba.it ([62.149.156.146]:55007 "EHLO smtpcmd13146.aruba.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229960AbhKBX5g (ORCPT ); Tue, 2 Nov 2021 19:57:36 -0400 Received: from ubuntu.localdomain ([146.241.216.221]) by Aruba Outgoing Smtp with ESMTPSA id i3cHmA3UmueW5i3cJmi7oB; Wed, 03 Nov 2021 00:55:00 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aruba.it; s=a1; t=1635897300; bh=lhiNpRTEG/VNu3i9XvsLI9Q6PVfjYb5hPZrKzrJsi/o=; h=From:To:Subject:Date:MIME-Version; b=dr4m6/R2eY+Mf9Z36nMaXf9rdUYvj36B/cV+ej+DhMMDtRx8/QjitlXRfSSeFjik5 nlAxOmVOT+trsLSVKzA3CgD4uPKkYCcaw8ntASzgwdyHY6IlB7STRqbmqY1i9LXu7O La58uPoVsL5ntcJZ73zfWYrrrICHowLg8VuulsNUw+ldlZCQHO9C59BBk923wTGlJk cB5oDIW3ZC11yJYIJuuH5bmHYDEt3aYmlOagyKIa3WRkeWGFeZi4NBQ4k4ktf+7ar1 +u+nykhF/bTx7IS5JZDk3AHGGJt7dbMZu3fwV2Gi0smxNCSZc2+OOpyX+MQysc+YhX EghkaexqDMKtA== From: Giulio Benetti To: Lubomir Rintel Cc: Rob Herring , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Russell King , Giulio Benetti , Alexandre Belloni , Krzysztof Kozlowski , Andrey Zhizhikin , Sam Ravnborg , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 3/7] ARM: dts: pxa910-dkb: fix wrong static ip autoconf Date: Wed, 3 Nov 2021 00:54:52 +0100 Message-Id: <20211102235456.710617-4-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> References: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-CMAE-Envelope: MS4wfPR7dtRy+oTng6wIOuL14h9LZlrRhFGTbjFKLk34jhtYslotalJmOQ++yRHs+iQ+oyuRgL8s+5+bcu7TSkl16EQH/DCFwmPwgRGqW0YJ2kcURtPueKzq OgAIEphyfNz0Sfg1/jDKGYBHX1dyxbQiCki5dS9SxyzOlMnHDfU5Wsh3KNu8rportRAhqDhhrM0/TOWnXNk2gBD6O/jkhgXi2E6d2+70dsrYu+KHyFkohueS Aosmnz6Be3IfdE3jBUPm1suyFWHU/CJMPBi8EJkG52MqN441ZNZ5US3V4eUDTMQrV2SpPtDkUED81pCMAxjI9hS1ypoIswOlBZ1BOqwUvfeS1Jt60+l3rx0I FBLWWOZcj6Wc52uVSxRJ90Ef5mT0Oyo6cQWAThDpSXIaDwowZxYdxHx2PnqZVgMFqXjEPH/rprdS4OVeWkfvxPhMZJ7Mu5ifA+/3O+TYFOgvvXe+7MxVG6gu 4+d8IBOZP7Apnmhi+p8EKeB/1p28yj93x4TbVh6yP/wsUHnGuDGb6TZgsc4bw3oc82wnohY5x188ZY2AROLwVkvYqKD/8S9ogeGf2Bdx7q7OQs4Wi9Dirbk0 RxbsvE7mi3/IFZJphCb5hZc2Ww9AB7yY2LibfHWSZDEP8BKcANxlRmGV/+x5lxaEhtsXj0fo8TWiayx4FkJMaB3ixNiJ/6lfoNZmWJH/DqYW0Q== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" At the moment field is set to 'on' but judging from the static ip setting it should be set to 'off', since in [1] states: ``` off or none: don't use autoconfiguration (do static IP assignment instead) on or any: use any protocol available in the kernel (default) ``` So let's substitute 'on' with 'off'. [1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt Signed-off-by: Giulio Benetti --- arch/arm/boot/dts/pxa910-dkb.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/pxa910-dkb.dts b/arch/arm/boot/dts/pxa910-dk= b.dts index ce76158867c7..297a34f2ef2b 100644 --- a/arch/arm/boot/dts/pxa910-dkb.dts +++ b/arch/arm/boot/dts/pxa910-dkb.dts @@ -12,7 +12,7 @@ / { compatible =3D "mrvl,pxa910-dkb", "mrvl,pxa910"; =20 chosen { - bootargs =3D "console=3DttyS0,115200 root=3D/dev/nfs nfsroot=3D192.168.1= .100:/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:on"; + bootargs =3D "console=3DttyS0,115200 root=3D/dev/nfs nfsroot=3D192.168.1= .100:/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:off"; }; =20 memory { --=20 2.25.1 From nobody Thu Apr 2 00:48:39 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 45DC7C433F5 for ; Tue, 2 Nov 2021 23:55:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2DCE160E0C for ; Tue, 2 Nov 2021 23:55:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231812AbhKBX54 (ORCPT ); Tue, 2 Nov 2021 19:57:56 -0400 Received: from smtpcmd13146.aruba.it ([62.149.156.146]:57186 "EHLO smtpcmd13146.aruba.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231348AbhKBX5i (ORCPT ); Tue, 2 Nov 2021 19:57:38 -0400 Received: from ubuntu.localdomain ([146.241.216.221]) by Aruba Outgoing Smtp with ESMTPSA id i3cHmA3UmueW5i3cKmi7os; Wed, 03 Nov 2021 00:55:00 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aruba.it; s=a1; t=1635897300; bh=6FTXldqIVH49mQUDD490TOZJdcoOZM40XWjBAPwXklk=; h=From:To:Subject:Date:MIME-Version; b=GZiq9e7PMSL3t7hacCqipd3C/4fcEMAGc7t3v32zakKO7XjLIg1dsnVgEo0iICE4g fOf9TYkyRLrh7ngK3kQF1QBh8OKz7+ESqbB30HR6QKI62nPLIKPzL4v7YGvzm07fn/ uvPZaAOVANAVqi8FI4Sm28D+SbFoK59aHvGsjIJNU5rAC2uTrewOy5asSCY1Zdiit6 46+sExK4eA8RlV9Ynv/HHRJNQsxqvl8FCl1lQyP3It2twGAsWSocfgURFgIKSHpbH/ O1E5lj0qZjc9NzlVNU/qHh9o97oFiPvv2iWuUppQy3vmyJswiXP3HIfNpXBFjPimTa 3Mns4TmSbQ0nA== From: Giulio Benetti To: Lubomir Rintel Cc: Rob Herring , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Russell King , Giulio Benetti , Alexandre Belloni , Krzysztof Kozlowski , Andrey Zhizhikin , Sam Ravnborg , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 4/7] ARM: mmp2: update mmp2_defconfig to fix wrong static ip autoconf Date: Wed, 3 Nov 2021 00:54:53 +0100 Message-Id: <20211102235456.710617-5-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> References: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-CMAE-Envelope: MS4wfPR7dtRy+oTng6wIOuL14h9LZlrRhFGTbjFKLk34jhtYslotalJmOQ++yRHs+iQ+oyuRgL8s+5+bcu7TSkl16EQH/DCFwmPwgRGqW0YJ2kcURtPueKzq OgAIEphyfNz0Sfg1/jDKGYBHX1dyxbQiCki5dS9SxyzOlMnHDfU5Wsh3KNu8rportRAhqDhhrM0/TOWnXNk2gBD6O/jkhgXi2E6d2+70dsrYu+KHyFkohueS Aosmnz6Be3IfdE3jBUPm1suyFWHU/CJMPBi8EJkG52MqN441ZNZ5US3V4eUDTMQrV2SpPtDkUED81pCMAxjI9hS1ypoIswOlBZ1BOqwUvfeS1Jt60+l3rx0I FBLWWOZcj6Wc52uVSxRJ90Ef5mT0Oyo6cQWAThDpSXIaDwowZxYdxHx2PnqZVgMFqXjEPH/rprdS4OVeWkfvxPhMZJ7Mu5ifA+/3O+TYFOgvvXe+7MxVG6gu 4+d8IBOZP7Apnmhi+p8EKeB/1p28yj93x4TbVh6yP/wsUHnGuDGb6TZgsc4bw3oc82wnohY5x188ZY2AROLwVkvYqKD/8S9ogeGf2Bdx7q7OQs4Wi9Dirbk0 RxbsvE7mi3/IFZJphCb5hZc2Ww9AB7yY2LibfHWSZDEP8BKcANxlRmGV/+x5lxaEhtsXj0fo8TWiayx4FkJMaB3ixNiJ/6lfoNZmWJH/DqYW0Q== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" At the moment field is set to 'on' but judging from the static ip setting it should be set to 'off', since in [1] states: ``` off or none: don't use autoconfiguration (do static IP assignment instead) on or any: use any protocol available in the kernel (default) ``` So let's substitute 'on' with 'off'. [1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt Signed-off-by: Giulio Benetti --- arch/arm/configs/mmp2_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/configs/mmp2_defconfig b/arch/arm/configs/mmp2_defcon= fig index a5e8d2235a1a..231971ee0c8b 100644 --- a/arch/arm/configs/mmp2_defconfig +++ b/arch/arm/configs/mmp2_defconfig @@ -15,7 +15,7 @@ CONFIG_PREEMPT=3Dy CONFIG_AEABI=3Dy CONFIG_ZBOOT_ROM_TEXT=3D0x0 CONFIG_ZBOOT_ROM_BSS=3D0x0 -CONFIG_CMDLINE=3D"root=3D/dev/nfs rootfstype=3Dnfs nfsroot=3D192.168.1.100= :/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:on console= =3DttyS2,38400 mem=3D128M user_debug=3D255 earlyprintk" +CONFIG_CMDLINE=3D"root=3D/dev/nfs rootfstype=3Dnfs nfsroot=3D192.168.1.100= :/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:off consol= e=3DttyS2,38400 mem=3D128M user_debug=3D255 earlyprintk" CONFIG_VFP=3Dy CONFIG_NET=3Dy CONFIG_PACKET=3Dy --=20 2.25.1 From nobody Thu Apr 2 00:48:39 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E2E76C433EF for ; Tue, 2 Nov 2021 23:55:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C896B61152 for ; Tue, 2 Nov 2021 23:55:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231785AbhKBX5y (ORCPT ); Tue, 2 Nov 2021 19:57:54 -0400 Received: from smtpcmd13146.aruba.it ([62.149.156.146]:53923 "EHLO smtpcmd13146.aruba.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231383AbhKBX5h (ORCPT ); Tue, 2 Nov 2021 19:57:37 -0400 Received: from ubuntu.localdomain ([146.241.216.221]) by Aruba Outgoing Smtp with ESMTPSA id i3cHmA3UmueW5i3cLmi7pT; Wed, 03 Nov 2021 00:55:01 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aruba.it; s=a1; t=1635897301; bh=ynIO0mTSNG8tw09g0D+x+IDu4qU8epvSNYGB4CRniXw=; h=From:To:Subject:Date:MIME-Version; b=hrbTXEzDNXQ/8hSrYTtZ0sX7jfA5qPpxF3UsajqBm94KOKQdgubYhQJxmid3X6ysx DmpMuswinnhnAxxVh39DQOxdQWobOU6MAq2N3BIaMcJt7WyPU8sp2fQJeNBfdHbBZm ijMl/jEtGosjcxfU0dzY9Sm5CiawMZ0Bcje5FNlBaJjIdptWDe9G0fuEkR5tQqD4Jp +I05A976mcLY7mclkmNVPhCnj9BzfB8cg5JwL5Bi4Jir6vHyKuwFtbKvhb1ORwoxnG 9FVtcoWNTeZTqcrzZ8NNdlK4N6AYyS6rd52MZZ/dKSWAGpbT2X4ThuZDuocYPN/uiw pMJbNpcikJ2lA== From: Giulio Benetti To: Lubomir Rintel Cc: Rob Herring , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Russell King , Giulio Benetti , Alexandre Belloni , Krzysztof Kozlowski , Andrey Zhizhikin , Sam Ravnborg , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 5/7] ARM: pxa168: update pxa168_defconfig to fix wrong static ip autoconf Date: Wed, 3 Nov 2021 00:54:54 +0100 Message-Id: <20211102235456.710617-6-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> References: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-CMAE-Envelope: MS4wfNZBlezE3q4CTdtZBYX3W4QjIdrBUp2QWAGFbYEimtHwREntB47cQyDqOBXrXuxkSA2sc2PnU3jl8Q9Z+LycDtfJKTh9zihgJlCUmUDAcEOYSxWJv3id 6Jhk2tZ2xsD8KgVTAmkWt5axGzbcgVGbvgHFKpm0Css2PEMdH+bYOVg0mSBzSbgMFDHZdxBTFdFP57a/JIqQEyLfRapKiSWJLBjDyV7LWiaO8w8v3NW+3ss+ j6XPLdcUb31elwRmSG6zQxGUEHBEJJ6YlZYEjttFbUFxyfHDxDLxq0+Hj47Z5+Gz4yuLm/Ak+jVj41YP9Kbk9d3/bvdtLwvf1SLCmzyentzxWivzi5+3675k XFSrBCj1rzpG6jATW1OfnBQas3+Jz87qUVlMYljF7AtmX6tOQq7JSIDCPeGbj/Hl5ikr+Nrw90HXKHqCKOmNfLpwTrOoajfv9fYIL+i5L1wkHIP2NW3j8Xfr UUcgBBXkl0P+10ZICPvaDYtNfymOaSFRaPNxFBCOfrmoaXZzl7mN0Znm9TnfW86ihPK6JGNWX0NkKxLdGr5WpfgvwcHU/5iwKolSunea05LL8VyBqoawOcgo sOy0zyuJtcH8QKCWMkXap03qj9VOFIhpNQx8P0gD4REfSdS05joJEgmnJALrhZnqw/3UU1KJFgB/yi+10d17Sc3ecL72IzBEAZsR6n5l0UGZYg== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" At the moment field is set to 'on' but judging from the static ip setting it should be set to 'off', since in [1] states: ``` off or none: don't use autoconfiguration (do static IP assignment instead) on or any: use any protocol available in the kernel (default) ``` So let's substitute 'on' with 'off'. [1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt Signed-off-by: Giulio Benetti --- arch/arm/configs/pxa168_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/configs/pxa168_defconfig b/arch/arm/configs/pxa168_de= fconfig index 0947f022954d..3a972bae1be3 100644 --- a/arch/arm/configs/pxa168_defconfig +++ b/arch/arm/configs/pxa168_defconfig @@ -16,7 +16,7 @@ CONFIG_PREEMPT=3Dy CONFIG_AEABI=3Dy CONFIG_ZBOOT_ROM_TEXT=3D0x0 CONFIG_ZBOOT_ROM_BSS=3D0x0 -CONFIG_CMDLINE=3D"root=3D/dev/nfs rootfstype=3Dnfs nfsroot=3D192.168.2.100= :/nfsroot/ ip=3D192.168.2.101:192.168.2.100::255.255.255.0::eth0:on console= =3DttyS0,115200 mem=3D128M" +CONFIG_CMDLINE=3D"root=3D/dev/nfs rootfstype=3Dnfs nfsroot=3D192.168.2.100= :/nfsroot/ ip=3D192.168.2.101:192.168.2.100::255.255.255.0::eth0:off consol= e=3DttyS0,115200 mem=3D128M" CONFIG_FPE_NWFPE=3Dy CONFIG_NET=3Dy CONFIG_PACKET=3Dy --=20 2.25.1 From nobody Thu Apr 2 00:48:39 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E53AFC433EF for ; Tue, 2 Nov 2021 23:55:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2FD4F61051 for ; Tue, 2 Nov 2021 23:55:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231640AbhKBX56 (ORCPT ); Tue, 2 Nov 2021 19:57:58 -0400 Received: from smtpcmd13146.aruba.it ([62.149.156.146]:46771 "EHLO smtpcmd13146.aruba.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231360AbhKBX5i (ORCPT ); Tue, 2 Nov 2021 19:57:38 -0400 Received: from ubuntu.localdomain ([146.241.216.221]) by Aruba Outgoing Smtp with ESMTPSA id i3cHmA3UmueW5i3cLmi7q8; Wed, 03 Nov 2021 00:55:02 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aruba.it; s=a1; t=1635897302; bh=8kdScjOBBS93+UGfp956fOdLvuBlLnFPwKLK2Q17pVg=; h=From:To:Subject:Date:MIME-Version; b=C1FErG0c8fd6YeIQs/B2RiIGKL31KdtkThsGV/aGjqy2Aa/VG8N8XSa6oUu17D0Qd ckQ7j87eSrJrZPqJFiRkXzVsBhvv/3zGWyqWVsmJtacV7c3Jn/A1qUbbo+PAoaGCmJ BcHj1oeK2BT/kBcjWCp888M8b0iPGQMWCTmqCGUJfxOTFN54YBU88yp1a8JJQUG8v6 IRSUceJ1oHzfndJWUMgeFqanqpWzvG+nkdrPcjUWqHKFy7GocpTUdrvkan/SYn/Qz3 zksAnqBw2QJAdgcpAlwpJTlTpkRhzrPiR6cjyba7stIyV0gzwrjp/GLCYfSoz3fYsy 3OpjyRewhi9OQ== From: Giulio Benetti To: Lubomir Rintel Cc: Rob Herring , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Russell King , Giulio Benetti , Alexandre Belloni , Krzysztof Kozlowski , Andrey Zhizhikin , Sam Ravnborg , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 6/7] ARM: pxa3xx: update pxa3xx_defconfig to fix wrong static ip autoconf Date: Wed, 3 Nov 2021 00:54:55 +0100 Message-Id: <20211102235456.710617-7-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> References: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-CMAE-Envelope: MS4wfBeQFITUefc5p0YRpGdN1pihTrXklNwZgSko7+yR4yXBPuiEG8B2bMMsjBFVAmB4oh6rHv0c1hIIFJvLXsxSU6si7mv/2Hm1WcI5GUmxDgJmmZEBljMr xy84rxfnFxsCHKrOmYyFiN6Qa98tfabuS4s+cH3lqtjnnjBgSWS9g/qloC80P6VJ7Ly24epkv8yXpjlldI0kX6u3ugDHeZyBy0IuBXet+Fe3X2RYIoUFhgUs yKQHI4X96RNTksVLZI7vJiFLJXruo9VnUejW0pIIiibHavu1XD42ZxnSfbGim7FocYR3GmDwe6o5dqZUQv/eU7PHpRxsIGXdAkxo/Hdu5VMvb4g0Uw5b9qZr zf6as/zTaVM9/8t+pbfT2OYPe2jkSt6cjMCX8ZQ2Wg+CA5zn/R5WS0KuXUGY76w7I5Xa3LDElMr5uh7blA6+rs6jQIWsH1rJFBnflWNbCnUz10mCGua2ZsqZ PHgCE1Qg3bcK6/j7lWOJxNRZem16tPN7cwjNv8tceHRd3/J2zPhny5RFVCgPBVrGROL35S+v5OCQaGT91PbhSay1GzPv45Sz+EK0/aDcFX2jeQb2VaeTZB6L H4UeG3pO5phNDf3lIVQCjrJWMep/DLUqgwW1D4e088IzP73s55WE/uzM3btloUQoiZIH91CqQX1aOP2XGZ1cf3r5fmCV4qNDuCLgM3f8/zGxPQ== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" At the moment field is set to 'on' but judging from the static ip setting it should be set to 'off', since in [1] states: ``` off or none: don't use autoconfiguration (do static IP assignment instead) on or any: use any protocol available in the kernel (default) ``` So let's substitute 'on' with 'off'. [1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt Signed-off-by: Giulio Benetti --- arch/arm/configs/pxa3xx_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/configs/pxa3xx_defconfig b/arch/arm/configs/pxa3xx_de= fconfig index f0c34017f2aa..ffe106c4c006 100644 --- a/arch/arm/configs/pxa3xx_defconfig +++ b/arch/arm/configs/pxa3xx_defconfig @@ -14,7 +14,7 @@ CONFIG_PREEMPT=3Dy CONFIG_AEABI=3Dy CONFIG_ZBOOT_ROM_TEXT=3D0x0 CONFIG_ZBOOT_ROM_BSS=3D0x0 -CONFIG_CMDLINE=3D"root=3D/dev/nfs rootfstype=3Dnfs nfsroot=3D192.168.1.100= :/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:on console= =3DttyS0,115200 mem=3D64M debug" +CONFIG_CMDLINE=3D"root=3D/dev/nfs rootfstype=3Dnfs nfsroot=3D192.168.1.100= :/nfsroot/ ip=3D192.168.1.101:192.168.1.100::255.255.255.0::eth0:off consol= e=3DttyS0,115200 mem=3D64M debug" CONFIG_FPE_NWFPE=3Dy CONFIG_NET=3Dy CONFIG_PACKET=3Dy --=20 2.25.1 From nobody Thu Apr 2 00:48:39 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E77DBC433FE for ; Tue, 2 Nov 2021 23:55:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CDC25610FC for ; Tue, 2 Nov 2021 23:55:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231874AbhKBX6A (ORCPT ); Tue, 2 Nov 2021 19:58:00 -0400 Received: from smtpcmd13151.aruba.it ([62.149.156.151]:37246 "EHLO smtpcmd13151.aruba.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231461AbhKBX5j (ORCPT ); Tue, 2 Nov 2021 19:57:39 -0400 Received: from ubuntu.localdomain ([146.241.216.221]) by Aruba Outgoing Smtp with ESMTPSA id i3cHmA3UmueW5i3cMmi7qk; Wed, 03 Nov 2021 00:55:02 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aruba.it; s=a1; t=1635897302; bh=uEmAMAGs4vUbQ1vkWnqilm8FyrWQhxYkvOIUp+u0ruY=; h=From:To:Subject:Date:MIME-Version; b=YryxOMiDDeljOR6UTjDkBSqbWtAD2rNIXhzUJISndDV3KrgezwECBo2hG/NEJdg8c UcEWi/2kASSBtC/zy3upNPeQA3lDlpKhtYC7+LcWrlzh2PQ1CPLjHXIGj4fpcjevyu FR4/SZqG8gu/LnZ19Z0NCdAWxyzbAbnP+z+7UpmfnY+IXjH7dYDk4WAHBkHIC/Cwjb MUR6BZfsqVgAfc3fPDl+SyBPFFc8xgjeJUl72IkrgSTppXRztEMBIT2SRRFuqpxDTo JLGZ2nUEO9ByQSCr9sfudAiHSgNbQpsF94/dChwntAmM2UvICEmYX0WFQVWZkWR/2f fUruoR4Xpd61w== From: Giulio Benetti To: Lubomir Rintel Cc: Rob Herring , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Russell King , Giulio Benetti , Alexandre Belloni , Krzysztof Kozlowski , Andrey Zhizhikin , Sam Ravnborg , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 7/7] ARM: pxa910: update pxa910_defconfig to fix wrong static ip autoconf Date: Wed, 3 Nov 2021 00:54:56 +0100 Message-Id: <20211102235456.710617-8-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> References: <20211102235456.710617-1-giulio.benetti@benettiengineering.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-CMAE-Envelope: MS4wfBeQFITUefc5p0YRpGdN1pihTrXklNwZgSko7+yR4yXBPuiEG8B2bMMsjBFVAmB4oh6rHv0c1hIIFJvLXsxSU6si7mv/2Hm1WcI5GUmxDgJmmZEBljMr xy84rxfnFxsCHKrOmYyFiN6Qa98tfabuS4s+cH3lqtjnnjBgSWS9g/qloC80P6VJ7Ly24epkv8yXpjlldI0kX6u3ugDHeZyBy0IuBXet+Fe3X2RYIoUFhgUs yKQHI4X96RNTksVLZI7vJiFLJXruo9VnUejW0pIIiibHavu1XD42ZxnSfbGim7FocYR3GmDwe6o5dqZUQv/eU7PHpRxsIGXdAkxo/Hdu5VMvb4g0Uw5b9qZr zf6as/zTaVM9/8t+pbfT2OYPe2jkSt6cjMCX8ZQ2Wg+CA5zn/R5WS0KuXUGY76w7I5Xa3LDElMr5uh7blA6+rs6jQIWsH1rJFBnflWNbCnUz10mCGua2ZsqZ PHgCE1Qg3bcK6/j7lWOJxNRZem16tPN7cwjNv8tceHRd3/J2zPhny5RFVCgPBVrGROL35S+v5OCQaGT91PbhSay1GzPv45Sz+EK0/aDcFX2jeQb2VaeTZB6L H4UeG3pO5phNDf3lIVQCjrJWMep/DLUqgwW1D4e088IzP73s55WE/uzM3btloUQoiZIH91CqQX1aOP2XGZ1cf3r5fmCV4qNDuCLgM3f8/zGxPQ== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" At the moment field is set to 'on' but judging from the static ip setting it should be set to 'off', since in [1] states: ``` off or none: don't use autoconfiguration (do static IP assignment instead) on or any: use any protocol available in the kernel (default) ``` So let's substitute 'on' with 'off'. [1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt Signed-off-by: Giulio Benetti --- arch/arm/configs/pxa910_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/configs/pxa910_defconfig b/arch/arm/configs/pxa910_de= fconfig index b21196372158..36ced16095c8 100644 --- a/arch/arm/configs/pxa910_defconfig +++ b/arch/arm/configs/pxa910_defconfig @@ -16,7 +16,7 @@ CONFIG_PREEMPT=3Dy CONFIG_AEABI=3Dy CONFIG_ZBOOT_ROM_TEXT=3D0x0 CONFIG_ZBOOT_ROM_BSS=3D0x0 -CONFIG_CMDLINE=3D"root=3D/dev/nfs rootfstype=3Dnfs nfsroot=3D192.168.2.100= :/nfsroot/ ip=3D192.168.2.101:192.168.2.100::255.255.255.0::eth0:on console= =3DttyS0,115200 mem=3D128M earlyprintk" +CONFIG_CMDLINE=3D"root=3D/dev/nfs rootfstype=3Dnfs nfsroot=3D192.168.2.100= :/nfsroot/ ip=3D192.168.2.101:192.168.2.100::255.255.255.0::eth0:off consol= e=3DttyS0,115200 mem=3D128M earlyprintk" CONFIG_FPE_NWFPE=3Dy CONFIG_NET=3Dy CONFIG_PACKET=3Dy --=20 2.25.1