diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-04-26 23:33:39 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-05-03 10:05:00 -0400 |
commit | 7206c1247416f2c62ce38b65994b5e74fefe2e2b (patch) | |
tree | f84decc53fb8d78328ad8f1d1fb85e48782793d3 /samples/Kconfig | |
parent | 1eaca4b982806b7554438a21831622128acebe82 (diff) |
samples: seccomp: turn CONFIG_SAMPLE_SECCOMP into a bool option
The prompt of CONFIG_SAMPLE_SECCOMP claims this is "loadable module
only", which is invalid.
samples/seccomp/ only contains host programs, so having it tristate
is pointless.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'samples/Kconfig')
-rw-r--r-- | samples/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/Kconfig b/samples/Kconfig index d19754ccad08..b98a763a9b72 100644 --- a/samples/Kconfig +++ b/samples/Kconfig | |||
@@ -103,8 +103,8 @@ config SAMPLE_CONNECTOR | |||
103 | See also Documentation/connector/connector.txt | 103 | See also Documentation/connector/connector.txt |
104 | 104 | ||
105 | config SAMPLE_SECCOMP | 105 | config SAMPLE_SECCOMP |
106 | tristate "Build seccomp sample code -- loadable modules only" | 106 | bool "Build seccomp sample code" |
107 | depends on SECCOMP_FILTER && m | 107 | depends on SECCOMP_FILTER |
108 | help | 108 | help |
109 | Build samples of seccomp filters using various methods of | 109 | Build samples of seccomp filters using various methods of |
110 | BPF filter construction. | 110 | BPF filter construction. |