Skip to content

Commit

Permalink
resolve FreifunkMD#69 by adding usb support and package configuration…
Browse files Browse the repository at this point in the history
…s based on architecture to various targets
  • Loading branch information
christf committed Aug 10, 2018
1 parent 477cdc5 commit 8dbd957
Show file tree
Hide file tree
Showing 2 changed files with 260 additions and 0 deletions.
2 changes: 2 additions & 0 deletions site.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ GLUON_SITE_PACKAGES := \
iptables \
iwinfo

include $(GLUON_SITEDIR)/specific_site.mk

DEFAULT_GLUON_CHECKOUT := v2016.2.7

# Allow overriding the checkout from the command line
Expand Down
258 changes: 258 additions & 0 deletions specific_site.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,258 @@
#####################################################################################################################
# Hier werden weitere Target- und Device-spezifische Packages eingebunden.
#####################################################################################################################


# Basic support for USB stack
USB_PACKAGES_BASIC := \
kmod-usb-core \
kmod-usb2 \
usbutils

# Storage support for USB devices
USB_PACKAGES_STORAGE := \
block-mount \
blkid \
kmod-fs-ext4 \
kmod-fs-vfat \
kmod-usb-storage \
kmod-usb-storage-extras \
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 \
swap-utils \
usb-modeswitch

# Network support for PCI devices
PCI_PACKAGES_NET := \
kmod-3c59x \
kmod-e100 \
kmod-e1000 \
kmod-e1000e \
kmod-forcedeth \
kmod-igb \
kmod-natsemi \
kmod-ne2k-pci \
kmod-pcnet32 \
kmod-r8169 \
kmod-sis900 \
kmod-sky2 \
kmod-tg3 \
kmod-tulip \
kmod-via-rhine \
kmod-via-velocity \
kmod-8139too \
kmod-atl2

# Network support for USB devices
USB_PACKAGES_NET := \
kmod-ath9k-htc \
kmod-ath9k-common \
kmod-ath \
kmod-brcmfmac \
kmod-carl9170 \
kmod-mii \
kmod-nls-base \
kmod-rt73-usb \
kmod-rtl8192cu \
kmod-rtl8187 \
kmod-usb-net \
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-hso \
kmod-usb-net-huawei-cdc-ncm \
kmod-usb-net-ipheth \
kmod-usb-net-kalmia \
kmod-usb-net-kaweth \
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-rt2800-usb \
kmod-rt2500-usb

# USB serial packages
USB_SERIAL_PACKAGES := \
kmod-usb-serial \
kmod-usb-serial-option \
kmod-usb-serial-ftdi \
kmod-usb-serial-pl2303

# USB Keyboard packages
USB_KEYBOARD_PACKAGES := \
kmod-usb-hid \
kmod-hid-generic
# kmod-ledtrig-usbdev

# x86 spezifisch
PCI_X86_PACKAGES :=\
pciutils \
kmod-usb-ohci-pci \
kmod-bnx2

# Util packages
UTIL_PACKAGES := \
nano \
iperf3 \

# Debug packages
DEBUG_PACKAGES := \
tcpdump \
libnl \
gdb \
valgrind \
iftop \
binutils \
strace \
screen \
kmod-cfg80211

# Main combination
MAIN_COMBO_PACKAGES := \
$(USB_PACKAGES_BASIC) \
$(USB_PACKAGES_STORAGE) \
$(USB_PACKAGES_NET) \
$(UTIL_PACKAGES)

#####################################################################################################################
# GLUON-Target specific settings:
#####################################################################################################################

# ar71xx-tiny
ifeq ($(GLUON_TARGET),ar71xx-tiny)
GLUON_SITE_PACKAGES +=
# Don't add aditional packages here.
# The ar71xx-tiny images require all free Flash memory space.
endif

# ar71xx Generic
ifeq ($(GLUON_TARGET),ar71xx-generic)
GLUON_SITE_PACKAGES += \
$(UTIL_PACKAGES)
endif

