meta-starlingx/meta-stx-flock/stx-integ/spectre-meltdown-checker_git.bb
Babak Sarashki 02cd333741 stx-integ: remove empty line from recipe
Signed-off-by: Babak Sarashki <Babak.SarAshki@windriver.com>
2020-09-22 20:06:14 -07:00

24 lines
805 B
BlitzBasic

DESCRIPTION = " \
A shell script to tell if your system is vulnerable against the several \
\"speculative execution\" CVEs that were made public since 2018. \
"
SUMMARY = "Spectre and Meltdown Checker"
HOMEPAGE = "https://github.com/speed47/spectre-meltdown-checker"
LICENSE = "GPL-3.0"
LIC_FILES_CHKSUM = "file://spectre-meltdown-checker.sh;beginline=1;endline=5;md5=0113e62a200ec9a5f5ebdd7ad4329133"
SRCREV = "3d21dae16864f8e8262d7a35bd4de300452b274d"
SRCNAME = "spectre-meltdown-checker"
BRANCH = "master"
PROTOCOL = "https"
PV = "v0.43+git${SRCPV}"
S = "${WORKDIR}/git"
SRC_URI = "git://github.com/speed47/${SRCNAME}.git;protocol=${PROTOCOL};rev=${SRCREV};branch=${BRANCH}"
do_install() {
install -d -p -m 0755 ${D}/${sbindir}
install -m 0644 ${S}/${SRCNAME}.sh ${D}/${sbindir}/${SRCNAME}.sh
}