diff options
Diffstat (limited to 'meta-oe/recipes-security/kernel-hardening-checker/kernel-hardening-checker_0.6.10.bb')
-rw-r--r-- | meta-oe/recipes-security/kernel-hardening-checker/kernel-hardening-checker_0.6.10.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-oe/recipes-security/kernel-hardening-checker/kernel-hardening-checker_0.6.10.bb b/meta-oe/recipes-security/kernel-hardening-checker/kernel-hardening-checker_0.6.10.bb new file mode 100644 index 0000000000..e7610ac785 --- /dev/null +++ b/meta-oe/recipes-security/kernel-hardening-checker/kernel-hardening-checker_0.6.10.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | SUMMARY = "A tool for checking the security hardening options of the Linux kernel" | ||
2 | DESCRIPTION = "\ | ||
3 | There are plenty of security hardening options for the Linux kernel; Kconfig \ | ||
4 | options (compile-time); Kernel cmdline arguments (boot-time); Sysctl \ | ||
5 | parameters (runtime). A lot of them have to be enabled manually to make the \ | ||
6 | system more secure which is difficult to track. This tool helps with this \ | ||
7 | task by checking and reporting about the settings compared to a list of \ | ||
8 | recommendation. \ | ||
9 | " | ||
10 | HOMEPAGE = "https://github.com/a13xp0p0v/kernel-hardening-checker" | ||
11 | BUGTRACKER = "https://github.com/a13xp0p0v/kernel-hardening-checker/issues" | ||
12 | LICENSE = "GPL-3.0-only" | ||
13 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=d32239bcb673463ab874e80d47fae504" | ||
14 | |||
15 | SRC_URI = "git://github.com/a13xp0p0v/kernel-hardening-checker;protocol=https;branch=master" | ||
16 | SRCREV = "f4dbe258ff3d37489962ea9cf210192ae7ff9280" | ||
17 | |||
18 | |||
19 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
20 | |||
21 | RDEPENDS:${PN} = "\ | ||
22 | python3-json \ | ||
23 | " | ||
24 | |||
25 | # /boot/config is required for the analysis | ||
26 | RRECOMMENDS:${PN}:class-target = "\ | ||
27 | kernel-dev \ | ||
28 | " | ||
29 | |||
30 | inherit setuptools3 | ||
31 | |||
32 | # allow to run on build host, if you don't want it in the image | ||
33 | # oe-run-native kernel-hardening-checker-native kernel-hardening-checker ... | ||
34 | BBCLASSEXTEND = "native" | ||