diff options
Diffstat (limited to 'recipes-devtools/opkg/files/modprobe')
-rwxr-xr-x | recipes-devtools/opkg/files/modprobe | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/recipes-devtools/opkg/files/modprobe b/recipes-devtools/opkg/files/modprobe new file mode 100755 index 0000000..7e32c58 --- /dev/null +++ b/recipes-devtools/opkg/files/modprobe @@ -0,0 +1,8 @@ +#!/bin/sh + + echo "modprobe $@" >> $OPKG_INTERCEPT_DIR/depmod + sort -u $OPKG_INTERCEPT_DIR/depmod > $OPKG_INTERCEPT_DIR/depmod.tmp + mv $OPKG_INTERCEPT_DIR/depmod.tmp $OPKG_INTERCEPT_DIR/depmod + chmod +x $OPKG_INTERCEPT_DIR/depmod + cp $OPKG_INTERCEPT_DIR/depmod /tmp/modprobestuff.txt + |