diff options
author | David Altobelli <david.altobelli@hp.com> | 2008-07-02 11:38:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-07-22 00:55:02 -0400 |
commit | 89bcb05d9bbf8bd559988bca4f2579defd28d008 (patch) | |
tree | 9bf9ce125be55fbf169628b163dbd1367a840ddf /drivers/misc/Kconfig | |
parent | d95d62c018209355c0dc998682ff792432aa870c (diff) |
HP iLO driver
A driver for the HP iLO/iLO2 management processor, which allows userspace
programs to query the management processor. Programs can open a channel
to the device (/dev/hpilo/dXccbN), and use this to send/receive queries.
The O_EXCL open flag is used to indicate that a particular channel cannot
be shared between processes. This driver will replace various packages
HP has shipped, including hprsm and hp-ilo.
Signed-off-by: David Altobelli <david.altobelli@hp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/misc/Kconfig')
-rw-r--r-- | drivers/misc/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index 1921b8dbb242..ce67d973d349 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig | |||
@@ -420,4 +420,17 @@ config SGI_XP | |||
420 | this feature will allow for direct communication between SSIs | 420 | this feature will allow for direct communication between SSIs |
421 | based on a network adapter and DMA messaging. | 421 | based on a network adapter and DMA messaging. |
422 | 422 | ||
423 | config HP_ILO | ||
424 | tristate "Channel interface driver for HP iLO/iLO2 processor" | ||
425 | default n | ||
426 | help | ||
427 | The channel interface driver allows applications to communicate | ||
428 | with iLO/iLO2 management processors present on HP ProLiant | ||
429 | servers. Upon loading, the driver creates /dev/hpilo/dXccbN files, | ||
430 | which can be used to gather data from the management processor, | ||
431 | via read and write system calls. | ||
432 | |||
433 | To compile this driver as a module, choose M here: the | ||
434 | module will be called hpilo. | ||
435 | |||
423 | endif # MISC_DEVICES | 436 | endif # MISC_DEVICES |