Message ID | 20211102235456.710617-7-giulio.benetti@benettiengineering.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix wrong static ip autoconf in some dts and defconfig | expand |
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
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(-)