Config.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. https://github.com/ipmitool/ipmitool/
  8. if BR2_PACKAGE_IPMITOOL
  9. config BR2_PACKAGE_IPMITOOL_PEN_REG_URI
  10. string "IANA PEN registry URL or path"
  11. default "https://www.iana.org/assignments/enterprise-numbers.txt"
  12. help
  13. Enter an URL or a file path to the PEN registry to use.
  14. Note that the official registry is 4MiB+ and may change any
  15. time and is thus not guaranteed to be reproducible.
  16. Leave empty to not use a registry; vendor IDs will be
  17. displayed instead of the corresponding names.
  18. config BR2_PACKAGE_IPMITOOL_LANPLUS
  19. bool "enable lanplus interface"
  20. select BR2_PACKAGE_OPENSSL
  21. help
  22. Enables the IPMI v2.0 RMCP+ LAN interface typically used to
  23. send IPMI commands to the BMC of a remote server.
  24. Not needed if you only want to communicate with the local BMC
  25. of your device using the OpenIPMI ipmi_si kernel module, or if
  26. using the legacy IPMI v1.5 RMCP LAN interface.
  27. config BR2_PACKAGE_IPMITOOL_USB
  28. bool "enable usb interface"
  29. help
  30. Enables the IPMI USB interface typically used to send inband
  31. IPMI commands to the BMC of a server.
  32. config BR2_PACKAGE_IPMITOOL_IPMIEVD
  33. bool "ipmievd"
  34. help
  35. IPMI event daemon for sending events to syslog
  36. config BR2_PACKAGE_IPMITOOL_IPMISHELL
  37. bool "ipmishell"
  38. select BR2_PACKAGE_READLINE
  39. help
  40. IPMI shell interface
  41. endif