bmcweb

(★ 231)

A do everything Redfish, KVM, GUI, and DBus webserver for OpenBMC

File Explorer

  • .clang-format
  • .clang-tidy
  • .codespell-ignore
  • .dockerignore
  • .eslintignore
  • .gitignore
  • .markdownlint.yaml
  • .openbmc-enforce-gitlint
  • .prettierignore
  • .shellcheck
  • DEVELOPING.md
  • LICENSE
  • meson.build
  • meson.options
  • OWNERS
  • README.md
  • run-ci

# Use via CDN

jsDelivr

jsDelivr 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 ▼

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 ▼

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:

// repository documentation