[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/3] spapr: Add "qemu, boot-menu" property to /chose
From: |
Nikunj A Dadhania |
Subject: |
[Qemu-devel] [PATCH 2/3] spapr: Add "qemu, boot-menu" property to /chosen |
Date: |
Tue, 10 Jun 2014 13:26:44 +0530 |
From: Avik Sil <address@hidden>
This is required to enable boot menu display during booting
Signed-off-by: Avik Sil <address@hidden>
Signed-off-by: Nikunj A Dadhania <address@hidden>
---
hw/ppc/spapr.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index ff37319..c6760a1 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -376,6 +376,9 @@ static void *spapr_create_fdt_skel(hwaddr initrd_base,
if (boot_device) {
_FDT((fdt_property_string(fdt, "qemu,boot-device", boot_device)));
}
+ if (boot_menu) {
+ _FDT((fdt_property_cell(fdt, "qemu,boot-menu", boot_menu)));
+ }
_FDT((fdt_property_cell(fdt, "qemu,graphic-width", graphic_width)));
_FDT((fdt_property_cell(fdt, "qemu,graphic-height", graphic_height)));
_FDT((fdt_property_cell(fdt, "qemu,graphic-depth", graphic_depth)));
--
1.8.3.1
- [Qemu-devel] [PATCH 2/3] spapr: Add "qemu, boot-menu" property to /chosen,
Nikunj A Dadhania <=