mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
shix: Don't require firmware presence for qtest
Adopt error_report() while at it. Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
b6e770ee50
commit
d32f7d2506
2 changed files with 11 additions and 8 deletions
|
@ -1,6 +1,8 @@
|
|||
#include "hw/hw.h"
|
||||
#include "hw/sh4/sh.h"
|
||||
#include "hw/loader.h"
|
||||
#include "sysemu/qtest.h"
|
||||
#include "qemu/error-report.h"
|
||||
|
||||
#define CE1 0x0100
|
||||
#define CE2 0x0200
|
||||
|
@ -36,10 +38,10 @@ static void init_dev(tc58128_dev * dev, const char *filename)
|
|||
/* Load flash image skipping the first block */
|
||||
ret = load_image(filename, dev->flash_contents + 528 * 32);
|
||||
if (ret < 0) {
|
||||
fprintf(stderr, "ret=%d\n", ret);
|
||||
fprintf(stderr, "qemu: could not load flash image %s\n",
|
||||
filename);
|
||||
exit(1);
|
||||
if (!qtest_enabled()) {
|
||||
error_report("Could not load flash image %s", filename);
|
||||
exit(1);
|
||||
}
|
||||
} else {
|
||||
/* Build first block with number of blocks */
|
||||
blocks = (ret + 528 * 32 - 1) / (528 * 32);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue