Message ID | 20181010185445.10290-1-xypron.glpk@gmx.de (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
Series | [1/1] hw/arm/virt: provide a model property in the fdt | expand |
diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 281ddcdf6e..abe366895a 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -200,6 +200,7 @@ static void create_fdt(VirtMachineState *vms) vms->fdt = fdt; /* Header */ + qemu_fdt_setprop_string(fdt, "/", "model", "QEMU virt"); qemu_fdt_setprop_string(fdt, "/", "compatible", "linux,dummy-virt"); qemu_fdt_setprop_cell(fdt, "/", "#address-cells", 0x2); qemu_fdt_setprop_cell(fdt, "/", "#size-cells", 0x2);
Device trees in the Linux kernel generally provide a model property. Some software like the Debian flash-kernel package rely on this property to identify boards. The patch sets the model property for the virt boards to 'QEMU virt'. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> --- hw/arm/virt.c | 1 + 1 file changed, 1 insertion(+)