diff options
author | Masahiro Yamada <[email protected]> | 2023-07-22 02:18:57 +0900 |
---|---|---|
committer | Richard Weinberger <[email protected]> | 2023-08-26 22:41:34 +0200 |
commit | 8f85f93bfd2d490251143577bd43b01b40acb8d7 (patch) | |
tree | 2e05377f2e6903d9ab55b9be4467c7b9efae6426 | |
parent | d32df1080f0199f3570a541fcfcf9b5974b771db (diff) |
um: use obj-y to descend into arch/um/*/
The single build rule does not work with the core-y syntax. [1]
Use the standard obj-y syntax.
[1]: https://lore.kernel.org/linux-kbuild/[email protected]/T/#m7bc402e1e038f00ebcf2e92ed7fcb8a52fc1ea44
Signed-off-by: Masahiro Yamada <[email protected]>
Tested-by: Jiri Slaby <[email protected]>
Reviewed-by: Nick Desaulniers <[email protected]>
Tested-by: Nick Desaulniers <[email protected]>
Signed-off-by: Richard Weinberger <[email protected]>
-rw-r--r-- | arch/um/Kbuild | 2 | ||||
-rw-r--r-- | arch/um/Makefile | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/arch/um/Kbuild b/arch/um/Kbuild index a4e40e534e6a..6cf0c1e5927b 100644 --- a/arch/um/Kbuild +++ b/arch/um/Kbuild @@ -1 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only + +obj-y += kernel/ drivers/ os-Linux/ diff --git a/arch/um/Makefile b/arch/um/Makefile index 1735a562453d..82f05f250634 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile @@ -22,10 +22,6 @@ ARCH_DIR := arch/um # features. SHELL := /bin/bash -core-y += $(ARCH_DIR)/kernel/ \ - $(ARCH_DIR)/drivers/ \ - $(ARCH_DIR)/os-Linux/ - MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas HEADER_ARCH := $(SUBARCH) |