This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DM365 Uboot参数的设置问题



请问一下,我在设置uboot参数的时候设置了 setenv bootcmd 'dhcp;bootm',因为我这里dhcp分配不了ip,我想恢复成原来的设置,该怎么回复呢?

  • 你好,不想使用DHCP,首先修改可以用如:

    setenv ipaddr 192.168.1.88

    setenv serverip 192.168.1.66

    setenv netmask 255.255.255.0

    setenv gatewayip 192.168.1.1

    来设置板子和服务器IP。

    然后再 setenv bootargs 中将ip=192.168.1.88。