linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig
@ 2021-11-02 23:54 Giulio Benetti
  2021-11-02 23:54 ` [PATCH 1/7] ARM: dts: mmp2-brownstone: fix wrong static ip autoconf Giulio Benetti
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-11-02 23:54 UTC (permalink / raw)
  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, devicetree, linux-kernel

While trying to have a working nfsroot through RNDIS on sunxi I've found
that in bootargs <autoconf> must be set to 'off' to use a static ip setup,
but I've also found that the following boards have it set to 'on' that is
not the <autoconf> setting for static ip as stated here:
https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

And most of all on sunxi RNDIS it doesn't work as static ip nfsroot.

Unfortunately I don't have such boards to give a build and a test, so if
there is someone who could give a try it would be great.

Best regards
---
Giulio Benetti
Benetti Engineering sas

Giulio Benetti (7):
  ARM: dts: mmp2-brownstone: fix wrong static ip autoconf
  ARM: dts: pxa168-aspenite: fix wrong static ip autoconf
  ARM: dts: pxa910-dkb: fix wrong static ip autoconf
  ARM: mmp2: update mmp2_defconfig to fix wrong static ip autoconf
  ARM: pxa168: update pxa168_defconfig to fix wrong static ip autoconf
  ARM: pxa3xx: update pxa3xx_defconfig to fix wrong static ip autoconf
  ARM: pxa910: update pxa910_defconfig to fix wrong static ip autoconf

 arch/arm/boot/dts/mmp2-brownstone.dts | 2 +-
 arch/arm/boot/dts/pxa168-aspenite.dts | 2 +-
 arch/arm/boot/dts/pxa910-dkb.dts      | 2 +-
 arch/arm/configs/mmp2_defconfig       | 2 +-
 arch/arm/configs/pxa168_defconfig     | 2 +-
 arch/arm/configs/pxa3xx_defconfig     | 2 +-
 arch/arm/configs/pxa910_defconfig     | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 1/7] ARM: dts: mmp2-brownstone: fix wrong static ip autoconf
  2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
@ 2021-11-02 23:54 ` Giulio Benetti
  2021-11-02 23:54 ` [PATCH 2/7] ARM: dts: pxa168-aspenite: " Giulio Benetti
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-11-02 23:54 UTC (permalink / raw)
  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, devicetree, linux-kernel

At the moment <autoconf> field is set to 'on' but judging from the static
ip setting it should be set to 'off', since in [1] states:
```
<autoconf>
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 <autoconf> 'on' with 'off'.

