mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 01:11:06 +00:00
d426c5e6c2
Ported drivers list and extract all needed source files. This decouples ports according to contrib sources and also enables us to revert lxip to Linux version 3.9, while staying with 3.14 for usb. Fixes #1285
21 lines
426 B
Makefile
21 lines
426 B
Makefile
SRC_C += $(addprefix usb/host/,pci-quirks.c uhci-hcd.c ehci-pci.c)
|
|
|
|
#
|
|
# USB netwpork support
|
|
#
|
|
SRC_C += $(addprefix net/usb/, usbnet.c ax88179_178a.c)
|
|
|
|
#XHCI
|
|
SRC_C += usb/host/xhci-pci.c
|
|
|
|
SRC_CC += pci_driver.cc platform.cc
|
|
|
|
include $(REP_DIR)/lib/mk/xhci.inc
|
|
include $(REP_DIR)/lib/mk/usb.inc
|
|
|
|
CC_OPT += -DCONFIG_PCI -DCONFIG_USB_EHCI_PCI=1 -DCONFIG_USB_XHCI_HCD=1
|
|
|
|
vpath platform.cc $(LIB_DIR)/x86
|
|
|
|
# vi:set ft=make :
|