# ar71xx NAND
ifeq ($(GLUON_TARGET),ar71xx-nand)
GLUON_SITE_PACKAGES +=
endif

# x86-generic
ifeq ($(GLUON_TARGET),x86-generic)
# support the usb stack on x86 devices
# and add a few common USB NICs
GLUON_SITE_PACKAGES += \
$(MAIN_COMBO_PACKAGES) \
$(USB_KEYBOARD_PACKAGES) \
$(USB_SERIAL_PACKAGES) \
$(PCI_PACKAGES_NET) \
$(PCI_X86_PACKAGES) \
$(DEBUG_PACKAGES)
endif

# x86-64
ifeq ($(GLUON_TARGET),x86-64)
# support the usb stack on x86-64 devices
# and add a few common USB NICs
GLUON_SITE_PACKAGES += \
$(MAIN_COMBO_PACKAGES) \
$(USB_KEYBOARD_PACKAGES) \
$(USB_SERIAL_PACKAGES) \
$(PCI_PACKAGES_NET) \
$(PCI_X86_PACKAGES) \
$(DEBUG_PACKAGES)
endif

# x86-geode
# support the usb stack on x86-geode devices
# and add a few common USB NICs
ifeq ($(GLUON_TARGET),x86-geode)
GLUON_SITE_PACKAGES += \
$(MAIN_COMBO_PACKAGES) \
$(USB_KEYBOARD_PACKAGES) \
$(USB_SERIAL_PACKAGES) \
$(PCI_PACKAGES_NET) \
$(PCI_X86_PACKAGES) \
$(DEBUG_PACKAGES) \
-kmod-e1000e
endif

# mpc85xx-generic
ifeq ($(GLUON_TARGET),mpc85xx-generic)
GLUON_SITE_PACKAGES +=
endif

# Raspberry Pi A/B/B+
ifeq ($(GLUON_TARGET),brcm2708-bcm2708)
GLUON_SITE_PACKAGES += \
$(MAIN_COMBO_PACKAGES) \
$(USB_KEYBOARD_PACKAGES) \
$(USB_SERIAL_PACKAGES)
endif

# Raspberry Pi 2
ifeq ($(GLUON_TARGET),brcm2708-bcm2709)
GLUON_SITE_PACKAGES += \
$(MAIN_COMBO_PACKAGES) \
$(USB_KEYBOARD_PACKAGES) \
$(USB_SERIAL_PACKAGES)
endif

# Raspberry Pi 3
ifeq ($(GLUON_TARGET),brcm2708-bcm2710)
GLUON_SITE_PACKAGES += \
$(MAIN_COMBO_PACKAGES) \
$(USB_KEYBOARD_PACKAGES) \
$(USB_SERIAL_PACKAGES)
endif

# Banana Pi
ifeq ($(GLUON_TARGET),sunxi)
GLUON_SITE_PACKAGES += \
$(MAIN_COMBO_PACKAGES) \
$(USB_KEYBOARD_PACKAGES) \
$(USB_SERIAL_PACKAGES)
endif

# ramips-mt7620
ifeq ($(GLUON_TARGET),ramips-mt7620)
GLUON_SITE_PACKAGES +=
endif

# Ubiquiti EdgeRouter X (SFP)
ifeq ($(GLUON_TARGET),ramips-mt7621)
GLUON_SITE_PACKAGES += \
$(UTIL_PACKAGES)
endif

# ramips-mt7628
ifeq ($(GLUON_TARGET),ramips-mt7628)
GLUON_SITE_PACKAGES +=
endif

#ramips-rt305x
ifeq ($(GLUON_TARGET),ramips-rt305x)
GLUON_SITE_PACKAGES +=
endif

#####################################################################################################################
# GLUON-Device specific settings:
#####################################################################################################################

0 comments on commit 8dbd957

Please sign in to comment.