mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-25 20:26:34 +00:00
ipmitool: Add option to enable usb interface
Since ipmitool v1.8.17 usb support is turned off by default. Add a config option to enable support for the usb interface. Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
3aaea7ace2
commit
dd49792886
@ -18,6 +18,12 @@ config BR2_PACKAGE_IPMITOOL_LANPLUS
|
|||||||
device using the OpenIPMI ipmi_si kernel module, or if using the
|
device using the OpenIPMI ipmi_si kernel module, or if using the
|
||||||
legacy IPMI v1.5 RMCP LAN interface.
|
legacy IPMI v1.5 RMCP LAN interface.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_IPMITOOL_USB
|
||||||
|
bool "enable usb interface"
|
||||||
|
help
|
||||||
|
Enables the IPMI USB interface typically used to send inband
|
||||||
|
IPMI commands to the BMC of a server.
|
||||||
|
|
||||||
config BR2_PACKAGE_IPMITOOL_IPMIEVD
|
config BR2_PACKAGE_IPMITOOL_IPMIEVD
|
||||||
bool "ipmievd"
|
bool "ipmievd"
|
||||||
help
|
help
|
||||||
|
@ -17,6 +17,12 @@ else
|
|||||||
IPMITOOL_CONF_OPTS += --disable-intf-lanplus
|
IPMITOOL_CONF_OPTS += --disable-intf-lanplus
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_IPMITOOL_USB),y)
|
||||||
|
IPMITOOL_CONF_OPTS += --enable-intf-usb
|
||||||
|
else
|
||||||
|
IPMITOOL_CONF_OPTS += --disable-intf-usb
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_IPMITOOL_IPMISHELL),y)
|
ifeq ($(BR2_PACKAGE_IPMITOOL_IPMISHELL),y)
|
||||||
IPMITOOL_DEPENDENCIES += ncurses readline
|
IPMITOOL_DEPENDENCIES += ncurses readline
|
||||||
IPMITOOL_CONF_OPTS += --enable-ipmishell
|
IPMITOOL_CONF_OPTS += --enable-ipmishell
|
||||||
|
Loading…
x
Reference in New Issue
Block a user