diff options
author | Joe Lawrence <joe.lawrence@redhat.com> | 2019-01-31 11:41:24 -0500 |
---|---|---|
committer | Petr Mladek <pmladek@suse.com> | 2019-02-01 12:28:53 +0100 |
commit | bae054372aba0100e7b320f768c4875b5f0c23b3 (patch) | |
tree | 03ae8778b6548d98977ffb1556fe3a18172d4d73 /lib/Kconfig.debug | |
parent | a2818ee4dce575b299d8a7f46b393bc2b02ef1f4 (diff) | |
download | linux-bae054372aba0100e7b320f768c4875b5f0c23b3.tar.bz2 |
selftests/livepatch: add DYNAMIC_DEBUG config dependency
The livepatch selftest scripts turn on dynamic_debug of livepatch
kernel source to determine expected behavior. TEST_LIVEPATCH should
therefore include DYNAMIC_DEBUG in its list of dependencies.
Signed-off-by: Joe Lawrence <joe.lawrence@redhat.com>
Acked-by: Miroslav Benes <mbenes@suse.cz>
Signed-off-by: Petr Mladek <pmladek@suse.com>
Diffstat (limited to 'lib/Kconfig.debug')
-rw-r--r-- | lib/Kconfig.debug | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 0298eb8eaa4e..0a3af2965ba0 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -1994,6 +1994,7 @@ config TEST_MEMCAT_P config TEST_LIVEPATCH tristate "Test livepatching" default n + depends on DYNAMIC_DEBUG depends on LIVEPATCH depends on m help |