We have some problems in order to add cdc_composite kernel driver in the Linux recipe.
- First, we use the menuconfig tool to add the cdc_composite in the .config file [Devices Drivers → USB suport → USB Gadget support → USB Gadget Drivers (Ethernet Gadget (with CDC Ethernet support)) → CDC Composite Device (ACM and ACM)].
$ bitbake -c menuconfig linux-yocto
- In the folder “LegatoYocto1410/meta-swi/meta-swi-mdm9x15/recipes-
kernel/linux/files” we create a kernel config file (cdc.cfg):
# CONFIG_USB_G_ANDROID is not set
CONFIG_USB_CDC_COMPOSITE=m
- We add this lines in the linux kernel recipe (LegatoYocto1410/meta-swi/meta-swi-mdm9x15/recipes-
kernel/linux/linux-yocto_3.4.bbappend)
FILESEXTRAPATHS_prepend :="${THISDIR}/files:"
SRC_URI +="file://cdc.cfg"
We haven’t added additional packages in the mdm9x15-image.inc file (IMAGE_INTALL += "package"
), because in the help of menuconfig don’t have any dependency necessary in order to add cdc_composite.
- Then, we build a new Yocto image (rootfs, kernel) using make or bitbake mdm9x15-image-minimal,
but the kernel file don’t produce any change.