iwlwifi uses a firmware blob that must exist on the FS at the time the driver is loaded. If the driver is built-in, the blob must exist in the initrd. We avoid this by building as a module, but we still want this to load at boot - so add it to autoload.
Signed-off-by: Darren Hart <[email protected]> --- .../linux/linux-yocto-rt_3.0.bbappend | 2 ++ .../recipes-kernel/linux/linux-yocto_3.0.bbappend | 2 ++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/meta-fri2/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend b/meta-fri2/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend index 4563101..d3b4f81 100644 --- a/meta-fri2/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend +++ b/meta-fri2/recipes-kernel/linux/linux-yocto-rt_3.0.bbappend @@ -7,3 +7,5 @@ KBRANCH_fri2 = "yocto/standard/preempt-rt/base" COMPATIBLE_MACHINE_fri2-noemgd = "fri2-noemgd" KMACHINE_fri2-noemgd = "fri2" KBRANCH_fri2-noemgd = "yocto/standard/preempt-rt/base" + +module_autoload_iwlwifi = "iwlwifi" diff --git a/meta-fri2/recipes-kernel/linux/linux-yocto_3.0.bbappend b/meta-fri2/recipes-kernel/linux/linux-yocto_3.0.bbappend index bacd6a5..e53991a 100644 --- a/meta-fri2/recipes-kernel/linux/linux-yocto_3.0.bbappend +++ b/meta-fri2/recipes-kernel/linux/linux-yocto_3.0.bbappend @@ -7,3 +7,5 @@ KBRANCH_fri2 = "yocto/standard/fri2" COMPATIBLE_MACHINE_fri2-noemgd = "fri2-noemgd" KMACHINE_fri2-noemgd = "fri2" KBRANCH_fri2-noemgd = "yocto/standard/fri2" + +module_autoload_iwlwifi = "iwlwifi" -- 1.7.5.4 _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
