mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Changelog: ============ - Use -DALIGNMENT_WORKAROUND on arm. - Read SMBIOS entry point via kenv on DragonFly BSD. - Support for SMBIOS 3.6.0. This includes new memory device types, new processor upgrades, and Loongarch support. - Support for SMBIOS 3.7.0. This includes new port types, new processor upgrades, new slot characteristics and new fields for memory modules. - Add bash completion. - Decode HPE OEM records 197, 239 and 245. - Implement options --list-strings and --list-types. - Update HPE OEM records 203, 212, 216, 221, 233, 236, 237, 238 and 242. - Update Redfish support. - Bug fixes: Fix option --from-dump for user root Fix enabled slot characteristics not being printed - Minor improvements: Print slot width on its own line Use standard strings for slot width (From OE-Core rev: 8f4a5c380e9c0400e9c8a6a0ea4203358fd3b2e8) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
808 B
BlitzBasic
22 lines
808 B
BlitzBasic
SUMMARY = "DMI (Desktop Management Interface) table related utilities"
|
|
HOMEPAGE = "http://www.nongnu.org/dmidecode/"
|
|
DESCRIPTION = "Dmidecode reports information about your system's hardware as described in your system BIOS according to the SMBIOS/DMI standard (see a sample output)."
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/dmidecode/${BP}.tar.xz"
|
|
|
|
COMPATIBLE_HOST = "(i.86|x86_64|aarch64|arm|powerpc|powerpc64).*-linux"
|
|
|
|
do_install() {
|
|
oe_runmake \
|
|
DESTDIR="${D}" \
|
|
prefix="${prefix}" \
|
|
sbindir="${sbindir}" \
|
|
docdir="${docdir}/${BPN}" \
|
|
mandir="${mandir}" \
|
|
install
|
|
}
|
|
|
|
SRC_URI[sha256sum] = "e40c65f3ec3dafe31ad8349a4ef1a97122d38f65004ed66575e1a8d575dd8bae"
|