Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Rapoport <rppt@linux.vnet.ibm.com>2016-04-18 16:34:32 +0300
committerAndrei Vagin <avagin@virtuozzo.com>2017-09-16 09:10:03 +0300
commit10ef42762337bb15f46d9ab44d6fd903f1ea8ef1 (patch)
treeeb898b6dd4518fc58690e65d22b77caa23ca2af4 /Makefile.config
parent7c78a48b068296ea3dc670798beb1a4fb35856fc (diff)
UFFD related makefiles cleanup
Signed-off-by: Mike Rapoport <rppt@linux.vnet.ibm.com> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config10
1 files changed, 1 insertions, 9 deletions
diff --git a/Makefile.config b/Makefile.config
index 8fb4e6b69..7851f826f 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -35,12 +35,8 @@ endif
export DEFINES += $(FEATURE_DEFINES)
export CFLAGS += $(FEATURE_DEFINES)
-ifeq ($(call try-cc,$(FEATURE_TEST_UFFD)),y)
- export UFFD := 1
-endif
-
FEATURES_LIST := TCP_REPAIR STRLCPY STRLCAT PTRACE_PEEKSIGINFO \
- SETPROCTITLE_INIT MEMFD TCP_REPAIR_WINDOW
+ SETPROCTITLE_INIT MEMFD TCP_REPAIR_WINDOW UFFD
# $1 - config name
define gen-feature-test
@@ -62,10 +58,6 @@ ifeq ($$(VDSO),y)
$(Q) @echo '#define CONFIG_VDSO' >> $$@
$(Q) @echo '' >> $$@
endif
-ifeq ($$(UFFD),1)
- $(Q) @echo '#define CONFIG_HAS_UFFD' >> $$@
- $(Q) @echo '' >> $$@
-endif
$(Q) @echo '#endif /* __CR_CONFIG_H__ */' >> $$@
endef