2018-05-22 10:22:30 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
#
|
|
|
|
# Makefile for the Linux BPFILTER layer.
|
|
|
|
#
|
|
|
|
|
2020-04-29 11:45:15 +08:00
|
|
|
userprogs := bpfilter_umh
|
2018-05-22 10:22:30 +08:00
|
|
|
bpfilter_umh-objs := main.o
|
2020-04-29 11:45:15 +08:00
|
|
|
userccflags += -I $(srctree)/tools/include/ -I $(srctree)/tools/include/uapi
|
2018-06-05 10:53:41 +08:00
|
|
|
|
2020-07-01 17:26:44 +08:00
|
|
|
ifeq ($(CONFIG_BPFILTER_UMH), y)
|
2020-04-29 11:45:15 +08:00
|
|
|
# builtin bpfilter_umh should be linked with -static
|
2018-05-22 10:22:30 +08:00
|
|
|
# since rootfs isn't mounted at the time of __init
|
|
|
|
# function is called and do_execv won't find elf interpreter
|
2020-04-29 11:45:15 +08:00
|
|
|
userldflags += -static
|
2020-07-01 17:26:44 +08:00
|
|
|
endif
|
2018-05-22 10:22:30 +08:00
|
|
|
|
2018-06-27 11:13:48 +08:00
|
|
|
$(obj)/bpfilter_umh_blob.o: $(obj)/bpfilter_umh
|
2018-05-22 10:22:30 +08:00
|
|
|
|
|
|
|
obj-$(CONFIG_BPFILTER_UMH) += bpfilter.o
|
2018-06-27 11:13:48 +08:00
|
|
|
bpfilter-objs += bpfilter_kern.o bpfilter_umh_blob.o
|