diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2014-06-23 18:42:39 +0400 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2014-06-29 02:32:42 +0400 |
commit | 37b259d034c4e6eda5e7a677238d8a5efb666e9f (patch) | |
tree | b5770cd2b9d6a2a321733b51055557d4eff7a44f /hw/xtensa | |
parent | 8488ab021ba40383f4ab3a595f006fe920737397 (diff) |
hw/xtensa/xtfpga: retrieve parameters from machine_opts
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'hw/xtensa')
-rw-r--r-- | hw/xtensa/xtfpga.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/xtensa/xtfpga.c b/hw/xtensa/xtfpga.c index 75bc479e36..0aa3eeb046 100644 --- a/hw/xtensa/xtfpga.c +++ b/hw/xtensa/xtfpga.c @@ -174,9 +174,10 @@ static void lx_init(const LxBoardDesc *board, MachineState *machine) MemoryRegion *ram, *rom, *system_io; DriveInfo *dinfo; pflash_t *flash = NULL; + QemuOpts *machine_opts = qemu_get_machine_opts(); const char *cpu_model = machine->cpu_model; - const char *kernel_filename = machine->kernel_filename; - const char *kernel_cmdline = machine->kernel_cmdline; + const char *kernel_filename = qemu_opt_get(machine_opts, "kernel"); + const char *kernel_cmdline = qemu_opt_get(machine_opts, "append"); int n; if (!cpu_model) { |