Add Multi-factor authentication D-bus config
This commit defines D-bus interfaces for multi-factor authentication
configuration to enable/disable various MFA authentication methods
These D-bus interfaces defined as per standard redfish interfaces
https://redfish.dmtf.org/schemas/v1/AccountService.v1_15_1.json
Change-Id: I52dcf3df95fb60b9f5ea384553b472b71f2be923
Signed-off-by: Ravi Teja <raviteja28031990@gmail.com>
diff --git a/gen/xyz/openbmc_project/User/meson.build b/gen/xyz/openbmc_project/User/meson.build
index dca4fc3..16c6364 100644
--- a/gen/xyz/openbmc_project/User/meson.build
+++ b/gen/xyz/openbmc_project/User/meson.build
@@ -60,6 +60,21 @@
],
)
+subdir('MultiFactorAuthConfiguration')
+generated_others += custom_target(
+ 'xyz/openbmc_project/User/MultiFactorAuthConfiguration__markdown'.underscorify(),
+ input: [ '../../../../yaml/xyz/openbmc_project/User/MultiFactorAuthConfiguration.interface.yaml', ],
+ output: [ 'MultiFactorAuthConfiguration.md' ],
+ depend_files: sdbusplusplus_depfiles,
+ command: [
+ sdbuspp_gen_meson_prog, '--command', 'markdown',
+ '--output', meson.current_build_dir(),
+ '--tool', sdbusplusplus_prog,
+ '--directory', meson.current_source_dir() / '../../../../yaml',
+ 'xyz/openbmc_project/User/MultiFactorAuthConfiguration',
+ ],
+)
+
subdir('PrivilegeMapper')
generated_others += custom_target(
'xyz/openbmc_project/User/PrivilegeMapper__markdown'.underscorify(),