Commit 9716f121 by Alexander Popov

Inform about supporting *.gz kconfig files

Refers to #80
parent fc63f3c3
...@@ -63,20 +63,19 @@ Some Linux distributions also provide `kconfig-hardened-check` as a package. ...@@ -63,20 +63,19 @@ Some Linux distributions also provide `kconfig-hardened-check` as a package.
## Usage ## Usage
``` ```
usage: kconfig-hardened-check [-h] [--version] [-p {X86_64,X86_32,ARM64,ARM}] usage: kconfig-hardened-check [-h] [--version] [-p {X86_64,X86_32,ARM64,ARM}] [-c CONFIG]
[-c CONFIG] [-l CMDLINE] [-m {verbose,json,show_ok,show_fail}]
[-l CMDLINE]
[-m {verbose,json,show_ok,show_fail}]
A tool for checking the security hardening options of the Linux kernel A tool for checking the security hardening options of the Linux kernel
optional arguments: options:
-h, --help show this help message and exit -h, --help show this help message and exit
--version show program's version number and exit --version show program's version number and exit
-p {X86_64,X86_32,ARM64,ARM}, --print {X86_64,X86_32,ARM64,ARM} -p {X86_64,X86_32,ARM64,ARM}, --print {X86_64,X86_32,ARM64,ARM}
print security hardening preferences for the selected architecture print security hardening preferences for the selected architecture
-c CONFIG, --config CONFIG -c CONFIG, --config CONFIG
check the kernel kconfig file against these preferences check the kernel kconfig file against these preferences (also supports
*.gz files)
-l CMDLINE, --cmdline CMDLINE -l CMDLINE, --cmdline CMDLINE
check the kernel cmdline file against these preferences check the kernel cmdline file against these preferences
-m {verbose,json,show_ok,show_fail}, --mode {verbose,json,show_ok,show_fail} -m {verbose,json,show_ok,show_fail}, --mode {verbose,json,show_ok,show_fail}
......
...@@ -213,7 +213,7 @@ def main(): ...@@ -213,7 +213,7 @@ def main():
parser.add_argument('-p', '--print', choices=supported_archs, parser.add_argument('-p', '--print', choices=supported_archs,
help='print security hardening preferences for the selected architecture') help='print security hardening preferences for the selected architecture')
parser.add_argument('-c', '--config', parser.add_argument('-c', '--config',
help='check the kernel kconfig file against these preferences') help='check the kernel kconfig file against these preferences (also supports *.gz files)')
parser.add_argument('-l', '--cmdline', parser.add_argument('-l', '--cmdline',
help='check the kernel cmdline file against these preferences') help='check the kernel cmdline file against these preferences')
parser.add_argument('-m', '--mode', choices=report_modes, parser.add_argument('-m', '--mode', choices=report_modes,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment