Skip to content
Snippets Groups Projects
Commit 2e336dac authored by Nick Hahn's avatar Nick Hahn Committed by nrbffs
Browse files

Enable kernel modules for usb network cards

It is now possible to use usb network cards with a x86 offloader like a
futro, removing the need for a pcie network card
parent b19f65fa
Branches
Tags
No related merge requests found
...@@ -24,22 +24,59 @@ GLUON_SITE_PACKAGES := \ ...@@ -24,22 +24,59 @@ GLUON_SITE_PACKAGES := \
ffs-set-segment \ ffs-set-segment \
ffs-watchdog ffs-watchdog
# add addition network drivers and usb support only to targes where disk space does not matter. ADD_DRIVERS_X86 := \
ifeq ($(GLUON_TARGET),x86-generic) kmod-8139too \
GLUON_SITE_PACKAGES += \ kmod-ath \
kmod-ath9k-common \
kmod-ath9k-htc \
kmod-atl2 \
kmod-brcmfmac \
kmod-carl9170 \
kmod-forcedeth \
kmod-igb \
kmod-mii \
kmod-nls-base \
kmod-r8169 \
kmod-rt73-usb \
kmod-rtl8187 \
kmod-rtl8192cu \
kmod-sky2 \
kmod-usb-core \ kmod-usb-core \
kmod-usb-ohci-pci \
kmod-usb2 \
kmod-usb-hid \ kmod-usb-hid \
kmod-usb-net \ kmod-usb-net \
kmod-usb-net-asix \ kmod-usb-net-asix \
kmod-usb-net-asix \
kmod-usb-net-asix-ax88179 \
kmod-usb-net-cdc-eem \
kmod-usb-net-cdc-ether \
kmod-usb-net-cdc-mbim \
kmod-usb-net-cdc-ncm \
kmod-usb-net-cdc-subset \
kmod-usb-net-dm9601-ether \ kmod-usb-net-dm9601-ether \
kmod-sky2 \ kmod-usb-net-hso \
kmod-r8169 \ kmod-usb-net-huawei-cdc-ncm \
kmod-forcedeth \ kmod-usb-net-ipheth \
kmod-8139too \ kmod-usb-net-kalmia \
kmod-atl2 \ kmod-usb-net-kaweth \
kmod-igb kmod-usb-net-mcs7830 \
kmod-usb-net-pegasus \
kmod-usb-net-qmi-wwan \
kmod-usb-net-rndis \
kmod-usb-net-rtl8152 \
kmod-usb-net-sierrawireless \
kmod-usb-net-smsc95xx \
kmod-usb-ohci-pci \
kmod-usb2
# add addition network drivers and usb support only to targes where disk space does not matter.
ifeq ($(GLUON_TARGET),x86-generic)
GLUON_SITE_PACKAGES += \
$(ADD_DRIVERS_X86)
endif
ifeq ($(GLUON_TARGET),x86-64)
GLUON_SITE_PACKAGES += \
$(ADD_DRIVERS_X86)
endif endif
DEFAULT_BUILD_DATE := $(shell date '+%Y-%m-%d') DEFAULT_BUILD_DATE := $(shell date '+%Y-%m-%d')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment