From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mail.openembedded.org (Postfix) with ESMTP id 9E1BD65F99 for ; Tue, 3 Jun 2014 18:32:35 +0000 (UTC) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 03 Jun 2014 11:27:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.98,967,1392192000"; d="scan'208";a="551017818" Received: from kmaligas-mobl1.gar.corp.intel.com (HELO swold-linux.bigsur.com) ([10.255.12.167]) by orsmga002.jf.intel.com with ESMTP; 03 Jun 2014 11:32:30 -0700 From: Saul Wold To: openembedded-core@lists.openembedded.org Date: Tue, 3 Jun 2014 11:32:30 -0700 Message-Id: <1401820350-306-1-git-send-email-sgw@linux.intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [PATCH] busybox: put udhcpc in background X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jun 2014 18:32:37 -0000 If the interface is slow to come up udhcpc will continue in the background [YOCTO #6339] Signed-off-by: Saul Wold --- meta/recipes-core/busybox/busybox.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 0c1969c..f6cb039 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc @@ -119,6 +119,7 @@ do_prepare_config () { {if(net==2&&$0 !~ /^#/&&$1){print("# "$1" is not set")}else{print}}' \ ${S}/.config.oe-tmp > ${S}/.config fi + sed -i 's/CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n"/CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -b"/' ${S}/.config } # returns all the elements from the src uri that are .cfg files -- 1.8.3.1