~ubuntu-branches/ubuntu/vivid/ipmitool/vivid-updates

« back to all changes in this revision

Viewing changes to src/ipmitool.c

  • Committer: Package Import Robot
  • Author(s): Luk Claes
  • Date: 2013-05-07 18:12:12 UTC
  • mfrom: (5.1.11 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20130507181212-fitwelheknk3tqnq
Tags: 1.8.12-1
Merge new upstream from Ubuntu (Closes: #692292).

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
#include <ipmitool/ipmi_kontronoem.h>
62
62
#include <ipmitool/ipmi_firewall.h>
63
63
#include <ipmitool/ipmi_hpmfwupg.h>
 
64
#include <ipmitool/ipmi_delloem.h>
64
65
#include <ipmitool/ipmi_ekanalyzer.h>
 
66
#include <ipmitool/ipmi_ime.h>
 
67
#include <ipmitool/ipmi_dcmi.h>
65
68
 
66
69
#ifdef HAVE_CONFIG_H
67
70
# include <config.h>
100
103
        { ipmi_user_main,    "user",    "Configure Management Controller users" },
101
104
        { ipmi_channel_main, "channel", "Configure Management Controller channels" },
102
105
        { ipmi_session_main, "session", "Print session information" },
 
106
    { ipmi_dcmi_main,    "dcmi",    "Data Center Management Interface"},
103
107
        { ipmi_sunoem_main,  "sunoem",  "OEM Commands for Sun servers" },
104
108
        { ipmi_kontronoem_main, "kontronoem", "OEM Commands for Kontron devices"},
105
109
        { ipmi_picmg_main,   "picmg",   "Run a PICMG/ATCA extended cmd"},
106
110
        { ipmi_fwum_main,    "fwum",    "Update IPMC using Kontron OEM Firmware Update Manager" },
107
111
        { ipmi_firewall_main,"firewall","Configure Firmware Firewall" },
 
112
        { ipmi_delloem_main, "delloem", "OEM Commands for Dell systems" },
108
113
#ifdef HAVE_READLINE
109
114
        { ipmi_shell_main,   "shell",   "Launch interactive IPMI shell" },
110
115
#endif
113
118
        { ipmi_echo_main,    "echo",    NULL }, /* for echoing lines to stdout in scripts */
114
119
        { ipmi_hpmfwupg_main,"hpm", "Update HPM components using PICMG HPM.1 file"},
115
120
        { ipmi_ekanalyzer_main,"ekanalyzer", "run FRU-Ekeying analyzer using FRU files"},
 
121
        { ipmi_ime_main,          "ime", "Update Intel Manageability Engine Firmware"},
116
122
        { NULL },
117
123
};
118
124