#
4d28bcd3 |
| 24-Apr-2023 |
Jagpal Singh Gill <paligill@gmail.com> |
meson: Switch autoconf build to meson
Summary: - Add meson build flow. - Remove the options not being configured from yocto as configure args and add them as constants/define in settings_manager.h
meson: Switch autoconf build to meson
Summary: - Add meson build flow. - Remove the options not being configured from yocto as configure args and add them as constants/define in settings_manager.hpp
Tested: - autotools build passes. - meson build passes with "ninja -C build".
Change-Id: Iaa7704886cdcd5481a04bae77e02df2c6a53aee9 Signed-off-by: Jagpal Singh Gill <paligill@gmail.com>
show more ...
|
#
bbeb9bdd |
| 06-Dec-2022 |
Patrick Williams <patrick@stwcx.xyz> |
reformat and fix markdownlint issues
Reformat all the files with the latest settings from openbmc-build-scripts and fix any markdownlint issues.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
reformat and fix markdownlint issues
Reformat all the files with the latest settings from openbmc-build-scripts and fix any markdownlint issues.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I955a341441b24487b2e5552692b749fa21b37757
show more ...
|
#
a16abc5a |
| 27-Jan-2018 |
Gunnar Mills <gmills@us.ibm.com> |
PEP 8 fixes
Added E402 to the ignore errors list. E402 is "module level import not at top of file" and ignoring since settings_manager.py needs to modify the sys.path before importing certain modul
PEP 8 fixes
Added E402 to the ignore errors list. E402 is "module level import not at top of file" and ignoring since settings_manager.py needs to modify the sys.path before importing certain modules. Since the default ignore list is not used anymore, rules E121,E123,E126,E226,E24,E704,W503 are now enforced. Looking at those rules, I believe we should enforce them. Note E121,E123,E126,E226,E24,E704,W503 are all in the default ignore list, so if no ignore list is provided in the setup.cfg these errors are ignored.
from pycodestyle --help
--ignore=errors skip errors and warnings (e.g. E4,W) (default: E121,E123,E126,E226,E24,E704,W503)
Change-Id: I0f64535eb4b4ba471466c8c9c3dbda1f8b33f702 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
show more ...
|
#
5de0957c |
| 16-May-2017 |
Deepak Kodihalli <dkodihal@in.ibm.com> |
Add settings application
Implement settings d-bus interfaces.
Define a settings policy file (this commit checks in an example YAML based policy), based on which code for a settings manager will be
Add settings application
Implement settings d-bus interfaces.
Define a settings policy file (this commit checks in an example YAML based policy), based on which code for a settings manager will be generated via a python script. This settings manager composes and places desired settings objects on the bus.
The policy file can be supplied by a system specific bitbake recipe.
Resolves openbmc/openbmc#1487.
Change-Id: Ice0d3b319d9466824cef323a6915eb20ca5cae5c Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
show more ...
|