diff options
author | Farhan Ali <alifm@linux.vnet.ibm.com> | 2016-10-21 12:17:08 -0400 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2017-02-28 12:04:48 +0100 |
commit | 5f31ade055dfb9da9d04fe826374ed5f91dd5d24 (patch) | |
tree | 992ac4521ac6a65c026fc8f591d70bfdc31ee4f2 /hw/s390x/ipl.h | |
parent | 34f1b23f8a61841bac06010e898221c6192a9035 (diff) | |
download | qemu-5f31ade055dfb9da9d04fe826374ed5f91dd5d24.zip qemu-5f31ade055dfb9da9d04fe826374ed5f91dd5d24.tar.gz qemu-5f31ade055dfb9da9d04fe826374ed5f91dd5d24.tar.bz2 |
s390x/ipl: Extend S390IPLState to support network boot
Add new field to S390IPLState to store the name of the network boot
loader.
Signed-off-by: Farhan Ali <alifm@linux.vnet.ibm.com>
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/s390x/ipl.h')
-rw-r--r-- | hw/s390x/ipl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/s390x/ipl.h b/hw/s390x/ipl.h index c891095..4ad9a7c 100644 --- a/hw/s390x/ipl.h +++ b/hw/s390x/ipl.h @@ -106,6 +106,7 @@ struct S390IPLState { char *initrd; char *cmdline; char *firmware; + char *netboot_fw; uint8_t cssid; uint8_t ssid; uint16_t devno; |