-
Notifications
You must be signed in to change notification settings - Fork 325
USB Support
Ruben Barkow edited this page Oct 5, 2017
·
22 revisions
For basic USB support you need to add these packages in
GLUON_SITE_PACKAGES := \
...
kmod-usb-core \
kmod-usb2 \
If you want to be able to mount Fat32-USB-devices, you need these additional packages:
block-mount \
kmod-fs-ext4 \
kmod-fs-vfat \
kmod-usb-storage \
kmod-usb-storage-extras \
blkid \
swap-utils \
kmod-nls-cp1250 \
kmod-nls-cp1251 \
kmod-nls-cp437 \
kmod-nls-cp775 \
kmod-nls-cp850 \
kmod-nls-cp852 \
kmod-nls-cp866 \
kmod-nls-iso8859-1 \
kmod-nls-iso8859-13 \
kmod-nls-iso8859-15 \
kmod-nls-iso8859-2 \
kmod-nls-koi8r \
kmod-nls-utf8
( maybe also add usbutils
- untested)
#Example by Model
Use GLUON_$(PROFILE)_SITE_PACKAGES
for each model, where $(PROFILE)
is the model you get from profiles.mk
To enable simple USB support for only some models with at least 8MB RAM add these lines in your site.mk
:
#ar71xx-generic
GLUON_TLWR842_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_TLWR1043_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_TLWR2543_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_TLWDR4300_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_WNDR3700_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_WRT160NL_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_DIR825B1_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_DIR505A1_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_GLINET_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_WZRHPG450H_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_WZRHPAG300H_SITE_PACKAGES := kmod-usb-core kmod-usb2
GLUON_ARCHERC7_SITE_PACKAGES := kmod-usb-core kmod-usb2
#GLUON_TLWR710_SITE_PACKAGES := kmod-usb-core kmod-usb2 # better not, there are some models with only 4MB
#mpc85xx-generic
GLUON_TLWDR4900_SITE_PACKAGES := mod-usb-core kmod-usb2
Note: since Gluon 2017.x you need another syntax to add those packages only for certain models.
#Example by Target:
ifeq ($(GLUON_TARGET),x86-generic)
# support the usb stack on x86 devices
# and add a few common USB NICs
GLUON_SITE_PACKAGES += \
kmod-usb-core \
kmod-usb2 \
kmod-usb-hid \
kmod-usb-net \
kmod-usb-net-asix \
kmod-usb-net-dm9601-ether
endif
#Example site.mk
This is a non-exhaustive list of site-repos from communities with a site.mk with USB support:
-
Usage
-
Community
-
Development
- Device Integration
- Roadmap
- Release-life-cycle
- Protocols
- Meeting 2024/06
- Meeting 2024/05
- Meeting 2024/03
- Meeting 2024/02
- Meeting 2024/01
- Meeting 2023/06
- Meeting 2023/05
- Meetup-CCCamp
- Meeting 2023/04
- Meeting 2023/03
- Meeting 2023/02
- Meeting 2023/01
- Meeting 2022/06
- Meeting 2022/05
- Meeting 2022/04
- Meeting 2022/03
- Meeting 2022/02
- Meeting 2022/01
- Meeting 2021/01
- Meeting 2019/01
- Meeting 2018/03
- Meeting 2018/02
- Meeting 2018/01
- Meeting 2017/01
- Concepts
- Release Process
-
Debugging