diff options
author | Birger Koblitz <git@birger-koblitz.de> | 2021-12-28 19:56:59 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2022-02-17 15:21:46 +0000 |
commit | cf8e1459558d60322945bca53f50b29ba13e6dc0 (patch) | |
tree | c8fc8c91c4e932458e324163c09dc5eecb30bba5 | |
parent | 14705ae3bdf3602d192d31e6123921f0780260b0 (diff) | |
download | upstream-cf8e1459558d60322945bca53f50b29ba13e6dc0.tar.gz upstream-cf8e1459558d60322945bca53f50b29ba13e6dc0.tar.bz2 upstream-cf8e1459558d60322945bca53f50b29ba13e6dc0.zip |
realtek: Set RTL838X sub-target specific properties
This defines the sub-target specific properties for the RTL838X
sub-target.
Signed-off-by: Birger Koblitz <git@birger-koblitz.de>
-rw-r--r-- | target/linux/realtek/rtl838x/target.mk | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/target/linux/realtek/rtl838x/target.mk b/target/linux/realtek/rtl838x/target.mk index f5cb1fb19b..ee658ea986 100644 --- a/target/linux/realtek/rtl838x/target.mk +++ b/target/linux/realtek/rtl838x/target.mk @@ -1 +1,15 @@ -BOARDNAME:=Generic +# SPDX-License-Identifier: GPL-2.0-only +ARCH:=mips +SUBTARGET:=rtl838x +CPU_TYPE:=4kec +BOARD:=realtek +BOARDNAME:=Realtek MIPS RTL838X + +KERNEL_PATCHVER:=5.10 + +define Target/Description + Build firmware images for Realtek RTL838x based boards. +endef + +FEATURES := $(filter-out mips16,$(FEATURES)) + |