mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
2acebbdcaa
Do not include the dnsmasq and odhcpd-ipv6only package by default any more. These services are not needed on a switch. If someone needs this it is still possible to use opkg or image builder to add them. This decreases the compressed image size by about 165KBytes. Tested-by: Stijn Segers <foss@volatilesystems.org> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
25 lines
517 B
Makefile
25 lines
517 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:=5.10
|
|
|
|
define Target/Description
|
|
Build firmware images for Realtek RTL83xx based boards.
|
|
endef
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += uboot-envtools ethtool kmod-gpio-button-hotplug \
|
|
firewall ip6tables iptables odhcp6c \
|
|
ip-full ip-bridge tc
|
|
|
|
$(eval $(call BuildTarget))
|