projects
/
openwrt
/
staging
/
hauke.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9723930
)
kernel: fix module packages postinst by pointing to the new functions.sh location
author
Felix Fietkau
<nbd@openwrt.org>
Thu, 20 Dec 2012 15:29:37 +0000
(15:29 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Thu, 20 Dec 2012 15:29:37 +0000
(15:29 +0000)
SVN-Revision: 34804
include/kernel.mk
patch
|
blob
|
history
diff --git
a/include/kernel.mk
b/include/kernel.mk
index 6185237765472355349e4b1b0a7bf5163cff6dca..8df70ba5f683795016e154dfca281bfc9e507ea2 100644
(file)
--- a/
include/kernel.mk
+++ b/
include/kernel.mk
@@
-104,7
+104,7
@@
define ModuleAutoLoad
mkdir -p $(2)/CONTROL; \
echo "#!/bin/sh" > $(2)/CONTROL/postinst; \
echo "[ -z \"\$$$$$$$$IPKG_INSTROOT\" ] || exit 0" >> $(2)/CONTROL/postinst; \
- echo ". /
etc
/functions.sh" >> $(2)/CONTROL/postinst; \
+ echo ". /
lib
/functions.sh" >> $(2)/CONTROL/postinst; \
echo "load_modules $$$$$$$$modules" >> $(2)/CONTROL/postinst; \
chmod 0755 $(2)/CONTROL/postinst; \
fi