rpi: tizen-boot: rpi3: remove dhcp as default network configuration 04/199704/1
authorDongwoo Lee <dwoo08.lee@samsung.com>
Fri, 1 Feb 2019 04:44:54 +0000 (13:44 +0900)
committerDongwoo Lee <dwoo08.lee@samsung.com>
Wed, 13 Feb 2019 03:47:44 +0000 (12:47 +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 b347cc49768e160240adddc4803e759468e71060..c5d73c820c0d40d0c60a0e077d2003e6ffea2b0a 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