1# Remote BIOS Configuration via BMC
2
3## Overview
4
5Provides ability for the user to view and modify the BIOS setup configuration
6parameters remotely via BMC at any Host state. Modifications to the parameters
7take place upon the next system reboot or immediate based on the host firmware.
8
9Please refer to the [design][design] for more details.
10
11Remote BIOS Configuration (RBC) service exposes D-Bus methods for BIOS settings
12management operations.
13
14## RBC Manager Interface
15
16### Interface xyz.openbmc_project.BIOSConfigManager
17
18- Object Path: `/xyz/openbmc_project/bios_config/manager`
19
20Methods:
21
22- `SetAttribute` -To set the particular BIOS attribute with new value.
23- `GetAttribute` -To get the bios attribute current and pending values.
24
25Properties:
26
27- `ResetBIOSSettings` - To reset the BIOS settings based on the Reset Flag.
28- `BaseBiosTable` - To store all bios attributes details.
29- `PendingAttributes` - To store pending bios Attributes list.
30
31### Interface xyz.openbmc_project.BIOSConfig.Password
32
33- Object Path: `/xyz/openbmc_project/bios_config/password`
34
35Methods:
36
37- `ChangePassword` - To change BIOS setup password.
38
39Properties:
40
41- `PasswordInitialized` - To indicate BIOS password related details are received
42  or not.
43
44[design]:
45  https://github.com/openbmc/docs/blob/master/designs/remote-bios-configuration.md
46