ipmitool_1.8.18.bb 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. SUMMARY = "Utility for IPMI control"
  2. DESCRIPTION = "This package contains a utility for interfacing with devices that support \
  3. the Intelligent Platform Management Interface specification. IPMI is \
  4. an open standard for machine health, inventory, and remote power control. \
  5. \
  6. This utility can communicate with IPMI-enabled devices through either a \
  7. kernel driver such as OpenIPMI or over the RMCP LAN protocol defined in \
  8. the IPMI specification. IPMIv2 adds support for encrypted LAN \
  9. communications and remote Serial-over-LAN functionality. \
  10. \
  11. It provides commands for reading the Sensor Data Repository (SDR) and \
  12. displaying sensor values, displaying the contents of the System Event \
  13. Log (SEL), printing Field Replaceable Unit (FRU) information, reading and \
  14. setting LAN configuration, and chassis power control. \
  15. "
  16. HOMEPAGE = "http://ipmitool.sourceforge.net/"
  17. SECTION = "kernel/userland"
  18. LICENSE = "BSD-3-Clause"
  19. LIC_FILES_CHKSUM = "file://COPYING;md5=9aa91e13d644326bf281924212862184"
  20. DEPENDS = "openssl readline ncurses"
  21. SRC_URI = "${SOURCEFORGE_MIRROR}/ipmitool/ipmitool-${PV}.tar.bz2 \
  22. file://0001-Migrate-to-openssl-1.1.patch \
  23. file://0001-fru-Fix-buffer-overflow-vulnerabilities.patch \
  24. file://0001-fru-Fix-buffer-overflow-in-ipmi_spd_print_fru.patch \
  25. file://0002-session-Fix-buffer-overflow-in-ipmi_get_session_info.patch \
  26. file://0003-channel-Fix-buffer-overflow.patch \
  27. file://0004-lanp-Fix-buffer-overflows-in-get_lan_param_select.patch \
  28. file://0005-fru-sdr-Fix-id_string-buffer-overflows.patch \
  29. file://0001-hpmfwupg-move-variable-definition-to-.c-file.patch \
  30. "
  31. SRC_URI[md5sum] = "bab7ea104c7b85529c3ef65c54427aa3"
  32. SRC_URI[sha256sum] = "0c1ba3b1555edefb7c32ae8cd6a3e04322056bc087918f07189eeedfc8b81e01"
  33. inherit autotools
  34. # --disable-dependency-tracking speeds up the build
  35. # --enable-file-security adds some security checks
  36. # --disable-intf-free disables FreeIPMI support - we don't want to depend on
  37. # FreeIPMI libraries, FreeIPMI has its own ipmitoool-like utility.
  38. #
  39. EXTRA_OECONF = "--disable-dependency-tracking --enable-file-security --disable-intf-free"