1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 15:25:06 +03:00

load kernel modules in kmod- packages from postinst scripts at install.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3793 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2006-05-18 00:35:02 +00:00
parent 151ad3e398
commit faa5f28154
3 changed files with 11 additions and 1 deletions

View File

@ -61,3 +61,7 @@ config_get() {
config_set() { config_set() {
export CONFIG_${1}_${2}="${3}" export CONFIG_${1}_${2}="${3}"
} }
load_modules() {
sed 's/^[^#]/insmod &/' $* | ash 2>&- || :
}

View File

@ -1,4 +1,5 @@
#!/bin/sh #!/bin/sh
. /etc/functions.sh
[ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc [ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc
vconfig set_name_type VLAN_PLUS_VID_NO_PAD 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 /usr/bin/env -i ACTION=add INTERFACE="$iface" /sbin/hotplug net
done 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 lo 127.0.0.1 up
ifconfig eth0 promisc ifconfig eth0 promisc

View File

@ -76,6 +76,11 @@ ifneq ($(6),)
for module in $(7); do \ for module in $(7); do \
echo $$$$module >> $$(I_$(1))/etc/modules.d/$(6)-$(2); \ echo $$$$module >> $$(I_$(1))/etc/modules.d/$(6)-$(2); \
done 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 endif
$(8) $(8)
$(IPKG_BUILD) $$(I_$(1)) $(PACKAGE_DIR) $(MAKE_TRACE) $(IPKG_BUILD) $$(I_$(1)) $(PACKAGE_DIR) $(MAKE_TRACE)