diff options
author | 2025-06-03 03:12:54 +0900 | |
---|---|---|
committer | 2025-06-07 14:38:07 +0900 | |
commit | e21efe833eae4e2a56c2c2a11caae870a65926fa (patch) | |
tree | 952fd13f2d7506e80874da29f1fd129213347101 /arch/microblaze | |
parent | kbuild: set y instead of 1 to KBUILD_{BUILTIN,MODULES} (diff) | |
download | linux-rng-e21efe833eae4e2a56c2c2a11caae870a65926fa.tar.xz linux-rng-e21efe833eae4e2a56c2c2a11caae870a65926fa.zip |
arch: use always-$(KBUILD_BUILTIN) for vmlinux.lds
The extra-y syntax is deprecated. Instead, use always-$(KBUILD_BUILTIN),
which behaves equivalently.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Reviewed-by: Nicolas Schier <n.schier@avm.de>
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/kernel/Makefile b/arch/microblaze/kernel/Makefile index 85c4d29ef43e..241e466e7333 100644 --- a/arch/microblaze/kernel/Makefile +++ b/arch/microblaze/kernel/Makefile @@ -11,7 +11,7 @@ CFLAGS_REMOVE_ftrace.o = -pg CFLAGS_REMOVE_process.o = -pg endif -extra-y := vmlinux.lds +always-$(KBUILD_BUILTIN) := vmlinux.lds obj-y += head.o dma.o exceptions.o \ hw_exception_handler.o irq.o \ |