phosphor-host-ipmid
dbus-based ipmid for host-endpoint IPMI commands
File Explorer
- channel.cpp
- channel.hpp
- meson.build
- watchdog.cpp
- watchdog.hpp
- watchdog_service.cpp
- watchdog_service.hpp
- meson.build
- sdrutils.cpp
- sensorcommands.cpp
- sensorutils.cpp
- storagecommands.cpp
- configuration.md
- contributing.md
- ipmi-network-format.md
- ipmitool-commands-cheatsheet.md
- oem-extension-numbering.md
- testing.md
- sdrutils.hpp
- sensorcommands.hpp
- sensorutils.hpp
- storagecommands.hpp
- pack.hpp
- types.hpp
- unpack.hpp
- api-types.hpp
- api.h
- api.hpp
- entity_map_json.hpp
- filter.hpp
- handler.hpp
- iana.hpp
- message.hpp
- oemopenbmc.hpp
- oemrouter.hpp
- sessiondef.hpp
- sessionhelper.hpp
- types.hpp
- utility.hpp
- utils.hpp
- cmd-utils.hpp
- cmd.hpp
- meson.build
- entity_map_json.cpp
- meson.build
- sdbus-asio.cpp
- signals.cpp
- systemintf-sdbus.cpp
- utils.cpp
- apphandler.cpp
- meson.build
- apphandler.cpp
- meson.build
- biosconfigcommands.cpp
- bootstrap-credentials-oem-cmds.cpp
- meson.build
- oemcommands.hpp
- meson.build
- entity-example.md
- fru-read-example.yaml
- fru_gen.py
- inventory-sensor-example.yaml
- inventory-sensor.py
- inventorysensor.cpp.mako
- meson.build
- readfru.cpp.mako
- sensor-example.yaml
- sensor_gen.py
- writesensor.cpp.mako
- mainapp.cpp
- meson.build
- softoff.cpp
- softoff.hpp
- boost.wrap
- nlohmann_json.wrap
- phosphor-dbus-interfaces.wrap
- phosphor-logging.wrap
- sdbusplus.wrap
- sdeventplus.wrap
- sensorcommands_unittest.cpp
- pack.cpp
- payload.cpp
- unpack.cpp
- closesession_unittest.cpp
- entitymap_json_unittest.cpp
- meson.build
- oemrouter_unittest.cpp
- meson.build
- serial_unittest.cpp
- meson.build
- [email protected]
- serialbridged.cpp
- serialcmd.cpp
- serialcmd.hpp
- meson.build
- channel_layer.cpp
- channel_layer.hpp
- channel_mgmt.cpp
- channel_mgmt.hpp
- channelcommands.cpp
- cipher_mgmt.cpp
- cipher_mgmt.hpp
- file.hpp
- meson.build
- passwd_mgr.cpp
- passwd_mgr.hpp
- shadowlock.hpp
- user_layer.cpp
- user_layer.hpp
- user_mgmt.cpp
- user_mgmt.hpp
- usercommands.cpp
- usercommands.hpp
- meson.build
- SoftPowerOff.interface.yaml
- .build.sh
- .clang-format
- .clang-tidy
- .gitignore
- .shellcheck
- .travis.yml
- apphandler.cpp
- apphandler.hpp
- chassishandler.cpp
- chassishandler.hpp
- dcmihandler.cpp
- dcmihandler.hpp
- error-HostEvent.hpp
- fruread.hpp
- generate_whitelist.sh
- generate_whitelist_create.sh
- globalhandler.cpp
- groupext.cpp
- host-cmd-manager.cpp
- host-cmd-manager.hpp
- host-interface.cpp
- host-interface.hpp
- host-ipmid-whitelist.conf
- ipmi_fru_info_area.cpp
- ipmi_fru_info_area.hpp
- ipmiallowlist.hpp
- ipmid-new.cpp
- ipmisensor.cpp
- LICENSE
- meson.build
- meson.options
- OWNERS
- read_fru_data.cpp
- read_fru_data.hpp
- README.md
- sbmrhandler.cpp
- selutility.cpp
- selutility.hpp
- sensordatahandler.cpp
- sensordatahandler.hpp
- sensorhandler.cpp
- sensorhandler.hpp
- settings.cpp
- settings.hpp
- storageaddsel.cpp
- storageaddsel.hpp
- storagehandler.cpp
- sys_info_param.cpp
- sys_info_param.hpp
- systemintfcmds.cpp
- systemintfcmds.hpp
- transportconstants.hpp
- transporthandler.cpp
- transporthandler.hpp
- whitelist-filter.cpp
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
meson
View Details ▼
meson
SCons-like build system that uses Python as a front-end language and Ninja as a building backend.
meson init
Generate a project with default values:
meson init {{[-l|--language]}} c {{[-n|--name]}} {{myproject}} --version {{0.1}}
Generate a C project with a given name and version:
meson {{[build|setup build]}}
Configure a directory named `build` with default values for compilation:
ninja
View Details ▼
ninja
A Build system designed to be fast.
ninja
Build in the current directory:
ninja -j {{4}}
Build in the current directory, executing 4 [j]obs at a time in parallel:
ninja -C {{path/to/directory}}
Build a program in a given directory:
