mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
0d7cace7bd
Create the RTL838x specific Makefiles. Move CPU-type into rtl838x.mk as this is specifc to that platform. Add rtl838x subtarget into main Makefile. Signed-off-by: Birger Koblitz <git@birger-koblitz.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
|
|
|
|
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 \
|
|
dnsmasq firewall ip6tables iptables odhcp6c odhcpd-ipv6only \
|
|
ip-full ip-bridge tc
|
|
|
|
$(eval $(call BuildTarget))
|