diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-01-17 17:03:32 +0900 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2021-01-18 20:53:14 +0900 |
commit | 803c72c8547c56917331057bff55703baeb59e8e (patch) | |
tree | e162cb7d1c3d72c4bad343b1fb5b1513b135674d /arch/openrisc | |
parent | 4f70d150294b3ddfbe4be7130ca53898cd5b91be (diff) |
openrisc: add arch/openrisc/Kbuild
Describe the subdirectories under arch/openrisc/ in arch/openrisc/Kbuild
so you can use the standard obj-y syntax.
I removed the CONFIG_OPENRISC_BUILTIN_DTB conditional because it is
already controlled by arch/openrisc/boot/dts/Makefile.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'arch/openrisc')
-rw-r--r-- | arch/openrisc/Kbuild | 3 | ||||
-rw-r--r-- | arch/openrisc/Makefile | 11 |
2 files changed, 4 insertions, 10 deletions
diff --git a/arch/openrisc/Kbuild b/arch/openrisc/Kbuild new file mode 100644 index 000000000000..4234b4c03e72 --- /dev/null +++ b/arch/openrisc/Kbuild @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0 +obj-y += lib/ kernel/ mm/ +obj-y += boot/dts/ diff --git a/arch/openrisc/Makefile b/arch/openrisc/Makefile index b13404f1f8bd..410e7abfac69 100644 --- a/arch/openrisc/Makefile +++ b/arch/openrisc/Makefile @@ -42,18 +42,9 @@ endif head-y := arch/openrisc/kernel/head.o -core-y += arch/openrisc/lib/ \ - arch/openrisc/kernel/ \ - arch/openrisc/mm/ +core-y += arch/openrisc/ libs-y += $(LIBGCC) -ifneq '$(CONFIG_OPENRISC_BUILTIN_DTB)' '""' -BUILTIN_DTB := y -else -BUILTIN_DTB := n -endif -core-$(BUILTIN_DTB) += arch/openrisc/boot/dts/ - PHONY += vmlinux.bin vmlinux.bin: vmlinux |