Lines Matching +full:attribute +full:- +full:set
9 # pldmtool bios GetBIOSAttributeCurrentValueByHandle -a fw_boot_side
12 # 3. Set the firmware boot side to Temp or Perm accordingly
14 # pldmtool bios SetBIOSAttributeCurrentValue -a fw_boot_side -d Temp
19 # 7. Verify the boot side is still same which was set.
36 # This dictionary is for Temp -> Perm or vice versa in the test code.
42 [Documentation] Power off the host , set the firmware boot side via pldmtool,
43 ... power on the host and confirm the fw_boot_side attribute is
44 ... still set.
69 ${cur_boot_side}= PLDM Get BIOS Attribute fw_boot_side
70 Print Timen Current BIOS attribute fw_boot_side: ${cur_boot_side}
72 ${next_boot_side}= Set Variable ${FW_BOOT_SIDE_DICT["${cur_boot_side["CurrentValue"]}"]}
73 Print Timen Set BIOS attribute fw_boot_side: ${next_boot_side}
74 PLDM Set BIOS Attribute fw_boot_side ${next_boot_side}
76 ${cur_boot_side}= PLDM Get BIOS Attribute fw_boot_side
77 Print Timen Next boot will apply BIOS attribute fw_boot_side: ${cur_boot_side}
89 # Verify the system is booting up with the new fw_boot_side set.
90 ${cur_boot_side}= PLDM Get BIOS Attribute fw_boot_side
92 … Print Timen Current: ${cur_boot_side["CurrentValue"]} and set side: ${next_boot_side} are same.