57ff5f7d2a
Enclosure LED Utilities ledmon and ledctl are userspace tools designed to control storage enclosure LEDs. The user must have root privileges to use these tools. These tools use the SGPIO and SES-2 protocols to monitor and control LEDs. They been verified to work with Intel(R) storage controllers (i.e. the Intel(R) AHCI controller) and have not been tested with storage controllers of other vendors (especially SAS/SCSI controllers). For backplane enclosures attached to ISCI controllers, support is limited to Intel(R) Intelligent Backplanes. Signed-off-by: Maksim Kiselev <bigunclemax@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
714 B
Makefile
20 lines
714 B
Makefile
################################################################################
|
|
#
|
|
# ledmon
|
|
#
|
|
################################################################################
|
|
|
|
LEDMON_VERSION = 0.97
|
|
LEDMON_SITE = $(call github,intel,ledmon,v$(LEDMON_VERSION))
|
|
LEDMON_DEPENDENCIES = host-pkgconf pciutils sg3_utils udev
|
|
# The code base also include a COPYING.LIB file with the LGPL-2.1 text,
|
|
# and some source files are published under LGPL-2.1, but all of them are
|
|
# at some point linked with GPL-2.0 code, making the resulting binaries
|
|
# GPL-2.0 licensed
|
|
LEDMON_LICENSE = GPL-2.0
|
|
LEDMON_LICENSE_FILES = COPYING
|
|
# 0002-Fix-unknown-type-name-ssize_t-error.patch
|
|
LEDMON_AUTORECONF = YES
|
|
|
|
$(eval $(autotools-package))
|