Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kernel-hardening-checker
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
kernel-hardening-checker
Commits
b630183a
Commit
b630183a
authored
Mar 24, 2023
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix style
parent
33a61e05
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
__init__.py
kconfig_hardened_check/__init__.py
+5
-3
No files found.
kconfig_hardened_check/__init__.py
View file @
b630183a
...
@@ -101,8 +101,8 @@ def print_unknown_options(checklist, parsed_options):
...
@@ -101,8 +101,8 @@ def print_unknown_options(checklist, parsed_options):
def
print_checklist
(
mode
,
checklist
,
with_results
):
def
print_checklist
(
mode
,
checklist
,
with_results
):
if
mode
==
'json'
:
if
mode
==
'json'
:
output
=
[]
output
=
[]
for
o
in
checklist
:
for
o
pt
in
checklist
:
output
.
append
(
o
.
json_dump
(
with_results
))
output
.
append
(
o
pt
.
json_dump
(
with_results
))
print
(
json
.
dumps
(
output
))
print
(
json
.
dumps
(
output
))
return
return
...
@@ -258,10 +258,12 @@ def main():
...
@@ -258,10 +258,12 @@ def main():
parsed_kconfig_options
=
OrderedDict
()
parsed_kconfig_options
=
OrderedDict
()
parse_kconfig_file
(
parsed_kconfig_options
,
args
.
config
)
parse_kconfig_file
(
parsed_kconfig_options
,
args
.
config
)
populate_with_data
(
config_checklist
,
parsed_kconfig_options
,
'kconfig'
)
populate_with_data
(
config_checklist
,
parsed_kconfig_options
,
'kconfig'
)
# populate the checklist with the kernel version data
populate_with_data
(
config_checklist
,
kernel_version
,
'version'
)
populate_with_data
(
config_checklist
,
kernel_version
,
'version'
)
if
args
.
cmdline
:
if
args
.
cmdline
:
# populate the checklist with the parsed
kconfig
data
# populate the checklist with the parsed
cmdline
data
parsed_cmdline_options
=
OrderedDict
()
parsed_cmdline_options
=
OrderedDict
()
parse_cmdline_file
(
parsed_cmdline_options
,
args
.
cmdline
)
parse_cmdline_file
(
parsed_cmdline_options
,
args
.
cmdline
)
populate_with_data
(
config_checklist
,
parsed_cmdline_options
,
'cmdline'
)
populate_with_data
(
config_checklist
,
parsed_cmdline_options
,
'cmdline'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment