[oe-commits] Chen Qi : init-ifupdown: adjust priority of networking to fix system freeze problem

git at git.openembedded.org git at git.openembedded.org
Sun Dec 15 16:45:00 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: d518892d38ac399c091ff509a9fd90fc00d71224
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=d518892d38ac399c091ff509a9fd90fc00d71224

Author: Chen Qi <Qi.Chen at windriver.com>
Date:   Thu Dec 12 16:38:04 2013 +0800

init-ifupdown: adjust priority of networking to fix system freeze problem

On mpc8315e, a system freeze is encountered at system boot time if
connman and init-ifupdown are installed.

The error message before the freeze is:
    "ip: RTNETLINK answers: File exists"

This problem is introduced by the following commit.
    dc80eea sysvinit: fix problem in switching runlevels

Part of the above commit is to make the networking init script run
at runlevel 2 3 4 5 instead of runlevel S. However, after the change,
networking is run after connman. And this causes the problem stated
above.

Make networking run first when entering runlevel 2 3 4 5, so that we
don't break things.

[YOCTO #5651]

Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
index 0f4290c..77e8384 100644
--- a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
+++ b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
@@ -9,7 +9,7 @@ PR = "r3"
 inherit update-rc.d
 
 INITSCRIPT_NAME = "networking"
-INITSCRIPT_PARAMS = "start 10 2 3 4 5 . stop 80 0 6 1 ."
+INITSCRIPT_PARAMS = "start 01 2 3 4 5 . stop 80 0 6 1 ."
 
 SRC_URI = "file://copyright \
            file://init \



More information about the Openembedded-commits mailing list