https://github.com/torvalds/linux
Revision aa61b7bb00f7c0738823237a06161d568442b93c authored by Ingo Molnar on 29 May 2020, 09:36:49 UTC, committed by Ingo Molnar on 29 May 2020, 09:37:11 UTC
Pick up FPU register dump fixes from Al Viro.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
2 parent s 4bfe6cc + 9e46365
Raw File
Tip revision: aa61b7bb00f7c0738823237a06161d568442b93c authored by Ingo Molnar on 29 May 2020, 09:36:49 UTC
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs into x86/urgent
Tip revision: aa61b7b
Makefile
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for the Linux BPFILTER layer.
#

hostprogs := bpfilter_umh
bpfilter_umh-objs := main.o
KBUILD_HOSTCFLAGS += -I $(srctree)/tools/include/ -I $(srctree)/tools/include/uapi
HOSTCC := $(CC)

ifeq ($(CONFIG_BPFILTER_UMH), y)
# builtin bpfilter_umh should be compiled with -static
# since rootfs isn't mounted at the time of __init
# function is called and do_execv won't find elf interpreter
KBUILD_HOSTLDFLAGS += -static
endif

$(obj)/bpfilter_umh_blob.o: $(obj)/bpfilter_umh

obj-$(CONFIG_BPFILTER_UMH) += bpfilter.o
bpfilter-objs += bpfilter_kern.o bpfilter_umh_blob.o
back to top