mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
If userns_restore_one_link() is called outside of usernsd,
it switches into the criu namespace and switches back before exiting.
v2: rid of the include of linux/net_namespace.h in criu/include/net.h,
as well as the associated defines and feature checks
travis-ci: success for net: simplify restore of macvlan-s (rev2)
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
Acked-by: Tycho Andersen <tycho.andersen@canonical.com>
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
49 lines
1.3 KiB
Text
49 lines
1.3 KiB
Text
include $(__nmk_dir)utils.mk
|
|
include $(__nmk_dir)msg.mk
|
|
include $(SRC_DIR)/scripts/feature-tests.mak
|
|
|
|
ifeq ($(call try-cc,$(FEATURE_TEST_LIBBSD_DEV),-lbsd),true)
|
|
LIBS_FEATURES += -lbsd
|
|
FEATURE_DEFINES += -DCONFIG_HAS_LIBBSD
|
|
endif
|
|
|
|
ifeq ($(call pkg-config-check,libselinux),y)
|
|
LIBS_FEATURES += -lselinux
|
|
FEATURE_DEFINES += -DCONFIG_HAS_SELINUX
|
|
endif
|
|
|
|
export LIBS += $(LIBS_FEATURES)
|
|
|
|
export DEFINES += $(FEATURE_DEFINES)
|
|
export CFLAGS += $(FEATURE_DEFINES)
|
|
|
|
FEATURES_LIST := TCP_REPAIR STRLCPY STRLCAT PTRACE_PEEKSIGINFO \
|
|
SETPROCTITLE_INIT MEMFD TCP_REPAIR_WINDOW
|
|
|
|
# $1 - config name
|
|
define gen-feature-test
|
|
ifeq ($$(call try-cc,$$(FEATURE_TEST_$(1)),$$(LIBS_FEATURES),$$(DEFINES)),true)
|
|
$(Q) @echo '#define CONFIG_HAS_$(1)' >> $$@
|
|
$(Q) @echo '' >> $$@
|
|
endif
|
|
endef
|
|
|
|
define config-header-rule
|
|
$(CONFIG_HEADER): $(SRC_DIR)/scripts/feature-tests.mak
|
|
$$(call msg-gen, $$@)
|
|
$(Q) @echo '#ifndef __CR_CONFIG_H__' > $$@
|
|
$(Q) @echo '#define __CR_CONFIG_H__' >> $$@
|
|
$(Q) @echo '' >> $$@
|
|
$(call map,gen-feature-test,$(FEATURES_LIST))
|
|
ifeq ($$(VDSO),y)
|
|
$(Q) @echo '#define CONFIG_VDSO' >> $$@
|
|
$(Q) @echo '' >> $$@
|
|
endif
|
|
ifeq ($$(piegen-y),y)
|
|
$(Q) @echo '#define CONFIG_PIEGEN' >> $$@
|
|
$(Q) @echo '' >> $$@
|
|
endif
|
|
$(Q) @echo '#endif /* __CR_CONFIG_H__ */' >> $$@
|
|
endef
|
|
|
|
$(eval $(config-header-rule))
|