diff options
| author | Thomas Weißschuh <thomas.weissschuh@linutronix.de> | 2026-07-09 09:49:00 +0300 |
|---|---|---|
| committer | Paul Walmsley <pjw@kernel.org> | 2026-07-30 02:55:17 +0300 |
| commit | c052927905710de1ab7364bf1925efbd12517ea3 (patch) | |
| tree | 5dbda2e3dd3aec7cbb17cc4744002a035431ffa2 /arch | |
| parent | a0188cc133696627857d16054e43f9ebc7efc821 (diff) | |
| download | linux-c052927905710de1ab7364bf1925efbd12517ea3.tar.xz | |
riscv: vdso: Only try to install vDSO when present
vdso.so.dbg is only built with CONFIG_MMU.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202607090258.iSAUYlO1-lkp@intel.com/
Fixes: f157d411a9eb ("riscv: add missing vdso_install target")
Fixes: 3edf39916977 ("vDSO, kbuild: Provide vDSO debug variants at runtime")
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Link: https://patch.msgid.link/20260709-riscv-install-vdso-v1-1-0ba4345419ca@linutronix.de
Signed-off-by: Paul Walmsley <pjw@kernel.org>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/riscv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile index ce0cc737f870..1363e5bef35c 100644 --- a/arch/riscv/Makefile +++ b/arch/riscv/Makefile @@ -168,7 +168,7 @@ vdso_prepare: prepare0 endif endif -vdso-install-y += arch/riscv/kernel/vdso/vdso.so.dbg +vdso-install-$(CONFIG_MMU) += arch/riscv/kernel/vdso/vdso.so.dbg vdso-install-$(CONFIG_RISCV_USER_CFI) += arch/riscv/kernel/vdso_cfi/vdso-cfi.so.dbg vdso-install-$(CONFIG_COMPAT) += arch/riscv/kernel/compat_vdso/compat_vdso.so.dbg |
