blob: fb94f389bd433ed97be972d031770f22662155f5 [file] [log] [blame]
Norman Jamese2765102015-08-19 22:00:55 -05001<node>
2 <interface name="org.openbmc.Parameters">
3 <!--
4 key/value pairs stored in NVRAM
5 Examples: MAC, power policy, boot order
6 -->
7 <method name="setParameterInt">
8 <arg name="key" type="s" direction="in"/>
9 <arg name="value" type="i" direction="in"/>
10 </method>
11 <method name="getParameterInt">
12 <arg name="key" type="s" direction="in"/>
13 <arg name="value" type="i" direction="out"/>
14 </method>
15 <method name="setParameterString">
16 <arg name="key" type="s" direction="in"/>
17 <arg name="value" type="s" direction="in"/>
18 </method>
19 <method name="getParameterString">
20 <arg name="key" type="s" direction="in"/>
21 <arg name="value" type="s" direction="out"/>
22 </method>
23 <method name="flush"/>
24 </interface>
25</node>