From 976f30f6bfabe004496d00c519cd2244aa5b5b73 Mon Sep 17 00:00:00 2001 From: nbd Date: Thu, 20 Dec 2012 15:29:37 +0000 Subject: [PATCH] kernel: fix module packages postinst by pointing to the new functions.sh location git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34804 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- include/kernel.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kernel.mk b/include/kernel.mk index 6185237765..8df70ba5f6 100644 --- 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 -- 2.11.0