Linux 内核编译 modules ehci-hcd, ohci-hcd, uhci-hcd not found

故障现象:

make install后显示如下:

WARNING: No module ehci-hcd found for kernel 3.x.x.art.x86_64, continuing anyway

WARNING: No module ohci-hcd found for kernel 3.x.x.art.x86_64, continuing anyway

WARNING: No module uhci-hcd found for kernel 3.x.x.art.x86_64, continuing anyway

WARNING: No module ehci-hcd found for kernel 3.x.x.art.x86_64, continuing anyway

WARNING: No module ohci-hcd found for kernel 3.x.x.art.x86_64, continuing anyway

WARNING: No module uhci-hcd found for kernel 3.x.x.art.x86_64, continuing anyway

解决办法:

#vi .config

将下列选项由“not set”或“y”状态设置为“m”,并保存退出;

CONFIG_USB_EHCI_HCD=m

CONFIG_USB_OHCI_HCD=m

CONFIG_USB_UHCI_HCD=m

make bzImage开始重新编译。


原文地址:https://www.cnblogs.com/myiaas/p/4161363.html