mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-05 05:04:45 +02:00
45 lines
1.6 KiB
BlitzBasic
45 lines
1.6 KiB
BlitzBasic
SUMMARY = "Intel(R) Local Managability Service"
|
|
DESCRIPTION = "Intel Local Manageability Service allows applications \
|
|
to access the Intel Active Management Technology (AMT) firmware via \
|
|
the Intel Management Engine Interface (MEI)."
|
|
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2ee41112a44fe7014dce33e26468ba93"
|
|
|
|
COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
|
|
|
|
COMPATIBLE_HOST:libc-musl = "null"
|
|
|
|
inherit cmake systemd features_check python3native
|
|
|
|
DEPENDS = "metee ace xerces-c libnl libxml2 glib-2.0 glib-2.0-native pkgconfig-native python3-packaging-native"
|
|
|
|
# Enable either connman or networkmanager or none but not both.
|
|
PACKAGECONFIG ??= "connman"
|
|
PACKAGECONFIG[connman] = "-DNETWORK_CN=ON, -DNETWORK_CN=OFF, connman"
|
|
PACKAGECONFIG[networkmanager] = "-DNETWORK_NM=ON, -DNETWORK_NM=OFF, networkmanager"
|
|
|
|
REQUIRED_DISTRO_FEATURES = "systemd"
|
|
|
|
FILES:${PN} += "${datadir}/dbus-1/system-services/*.service"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SYSTEMD_SERVICE:${PN} = "lms.service"
|
|
|
|
SRC_URI = "git://github.com/intel/lms.git;branch=master;protocol=https \
|
|
"
|
|
SRCREV = "388f115b2aeb3ea11499971c65f828daefd32c47"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${sysconfdir}/lms
|
|
install -d ${D}${systemd_system_unitdir}
|
|
install -m 0644 ${B}/UNS/lms.service ${D}${systemd_system_unitdir}
|
|
install -d ${D}${sysconfdir}/udev/rules.d
|
|
install -m 0644 ${S}/UNS/linux_scripts/70-mei-wdt.rules ${D}${sysconfdir}/udev/rules.d/70-mei-wdt.rules
|
|
}
|
|
|
|
RDEPENDS:${PN} += "ace"
|
|
|
|
CVE_STATUS[CVE-2018-1000535] = "cpe-incorrect: This CVE is for a different LMS - Lan Management System."
|