mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 04:13:39 +08:00
hw/xtensa/xtfpga: retrieve parameters from machine_opts
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
This commit is contained in:
parent
8488ab021b
commit
37b259d034
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user