Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

x86/um/vdso: Drop VDSO64-y from Makefile

This symbol is unnecessary, remove it.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Link: https://patch.msgid.link/20251013-uml-vdso-cleanup-v1-4-a079c7adcc69@weissschuh.net
Signed-off-by: Johannes Berg <johannes.berg@intel.com>

authored by

Thomas Weißschuh and committed by
Johannes Berg
3c9b904f 12fe820f

+2 -5
+2 -5
arch/x86/um/vdso/Makefile
··· 3 3 # Building vDSO images for x86. 4 4 # 5 5 6 - VDSO64-y := y 7 - 8 - vdso-install-$(VDSO64-y) += vdso.so 9 - 6 + vdso-install-y += vdso.so 10 7 11 8 # files to link into the vdso 12 9 vobjs-y := vdso-note.o um_vdso.o 13 10 14 11 # files to link into kernel 15 - obj-$(VDSO64-y) += vdso.o vma.o 12 + obj-y += vdso.o vma.o 16 13 17 14 vobjs := $(foreach F,$(vobjs-y),$(obj)/$F) 18 15