rpi: tizen-boot: rpi3: remove dhcp as default network configuration
authorDongwoo Lee <dwoo08.lee@samsung.com>
Fri, 1 Feb 2019 04:44:54 +0000 (13:44 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Thu, 10 Oct 2019 04:38:42 +0000 (13:38 +0900)
If there is no ip setup on environmental variable, dhcp is used as
default. But, in this case, if dhcp server is not set on connected
network neither, kernel waits dhcp server for a long time (about 3
minutes). So this patch removes dhcp option. After this, tfm handles
unconfigured network.

Change-Id: I513503d2ba81b2342c42967fc1b8cb74f17ce215
Signed-off-by: Dongwoo Lee <dwoo08.lee@samsung.com>
board/raspberrypi/rpi/tizen-boot-rpi3.scr

index b347cc4..c5d73c8 100644 (file)
@@ -60,8 +60,6 @@ fi
 if test "${bootmode}" = "flash"; then;
        if test -n "${ipaddr}"; then;
                ip_opt=\"ip=${ipaddr}::${gateway}:${netmask}\"
-       else
-               ip_opt=\"ip=dhcp\"
        fi
 fi