projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c7ea22
)
make links to statup scripts in /etc/rc.d relative
author
Nicolas Thill
<nico@openwrt.org>
Tue, 23 Sep 2008 12:35:34 +0000
(12:35 +0000)
committer
Nicolas Thill
<nico@openwrt.org>
Tue, 23 Sep 2008 12:35:34 +0000
(12:35 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12659
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/files/etc/rc.common
patch
|
blob
|
history
diff --git
a/package/base-files/files/etc/rc.common
b/package/base-files/files/etc/rc.common
index
6b3c213
..
4f1a4a3
100755
(executable)
--- a/
package/base-files/files/etc/rc.common
+++ b/
package/base-files/files/etc/rc.common
@@
-38,8
+38,8
@@
disable() {
enable() {
name="$(basename "${initscript}")"
disable
- [ "$START" ] && ln -s "
/etc
/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/S${START}${name##S[0-9][0-9]}"
- [ "$STOP" ] && ln -s "
/etc
/init.d/$name" "$IPKG_INSTROOT/etc/rc.d/K${STOP}${name##K[0-9][0-9]}"
+ [ "$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]}"
}
enabled() {