Adding new wifi driver to imx6UL Yocto BSP

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Adding new wifi driver to imx6UL Yocto BSP

Jump to solution
2,479 Views
pratyushtomar
Contributor IV

I am using AtwilC3000 wifi module with my imx6ul evk. Atmel provides drivers for linux GitHub - atwilc3000/driver: Atmel wireless driver for ATWILC3000.  How can I include this driver (compile) in Yocto Bsp? Is their any how to do this?

Labels (2)
1 Solution
1,532 Views
angelo_d
Senior Contributor I

More or less, you should

- first, be able to compile the kernel source separately (prepare your own script)

- copy the driver in the appropriate place, likely drivers/net/wireless

- edit drivers/net/wireless/Kconfig to add the options for the folders you just added

- edit drivers/net/wireless/Makefile to include the folders you just added

- finally make menuconfig and make, see if you can have a working image

View solution in original post

1 Reply
1,533 Views
angelo_d
Senior Contributor I

More or less, you should

- first, be able to compile the kernel source separately (prepare your own script)

- copy the driver in the appropriate place, likely drivers/net/wireless

- edit drivers/net/wireless/Kconfig to add the options for the folders you just added

- edit drivers/net/wireless/Makefile to include the folders you just added

- finally make menuconfig and make, see if you can have a working image