diff options
author | Stefan Roese <sr@denx.de> | 2017-08-30 09:40:17 +0200 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-09-02 23:49:34 +0800 |
commit | f04034cba4c2351da5b54ae36f5a30e3ccfce1cc (patch) | |
tree | b0530ef869f71ad8ba67a5aca63e1c029ed56316 /include/configs/theadorable-x86-common.h | |
parent | 3fe6e6e2aa084d857af8a7e4663baf0451c33b30 (diff) | |
download | u-boot-f04034cba4c2351da5b54ae36f5a30e3ccfce1cc.tar.gz u-boot-f04034cba4c2351da5b54ae36f5a30e3ccfce1cc.tar.xz u-boot-f04034cba4c2351da5b54ae36f5a30e3ccfce1cc.zip |
x86: theadorable-x86-common: Remove "ip=dhcp" from default environment
Without ethernet cable plugged, "ip=dhcp" leads to a complete hangup in
Linux booting and the system does not boot into userland at all. Since
its not required to have an active network connection on these board,
lets remove this statement from the default environment.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/configs/theadorable-x86-common.h')
-rw-r--r-- | include/configs/theadorable-x86-common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/theadorable-x86-common.h b/include/configs/theadorable-x86-common.h index 37b78c1b57..8de659a496 100644 --- a/include/configs/theadorable-x86-common.h +++ b/include/configs/theadorable-x86-common.h @@ -88,7 +88,7 @@ "/boot/initrd.img-${kernel-ver}-generic;" \ "run boot\0" \ "yocto_args=setenv bootargs root=/dev/sda${yocto_part} " \ - "ip=dhcp panic=1\0" \ + "panic=1\0" \ "yocto_args_fast=setenv bootargs root=/dev/sda${yocto_part} " \ "quiet panic=1\0" \ "yocto_boot=run yocto_args addmtd addmisc addtty_yocto;" \ @@ -110,7 +110,7 @@ "fi\0" \ "swupdate-initrd=/boot/swupdate-image-theadorable.ext4.gz\0" \ "swupdate-kernel=/boot/bzImage\0" \ - "swupdate_args=setenv bootargs root=/dev/ram rw ip=dhcp panic=1\0" \ + "swupdate_args=setenv bootargs root=/dev/ram rw panic=1\0" \ "swupdate_dev=0\0" \ "swupdate_factory=0\0" \ "swupdate_interface=usb\0" \ |