diff options
Diffstat (limited to 'meta/recipes-kernel/update-modules/update-modules-1.0')
-rwxr-xr-x | meta/recipes-kernel/update-modules/update-modules-1.0/update-modules | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules b/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules index 7ee7df819..99040a1ab 100755 --- a/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules +++ b/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules @@ -103,8 +103,8 @@ createfile() { $HEADER" # # Please do not edit this file directly. If you want to change or add -# anything please take a look at the files in /etc/modutils and read -# the manpage for update-modules. +# anything please take a look at the files in /etc/modutils, /etc/modules-load.d +# and read the manpage for update-modules. # EOF } @@ -161,6 +161,7 @@ fi createfile "$MODCONFTMPFILE" createfile "$MODULESTMPFILE" +# well we're using /etc/modprobe.d/*.conf instead of /etc/modutils/*.conf anyway.. for cfg in /etc/modutils/* $CONF ; do if [ -f "$cfg" ]; then # this check is necesarry to skip /etc/modutils/archs if echo $cfg | grep -q '\.dpkg-[a-z]*\|~$' ; then @@ -168,6 +169,16 @@ for cfg in /etc/modutils/* $CONF ; do elif echo $cfg | grep -q '\.conf$' ; then addfile "$cfg" "$MODCONFTMPFILE" else + echo "Please migrate your $cfg file to /etc/modules-load.d/*.conf" + addfile "$cfg" "$MODULESTMPFILE" + fi + fi +done +for cfg in /etc/modules-load.d/*.conf; do + if [ -f "$cfg" ]; then # this check is necesarry to skip weird entries + if echo $cfg | grep -q '\.dpkg-[a-z]*\|~$' ; then + true + else addfile "$cfg" "$MODULESTMPFILE" fi fi |