Comment the usage within this machine conf for the two aforementioned variables.
For boot, we require the kernel, dtbs, and bootscript. We also require the sky2 module for use of an Ethernet device, but is not req'd for boot so place it into MACHINE_EXTRA_RRECOMMENDS. Signed-off-by: Pushpal Sidhu <[email protected]> --- Chagnes v2: * Split commit into three commits conf/machine/ventana.conf | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/conf/machine/ventana.conf b/conf/machine/ventana.conf index 1d35e12..3acd201 100644 --- a/conf/machine/ventana.conf +++ b/conf/machine/ventana.conf @@ -35,13 +35,20 @@ KERNEL_IMAGETYPE = "uImage" MACHINE_FEATURES += "pci wifi bluetooth" -# Add kernel/modules -MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "kernel-image kernel-devicetree" -MACHINE_EXTRA_RRECOMMENDS += "kernel-module-sky2" +# Add kernel modules +MACHINE_EXTRA_RRECOMMENDS += "\ + kernel-module-sky2 \ +" # Modules autoload KERNEL_MODULE_AUTOLOAD = "sky2" +# Req'd for boot +MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "\ + kernel-image kernel-devicetree \ + u-boot-script-gateworks-imx \ +" + # Bootloader configs: UBOOT_CONFIG ??= "std" UBOOT_CONFIG[std] = "gwventana_config" -- 2.6.2 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
