diff options
author | Farhan Ali | 2016-10-21 18:17:08 +0200 |
---|---|---|
committer | Cornelia Huck | 2017-02-28 12:04:48 +0100 |
commit | 5f31ade055dfb9da9d04fe826374ed5f91dd5d24 (patch) | |
tree | 992ac4521ac6a65c026fc8f591d70bfdc31ee4f2 /hw/s390x/ipl.c | |
parent | elf-loader: Allow late loading of elf (diff) | |
download | qemu-5f31ade055dfb9da9d04fe826374ed5f91dd5d24.tar.gz qemu-5f31ade055dfb9da9d04fe826374ed5f91dd5d24.tar.xz qemu-5f31ade055dfb9da9d04fe826374ed5f91dd5d24.zip |
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.c')
-rw-r--r-- | hw/s390x/ipl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c index 2e2664f22e..fd656718a7 100644 --- a/hw/s390x/ipl.c +++ b/hw/s390x/ipl.c @@ -209,6 +209,7 @@ static Property s390_ipl_properties[] = { DEFINE_PROP_STRING("initrd", S390IPLState, initrd), DEFINE_PROP_STRING("cmdline", S390IPLState, cmdline), DEFINE_PROP_STRING("firmware", S390IPLState, firmware), + DEFINE_PROP_STRING("netboot_fw", S390IPLState, netboot_fw), DEFINE_PROP_BOOL("enforce_bios", S390IPLState, enforce_bios, false), DEFINE_PROP_BOOL("iplbext_migration", S390IPLState, iplbext_migration, true), |