mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-13 15:56:55 +00:00
Some checks failed
Build Kernel / Build all affected Kernels (push) Waiting to run
Build all core packages / Build all core packages for selected target (push) Waiting to run
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
It's possible to add the driver for the Marvell MV88E6xxx DSA switches using a module package rather than to compile it into the kernel. For affected devices this saves a bit of space, the DSA core alone is around 600 KB on ARM. I could only find one device actually using this switch (I also checked upstream DTS files) so I have added the package to that one device. In the config CONFIG_NET_DSA_TAG_TRAILER and CONFIG_NET_DSA_OCELOT were also selected, which seems like mistakes. These taggers are only used by the MV88E6060 and driver which is a separate switch from MV88E6xxx and the Ocelot drivers such as CONFIG_NET_DSA_MSCC_FELIX or CONFIG_NET_DSA_MSCC_SEVILLE and no qoric platform seems to be using them, nor are they selected in the config. Link: https://patchwork.ozlabs.org/project/openwrt/patch/20250113-mv88e6xxx-modularize-v2-2-3064419615cd@linaro.org/ Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
18 lines
734 B
Makefile
18 lines
734 B
Makefile
define Device/watchguard_firebox-m300
|
|
DEVICE_VENDOR := WatchGuard
|
|
DEVICE_MODEL := Firebox M300
|
|
DEVICE_COMPAT_MESSAGE := \
|
|
Kernel switched to FIT uImage. Update U-Boot environment.
|
|
DEVICE_COMPAT_VERSION := 1.1
|
|
DEVICE_DTS_DIR := $(DTS_DIR)/fsl
|
|
DEVICE_PACKAGES := \
|
|
kmod-gpio-button-hotplug kmod-hwmon-w83793 kmod-leds-gpio kmod-ptp-qoriq \
|
|
kmod-rtc-rs5c372a kmod-tpm-i2c-atmel kmod-dsa-mv88e6xxx
|
|
KERNEL := kernel-bin | gzip | fit gzip $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb
|
|
KERNEL_SUFFIX := -fit-uImage.itb
|
|
IMAGES := sdcard.img.gz sysupgrade.img.gz
|
|
IMAGE/sysupgrade.img.gz := sdcard-img | gzip | append-metadata
|
|
IMAGE/sdcard.img.gz := sdcard-img | gzip
|
|
endef
|
|
TARGET_DEVICES += watchguard_firebox-m300
|