1 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 #include <console/console.h>
8 * Enable recovery mode with fw_cfg option to qemu:
9 * -fw_cfg name=opt/cros/recovery,string=1
11 int get_recovery_mode_switch(void)
15 if (!fw_cfg_check_file(&f
, "opt/cros/recovery")) {
18 printk(BIOS_ERR
, "opt/cros/recovery invalid size %d\n", f
.size
);
21 fw_cfg_get(f
.select
, &rec_mode
, f
.size
);
22 if (rec_mode
== '1') {
23 printk(BIOS_INFO
, "Recovery is enabled.\n");