From: Kyle Hale Date: Tue, 8 Oct 2013 21:20:45 +0000 (-0500) Subject: fix GEARS code inject dependency X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=72eba5b17b1d31da5cb3973b4a5b55837f188055;hp=3d65d36e41c21aa44e6f2549604cc4a4ee3320c5;p=palacios.git fix GEARS code inject dependency --- diff --git a/palacios/src/gears/Kconfig b/palacios/src/gears/Kconfig index 1961d69..89892eb 100644 --- a/palacios/src/gears/Kconfig +++ b/palacios/src/gears/Kconfig @@ -97,6 +97,7 @@ config EXT_CODE_INJECT bool "Allow code injection" depends on GEARS depends on EXT_SYSCALL_HIJACK + depends on EXT_EXECVE_HOOK default n help This option will allow code to be injected and run in the diff --git a/palacios/src/gears/Makefile b/palacios/src/gears/Makefile index 8de6c26..1ecd0db 100644 --- a/palacios/src/gears/Makefile +++ b/palacios/src/gears/Makefile @@ -1,7 +1,7 @@ obj-$(V3_CONFIG_EXT_SW_INTERRUPTS) += ext_sw_intr.o obj-$(V3_CONFIG_EXT_SYSCALL_HIJACK) += ext_syscall_hijack.o -obj-$(V3_CONFIG_EXT_EXECVE_HOOK) += ext_execve_hook.o -obj-$(V3_CONFIG_EXT_EXECVE_HOOK) += ext_process_environment.o +obj-$(V3_CONFIG_EXT_EXECVE_HOOK) += ext_execve_hook.o \ + ext_process_environment.o obj-$(V3_CONFIG_EXT_CODE_INJECT) += ext_code_inject.o obj-$(V3_CONFIG_EXT_ENV_INJECT) += ext_env_inject.o obj-$(V3_CONFIG_EXT_GUARD_MODULES) += ext_guard_mods.o