diff options
author | Masahiro Yamada | 2022-05-12 12:59:01 +0900 |
---|---|---|
committer | Guo Ren | 2022-05-13 14:46:04 +0800 |
commit | 29b24a76bdea0786a727e08266607c6e3bbfa160 (patch) | |
tree | c46455b0c1aa1f97f8d7f4af8f18a437deb12e19 | |
parent | 9d975568606631601cc2bb5b62598869838ff0be (diff) |
csky: Remove unused core-y for dts
This line was used for embedding a DT into vmlinux.
Since commit c4c14c3bd177 ("csky: remove builtin-dtb Kbuild"),
DT for csky is just a separate blob.
It is covered by the generic rule in the top Makefile:
ifdef CONFIG_OF_EARLY_FLATTREE
all: dtbs
endif
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
-rw-r--r-- | arch/csky/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/csky/Makefile b/arch/csky/Makefile index 866805077636..4d72aca4069b 100644 --- a/arch/csky/Makefile +++ b/arch/csky/Makefile @@ -69,7 +69,6 @@ libs-y += arch/csky/lib/ \ $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name) boot := arch/csky/boot -core-y += $(boot)/dts/ all: zImage |