diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-05-18 00:35:02 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-05-18 00:35:02 +0000 |
commit | ba2c5cad003b37ad437ff2b56d14cde80c2cbda6 (patch) | |
tree | 3fecf56282f5d9342326a5d7c042333425cca907 | |
parent | 71877a42eb364644f0bd59520c86d9a7d7e60e8b (diff) | |
download | mtk-20170518-ba2c5cad003b37ad437ff2b56d14cde80c2cbda6.zip mtk-20170518-ba2c5cad003b37ad437ff2b56d14cde80c2cbda6.tar.gz mtk-20170518-ba2c5cad003b37ad437ff2b56d14cde80c2cbda6.tar.bz2 |
load kernel modules in kmod- packages from postinst scripts at install.
SVN-Revision: 3793
-rwxr-xr-x | openwrt/package/base-files/default/etc/functions.sh | 4 | ||||
-rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S10boot | 3 | ||||
-rw-r--r-- | openwrt/target/linux/rules.mk | 5 |
3 files changed, 11 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/etc/functions.sh b/openwrt/package/base-files/default/etc/functions.sh index 858dc28..d54a346 100755 --- a/openwrt/package/base-files/default/etc/functions.sh +++ b/openwrt/package/base-files/default/etc/functions.sh @@ -61,3 +61,7 @@ config_get() { config_set() { export CONFIG_${1}_${2}="${3}" } + +load_modules() { + sed 's/^[^#]/insmod &/' $* | ash 2>&- || : +} diff --git a/openwrt/package/base-files/default/etc/init.d/S10boot b/openwrt/package/base-files/default/etc/init.d/S10boot index 0cc519d..42bb438 100755 --- a/openwrt/package/base-files/default/etc/init.d/S10boot +++ b/openwrt/package/base-files/default/etc/init.d/S10boot @@ -1,4 +1,5 @@ #!/bin/sh +. /etc/functions.sh [ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc vconfig set_name_type VLAN_PLUS_VID_NO_PAD @@ -16,7 +17,7 @@ for iface in $(/sbin/ifconfig -a | awk '{print $1}' | grep eth); do /usr/bin/env -i ACTION=add INTERFACE="$iface" /sbin/hotplug net done -sed 's/^[^#]/insmod &/' /etc/modules /etc/modules.d/* 2>&-|ash +load_modules /etc/modules /etc/modules.d/* ifconfig lo 127.0.0.1 up ifconfig eth0 promisc diff --git a/openwrt/target/linux/rules.mk b/openwrt/target/linux/rules.mk index 3358f1f..ae557f2 100644 --- a/openwrt/target/linux/rules.mk +++ b/openwrt/target/linux/rules.mk @@ -76,6 +76,11 @@ ifneq ($(6),) for module in $(7); do \ echo $$$$module >> $$(I_$(1))/etc/modules.d/$(6)-$(2); \ done + echo "#!/bin/sh" >> $$(I_$(1))/CONTROL/postinst + echo "[ -z \"\$$$$IPKG_INSTROOT\" ] || exit" >> $$(I_$(1))/CONTROL/postinst + echo ". /etc/functions.sh" >> $$(I_$(1))/CONTROL/postinst + echo "load_modules /etc/modules.d/$(6)-$(2)" >> $$(I_$(1))/CONTROL/postinst + chmod 0755 $$(I_$(1))/CONTROL/postinst endif $(8) $(IPKG_BUILD) $$(I_$(1)) $(PACKAGE_DIR) $(MAKE_TRACE) |