Hello,
I've tried posting in the Slack room but no one replied and there is no searchable history, so i'm trying here.
I'm new to Nerves and I'm trying to make a build with USB enabled by default.
On a brand-new clone of the nerves-sdk, I changed in board/bbb/linux-3.8.defconfig :
-CONFIG_USB_MUSB_DSPS=m
+CONFIG_USB_MUSB_DSPS=y
Which if I'm right, will compile the MUSB_DSPS module directly in the kernel.
I then run "make nerves_bbb_defconfig" and "make", flashed to my device, and MUSB_DSPS is still not loaded in the kernel, I need to run "modprobe musb_dsps".
Did I miss something?