Forum Discussion
Altera_Forum
Honored Contributor
21 years agoUSB support in uClinux 2.6
Hello, I'm trying to compile version 2.6 of the Microtronix uClinux kernel to include support for USB. I'm working with the Microtronix Stratix development board which has a Cypress SL8...
Altera_Forum
Honored Contributor
21 years agoI found the problem.
Line 11 of the <linux-src>/drivers/usb/Kconfig file should be: depends on PCI || SA1111 || ARCH_OMAP1510 || ARCH_OMAP1610 || NIOS || NIOS2 instead of depends on PCI || SA1111 || ARCH_OMAP1510 || ARCH_OMAP1610 || NIOS Also, line 75 of <linux-src>/drivers/usb/host/Kconfig should be: depends on (ARM && USB) || ((NIOS || NIOS2) && USB) instead of depends on (ARM && USB) || (NIOS && USB) -- Terry