mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-10 15:03:07 +00:00
e63d289bbd
Images for certain devices are staring to become too large, as some
device only have 6MB available in their vendor partition layout for the
initial install. This is especially pressing for bootloaders only
supporting gzip compression.
Drop some packages from DEFAULT_PACKAGES that aren't strictly required
for a factory install. The user can always install more packages later
using opkg/apk, or via a sysupgrade to a custom build.
firewall4 is kept to ensure the most recent firewall package is selected
in builds including LuCI.
ethtool is kept as a frequently used diagnostics tool.
Link: https://github.com/openwrt/openwrt/pull/17450
Signed-off-by: Sander Vanheule <sander@svanheule.net>
(cherry picked from commit c9ae39b2d1
)
29 lines
489 B
Makefile
29 lines
489 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=mips
|
|
BOARD:=realtek
|
|
BOARDNAME:=Realtek MIPS
|
|
DEVICE_TYPE:=basic
|
|
FEATURES:=ramdisk squashfs
|
|
SUBTARGETS:=rtl838x rtl839x rtl930x rtl931x
|
|
|
|
KERNEL_PATCHVER:=6.6
|
|
|
|
define Target/Description
|
|
Build firmware images for Realtek RTL83xx based boards.
|
|
endef
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += \
|
|
ethtool \
|
|
firewall4 \
|
|
kmod-gpio-button-hotplug \
|
|
odhcp6c \
|
|
uboot-envtools \
|
|
|
|
|
|
$(eval $(call BuildTarget))
|