diff options
author | Sam Bobroff <sam.bobroff@au1.ibm.com> | 2015-09-01 11:23:19 +1000 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2015-09-23 10:51:09 +1000 |
commit | 2c1aaa819a0d68a51086f5d7e8f9a0114ae0305c (patch) | |
tree | c7c6907c1f7c83291f2a20d12a96be6f4c6e8477 /hw/ppc | |
parent | fb0fc8f62c16b5b0910545f56c64aaafc91533ce (diff) | |
download | qemu-2c1aaa819a0d68a51086f5d7e8f9a0114ae0305c.zip qemu-2c1aaa819a0d68a51086f5d7e8f9a0114ae0305c.tar.gz qemu-2c1aaa819a0d68a51086f5d7e8f9a0114ae0305c.tar.bz2 |
spapr: Add /ibm,partition-name
QEMU has a notion of the guest name, so if it's present we might as
well put that into the device tree as /ibm,partition-name.
This is specificed by PAPR.
Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/ppc')
-rw-r--r-- | hw/ppc/spapr.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index df76cb7..09962c4 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -375,6 +375,11 @@ static void *spapr_create_fdt_skel(hwaddr initrd_base, _FDT((fdt_property_string(fdt, "vm,uuid", buf))); g_free(buf); + if (qemu_get_vm_name()) { + _FDT((fdt_property_string(fdt, "ibm,partition-name", + qemu_get_vm_name()))); + } + _FDT((fdt_property_cell(fdt, "#address-cells", 0x2))); _FDT((fdt_property_cell(fdt, "#size-cells", 0x2))); |