2
1

Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. config BR2_PACKAGE_IPMITOOL
  2. bool "ipmitool"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. IPMItool provides a simple command-line interface to
  6. IPMI-enabled devices.
  7. ipmitool will look up the IANA PEN (Enterprise Numbers)
  8. registry in /usr/share/misc/iana/. The IANA PEN is optional,
  9. it can be provided by the iana-assignment package or by a
  10. rootfs overlay.
  11. https://github.com/ipmitool/ipmitool/
  12. if BR2_PACKAGE_IPMITOOL
  13. config BR2_PACKAGE_IPMITOOL_LANPLUS
  14. bool "enable lanplus interface"
  15. select BR2_PACKAGE_OPENSSL
  16. help
  17. Enables the IPMI v2.0 RMCP+ LAN interface typically used to
  18. send IPMI commands to the BMC of a remote server.
  19. Not needed if you only want to communicate with the local BMC
  20. of your device using the OpenIPMI ipmi_si kernel module, or if
  21. using the legacy IPMI v1.5 RMCP LAN interface.
  22. config BR2_PACKAGE_IPMITOOL_USB
  23. bool "enable usb interface"
  24. help
  25. Enables the IPMI USB interface typically used to send inband
  26. IPMI commands to the BMC of a server.
  27. config BR2_PACKAGE_IPMITOOL_IPMIEVD
  28. bool "ipmievd"
  29. help
  30. IPMI event daemon for sending events to syslog
  31. config BR2_PACKAGE_IPMITOOL_IPMISHELL
  32. bool "ipmishell"
  33. select BR2_PACKAGE_READLINE
  34. help
  35. IPMI shell interface
  36. endif