Currently, the build task for mwifiex module adds moal to a module conf file. However, it may need to be modified to ensure that the load order of the bluetooth driver and wifi driver is correct. See Freescale/meta-freescale#1837
This can be easily done with something like:
# cat /etc/modprobe.d/moal.conf
softdep btnxpuart pre: moal
Note that, using the modprobe.d/ file, the softdep option will attempt to load the pre: module before loading the target module. This makes the moal.conf in modules-load.d/ directory redundant and can (and maybe should) be removed in favor of the softdep link.
Currently, the build task for mwifiex module adds
moalto a module conf file. However, it may need to be modified to ensure that the load order of the bluetooth driver and wifi driver is correct. See Freescale/meta-freescale#1837This can be easily done with something like:
# cat /etc/modprobe.d/moal.conf softdep btnxpuart pre: moalNote that, using the
modprobe.d/file, thesoftdepoption will attempt to load thepre:module before loading the target module. This makes themoal.confinmodules-load.d/directory redundant and can (and maybe should) be removed in favor of thesoftdeplink.