From cd3e21685ec544a4d19bad0de53f1079a933a29c Mon Sep 17 00:00:00 2001 From: Dongwoo Lee Date: Fri, 1 Feb 2019 13:44:54 +0900 Subject: [PATCH] rpi: tizen-boot: rpi3: remove dhcp as default network configuration 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 --- board/raspberrypi/rpi/tizen-boot-rpi3.scr | 2 -- 1 file changed, 2 deletions(-) diff --git a/board/raspberrypi/rpi/tizen-boot-rpi3.scr b/board/raspberrypi/rpi/tizen-boot-rpi3.scr index b347cc4..c5d73c8 100644 --- a/board/raspberrypi/rpi/tizen-boot-rpi3.scr +++ b/board/raspberrypi/rpi/tizen-boot-rpi3.scr @@ -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 -- 2.7.4