Skip to content
This repository has been archived by the owner on Jan 25, 2025. It is now read-only.

resolve #69 by adding usb support and package configurations based on… #119

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changelog
---------
* 0.39: *gluon 2016.2.7*
* Added [ffmd-packages](https://github.com/FreifunkMD/ffmd-packages) repository to the packages repository. This allows easy integration of custom packages.
* Introduce package profiles for build-targets in specific_site.mk. This allows to specify packages for targets with lot of memory.
* 0.38: *gluon 2016.2.7*
* see https://gluon.readthedocs.io/en/v2016.1.6/releases/v2016.1.6.html
* see https://gluon.readthedocs.io/en/v2016.2/releases/v2016.2.html
Expand Down
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:
#####################################################################################################################