base-files: load modules early, run wifi detect afterwards and only then process...
[openwrt.git] / package / base-files / files / etc / rc.common
index 6ec88ae..5bf357b 100755 (executable)
@@ -42,6 +42,10 @@ disable() {
 enable() {
        name="$(basename "${initscript}")"
        disable
+       [ -n "$START" -o -n "$STOP" ] || {
+               echo "/etc/init.d/$name does not have a START or STOP value"
+               return 1
+       }
        [ "$START" ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}"
        [ "$STOP"  ] && ln -s "../init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${STOP}${name##K[0-9][0-9]}"
 }
This page took 0.023994 seconds and 4 git commands to generate.