Config.in 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. http://sourceforge.net/projects/ipmitool/
  8. if BR2_PACKAGE_IPMITOOL
  9. config BR2_PACKAGE_IPMITOOL_LANPLUS
  10. bool "enable lanplus interface"
  11. select BR2_PACKAGE_OPENSSL
  12. help
  13. Enables the IPMI v2.0 RMCP+ LAN interface typically used to
  14. send IPMI commands to the BMC of a remote server.
  15. Not needed if you only want to communicate with the local BMC
  16. of your device using the OpenIPMI ipmi_si kernel module, or if
  17. using the legacy IPMI v1.5 RMCP LAN interface.
  18. config BR2_PACKAGE_IPMITOOL_USB
  19. bool "enable usb interface"
  20. help
  21. Enables the IPMI USB interface typically used to send inband
  22. IPMI commands to the BMC of a server.
  23. config BR2_PACKAGE_IPMITOOL_IPMIEVD
  24. bool "ipmievd"
  25. help
  26. IPMI event daemon for sending events to syslog
  27. config BR2_PACKAGE_IPMITOOL_IPMISHELL
  28. bool "ipmishell"
  29. select BR2_PACKAGE_NCURSES
  30. select BR2_PACKAGE_READLINE
  31. help
  32. IPMI shell interface
  33. endif