aboutsummaryrefslogtreecommitdiff
path: root/meta-linaro/recipes-core
diff options
context:
space:
mode:
authorKim Phillips <kim.phillips@linaro.org>2013-10-21 22:14:51 -0500
committerKim Phillips <kim.phillips@linaro.org>2013-10-21 22:14:51 -0500
commit6cb8d4bed405049da1ffb0c5790375973aac90f3 (patch)
tree2519b7b55328537b2e5bbe69a7192a3c27f692d8 /meta-linaro/recipes-core
parent91d59d1d0759ba59fa0796cdd2afee07e43ce94e (diff)
busybox: Background udhcpc if lease is not immediately obtained
The default busybox udhcpc configuration sets the --now option "Exit with failure if lease is not immediately obtained". The LAVA lab has a delay when servicing DHCP requests for boards running OE - see bug 1239820. This patch sets the -b option instead of -n, so udhcpc will go into the background if the lease is not immediately obtained, allowing networking tests to succeed when run in the LAVA lab. Change-Id: I1a3ef36638507a78b8a5ffa95d6f2e1b58f5427e Signed-off-by: Kim Phillips <kim.phillips@linaro.org>
Diffstat (limited to 'meta-linaro/recipes-core')
-rw-r--r--meta-linaro/recipes-core/busybox/files/linaro.cfg1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-linaro/recipes-core/busybox/files/linaro.cfg b/meta-linaro/recipes-core/busybox/files/linaro.cfg
index 8975ec23..d652fa27 100644
--- a/meta-linaro/recipes-core/busybox/files/linaro.cfg
+++ b/meta-linaro/recipes-core/busybox/files/linaro.cfg
@@ -3,3 +3,4 @@ CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY=y
CONFIG_SETSID=y
CONFIG_HTTPD=y
CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y
+CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -b"