[1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 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 = "mrvl,mmp2-brownstone", "mrvl,mmp2";
 
 	chosen {
-		bootargs = "console=ttyS2,38400 root=/dev/nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:on";
+		bootargs = "console=ttyS2,38400 root=/dev/nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:off";
 	};
 
 	memory {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 2/7] ARM: dts: pxa168-aspenite: fix wrong static ip autoconf
  2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
  2021-11-02 23:54 ` [PATCH 1/7] ARM: dts: mmp2-brownstone: fix wrong static ip autoconf Giulio Benetti
@ 2021-11-02 23:54 ` Giulio Benetti
  2021-11-02 23:54 ` [PATCH 3/7] ARM: dts: pxa910-dkb: " Giulio Benetti
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-11-02 23:54 UTC (permalink / raw)
  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, devicetree, linux-kernel

At the moment <autoconf> field is set to 'on' but judging from the static
ip setting it should be set to 'off', since in [1] states:
```
<autoconf>
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 <autoconf> 'on' with 'off'.

[1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 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/pxa168-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 = "mrvl,pxa168-aspenite", "mrvl,pxa168";
 
 	chosen {
-		bootargs = "console=ttyS0,115200 root=/dev/nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:on";
+		bootargs = "console=ttyS0,115200 root=/dev/nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:off";
 	};
 
 	memory {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 3/7] ARM: dts: pxa910-dkb: fix wrong static ip autoconf
  2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
  2021-11-02 23:54 ` [PATCH 1/7] ARM: dts: mmp2-brownstone: fix wrong static ip autoconf Giulio Benetti
  2021-11-02 23:54 ` [PATCH 2/7] ARM: dts: pxa168-aspenite: " Giulio Benetti
@ 2021-11-02 23:54 ` Giulio Benetti
  2021-11-02 23:54 ` [PATCH 4/7] ARM: mmp2: update mmp2_defconfig to " Giulio Benetti
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-11-02 23:54 UTC (permalink / raw)
  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, devicetree, linux-kernel

At the moment <autoconf> field is set to 'on' but judging from the static
ip setting it should be set to 'off', since in [1] states:
```
<autoconf>
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 <autoconf> 'on' with 'off'.

[1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 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-dkb.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 = "mrvl,pxa910-dkb", "mrvl,pxa910";
 
 	chosen {
-		bootargs = "console=ttyS0,115200 root=/dev/nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:on";
+		bootargs = "console=ttyS0,115200 root=/dev/nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:off";
 	};
 
 	memory {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 4/7] ARM: mmp2: update mmp2_defconfig to fix wrong static ip autoconf
  2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
                   ` (2 preceding siblings ...)
  2021-11-02 23:54 ` [PATCH 3/7] ARM: dts: pxa910-dkb: " Giulio Benetti
@ 2021-11-02 23:54 ` Giulio Benetti
  2021-11-02 23:54 ` [PATCH 5/7] ARM: pxa168: update pxa168_defconfig " Giulio Benetti
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-11-02 23:54 UTC (permalink / raw)
  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, devicetree, linux-kernel

At the moment <autoconf> field is set to 'on' but judging from the static
ip setting it should be set to 'off', since in [1] states:
```
<autoconf>
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 <autoconf> 'on' with 'off'.

[1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 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_defconfig
index a5e8d2235a1a..231971ee0c8b 100644
--- a/arch/arm/configs/mmp2_defconfig
+++ b/arch/arm/configs/mmp2_defconfig
@@ -15,7 +15,7 @@ CONFIG_PREEMPT=y
 CONFIG_AEABI=y
 CONFIG_ZBOOT_ROM_TEXT=0x0
 CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:on console=ttyS2,38400 mem=128M user_debug=255 earlyprintk"
+CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:off console=ttyS2,38400 mem=128M user_debug=255 earlyprintk"
 CONFIG_VFP=y
 CONFIG_NET=y
 CONFIG_PACKET=y
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 5/7] ARM: pxa168: update pxa168_defconfig to fix wrong static ip autoconf
  2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
                   ` (3 preceding siblings ...)
  2021-11-02 23:54 ` [PATCH 4/7] ARM: mmp2: update mmp2_defconfig to " Giulio Benetti
@ 2021-11-02 23:54 ` Giulio Benetti
  2021-11-02 23:54 ` [PATCH 6/7] ARM: pxa3xx: update pxa3xx_defconfig " Giulio Benetti
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-11-02 23:54 UTC (permalink / raw)
  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, devicetree, linux-kernel

At the moment <autoconf> field is set to 'on' but judging from the static
ip setting it should be set to 'off', since in [1] states:
```
<autoconf>
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 <autoconf> 'on' with 'off'.

[1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 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_defconfig
index 0947f022954d..3a972bae1be3 100644
--- a/arch/arm/configs/pxa168_defconfig
+++ b/arch/arm/configs/pxa168_defconfig
@@ -16,7 +16,7 @@ CONFIG_PREEMPT=y
 CONFIG_AEABI=y
 CONFIG_ZBOOT_ROM_TEXT=0x0
 CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.2.100:/nfsroot/ ip=192.168.2.101:192.168.2.100::255.255.255.0::eth0:on console=ttyS0,115200 mem=128M"
+CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.2.100:/nfsroot/ ip=192.168.2.101:192.168.2.100::255.255.255.0::eth0:off console=ttyS0,115200 mem=128M"
 CONFIG_FPE_NWFPE=y
 CONFIG_NET=y
 CONFIG_PACKET=y
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 6/7] ARM: pxa3xx: update pxa3xx_defconfig to fix wrong static ip autoconf
  2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
                   ` (4 preceding siblings ...)
  2021-11-02 23:54 ` [PATCH 5/7] ARM: pxa168: update pxa168_defconfig " Giulio Benetti
@ 2021-11-02 23:54 ` Giulio Benetti
  2021-11-02 23:54 ` [PATCH 7/7] ARM: pxa910: update pxa910_defconfig " Giulio Benetti
  2022-01-19  7:18 ` [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
  7 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-11-02 23:54 UTC (permalink / raw)
  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, devicetree, linux-kernel

At the moment <autoconf> field is set to 'on' but judging from the static
ip setting it should be set to 'off', since in [1] states:
```
<autoconf>
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 <autoconf> 'on' with 'off'.

[1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 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_defconfig
index f0c34017f2aa..ffe106c4c006 100644
--- a/arch/arm/configs/pxa3xx_defconfig
+++ b/arch/arm/configs/pxa3xx_defconfig
@@ -14,7 +14,7 @@ CONFIG_PREEMPT=y
 CONFIG_AEABI=y
 CONFIG_ZBOOT_ROM_TEXT=0x0
 CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:on console=ttyS0,115200 mem=64M debug"
+CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.1.100:/nfsroot/ ip=192.168.1.101:192.168.1.100::255.255.255.0::eth0:off console=ttyS0,115200 mem=64M debug"
 CONFIG_FPE_NWFPE=y
 CONFIG_NET=y
 CONFIG_PACKET=y
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 7/7] ARM: pxa910: update pxa910_defconfig to fix wrong static ip autoconf
  2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
                   ` (5 preceding siblings ...)
  2021-11-02 23:54 ` [PATCH 6/7] ARM: pxa3xx: update pxa3xx_defconfig " Giulio Benetti
@ 2021-11-02 23:54 ` Giulio Benetti
  2022-01-19  7:18 ` [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
  7 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-11-02 23:54 UTC (permalink / raw)
  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, devicetree, linux-kernel

At the moment <autoconf> field is set to 'on' but judging from the static
ip setting it should be set to 'off', since in [1] states:
```
<autoconf>
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 <autoconf> 'on' with 'off'.

[1]: https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 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_defconfig
index b21196372158..36ced16095c8 100644
--- a/arch/arm/configs/pxa910_defconfig
+++ b/arch/arm/configs/pxa910_defconfig
@@ -16,7 +16,7 @@ CONFIG_PREEMPT=y
 CONFIG_AEABI=y
 CONFIG_ZBOOT_ROM_TEXT=0x0
 CONFIG_ZBOOT_ROM_BSS=0x0
-CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.2.100:/nfsroot/ ip=192.168.2.101:192.168.2.100::255.255.255.0::eth0:on console=ttyS0,115200 mem=128M earlyprintk"
+CONFIG_CMDLINE="root=/dev/nfs rootfstype=nfs nfsroot=192.168.2.100:/nfsroot/ ip=192.168.2.101:192.168.2.100::255.255.255.0::eth0:off console=ttyS0,115200 mem=128M earlyprintk"
 CONFIG_FPE_NWFPE=y
 CONFIG_NET=y
 CONFIG_PACKET=y
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig
  2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
                   ` (6 preceding siblings ...)
  2021-11-02 23:54 ` [PATCH 7/7] ARM: pxa910: update pxa910_defconfig " Giulio Benetti
@ 2022-01-19  7:18 ` Giulio Benetti
  7 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2022-01-19  7:18 UTC (permalink / raw)
  To: Lubomir Rintel
  Cc: Rob Herring, Daniel Mack, Haojian Zhuang, Robert Jarzmik,
	Russell King, Alexandre Belloni, Krzysztof Kozlowski,
	Andrey Zhizhikin, Sam Ravnborg, linux-arm-kernel, devicetree,
	linux-kernel

Hello All,

kindly ping,

On 03/11/21 00:54, Giulio Benetti wrote:
> While trying to have a working nfsroot through RNDIS on sunxi I've found
> that in bootargs <autoconf> must be set to 'off' to use a static ip setup,
> but I've also found that the following boards have it set to 'on' that is
> not the <autoconf> setting for static ip as stated here:
> https://www.kernel.org/doc/Documentation/filesystems/nfs/nfsroot.txt

the documentantion states "<autoconf> must be set to 'off' to use a 
static ip setup"...

> And most of all on sunxi RNDIS it doesn't work as static ip nfsroot.
> 
> Unfortunately I don't have such boards to give a build and a test, so if
> there is someone who could give a try it would be great.

...so I don't even think it really deserves a test IMHO.

Best regards
-- 
Giulio Benetti
Benetti Engineering sas

> Best regards
> ---
> Giulio Benetti
> Benetti Engineering sas
> 
> Giulio Benetti (7):
>    ARM: dts: mmp2-brownstone: fix wrong static ip autoconf
>    ARM: dts: pxa168-aspenite: fix wrong static ip autoconf
>    ARM: dts: pxa910-dkb: fix wrong static ip autoconf
>    ARM: mmp2: update mmp2_defconfig to fix wrong static ip autoconf
>    ARM: pxa168: update pxa168_defconfig to fix wrong static ip autoconf
>    ARM: pxa3xx: update pxa3xx_defconfig to fix wrong static ip autoconf
>    ARM: pxa910: update pxa910_defconfig to fix wrong static ip autoconf
> 
>   arch/arm/boot/dts/mmp2-brownstone.dts | 2 +-
>   arch/arm/boot/dts/pxa168-aspenite.dts | 2 +-
>   arch/arm/boot/dts/pxa910-dkb.dts      | 2 +-
>   arch/arm/configs/mmp2_defconfig       | 2 +-
>   arch/arm/configs/pxa168_defconfig     | 2 +-
>   arch/arm/configs/pxa3xx_defconfig     | 2 +-
>   arch/arm/configs/pxa910_defconfig     | 2 +-
>   7 files changed, 7 insertions(+), 7 deletions(-)
> 


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-01-19  7:18 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-02 23:54 [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti
2021-11-02 23:54 ` [PATCH 1/7] ARM: dts: mmp2-brownstone: fix wrong static ip autoconf Giulio Benetti
2021-11-02 23:54 ` [PATCH 2/7] ARM: dts: pxa168-aspenite: " Giulio Benetti
2021-11-02 23:54 ` [PATCH 3/7] ARM: dts: pxa910-dkb: " Giulio Benetti
2021-11-02 23:54 ` [PATCH 4/7] ARM: mmp2: update mmp2_defconfig to " Giulio Benetti
2021-11-02 23:54 ` [PATCH 5/7] ARM: pxa168: update pxa168_defconfig " Giulio Benetti
2021-11-02 23:54 ` [PATCH 6/7] ARM: pxa3xx: update pxa3xx_defconfig " Giulio Benetti
2021-11-02 23:54 ` [PATCH 7/7] ARM: pxa910: update pxa910_defconfig " Giulio Benetti
2022-01-19  7:18 ` [PATCH 0/7] Fix wrong static ip autoconf in some dts and defconfig Giulio Benetti

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).