diff options
author | Keith Packard <keithp@keithp.com> | 2025-02-14 18:16:50 -0800 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-02-16 14:45:38 +0100 |
commit | 5bf24ec9c4d4771a9469cadd19cf534e9a32a9db (patch) | |
tree | 6b3098569db213e8209dc9087e74b787020c4c66 | |
parent | 62fb8ec35b7d7de7bfd4bd008026d49a5f52f946 (diff) | |
download | qemu-5bf24ec9c4d4771a9469cadd19cf534e9a32a9db.zip qemu-5bf24ec9c4d4771a9469cadd19cf534e9a32a9db.tar.gz qemu-5bf24ec9c4d4771a9469cadd19cf534e9a32a9db.tar.bz2 |
hw/rx: Allow execution without either bios or kernel
Users can use -device loader to get an ELF file loaded to
memory, so we don't need to require one of these options.
Signed-off-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250215021654.1786679-2-keithp@keithp.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r-- | hw/rx/rx-gdbsim.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/rx/rx-gdbsim.c b/hw/rx/rx-gdbsim.c index 88c8f12..4afd77e 100644 --- a/hw/rx/rx-gdbsim.c +++ b/hw/rx/rx-gdbsim.c @@ -110,9 +110,6 @@ static void rx_gdbsim_init(MachineState *machine) if (!kernel_filename) { if (machine->firmware) { rom_add_file_fixed(machine->firmware, RX62N_CFLASH_BASE, 0); - } else if (!qtest_enabled()) { - error_report("No bios or kernel specified"); - exit(1); } } |