|
@@ -35,6 +35,7 @@
|
|
*/
|
|
*/
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qemu/osdep.h"
|
|
|
|
+#include "qemu/error-report.h"
|
|
#include "hw/hw.h"
|
|
#include "hw/hw.h"
|
|
#include "hw/arm/pxa.h"
|
|
#include "hw/arm/pxa.h"
|
|
#include "net/net.h"
|
|
#include "net/net.h"
|
|
@@ -62,8 +63,8 @@ static void connex_init(MachineState *machine)
|
|
|
|
|
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
|
if (!dinfo && !qtest_enabled()) {
|
|
if (!dinfo && !qtest_enabled()) {
|
|
- fprintf(stderr, "A flash image must be given with the "
|
|
|
|
- "'pflash' parameter\n");
|
|
|
|
|
|
+ error_report("A flash image must be given with the "
|
|
|
|
+ "'pflash' parameter");
|
|
exit(1);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -76,7 +77,7 @@ static void connex_init(MachineState *machine)
|
|
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
|
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
|
sector_len, connex_rom / sector_len,
|
|
sector_len, connex_rom / sector_len,
|
|
2, 0, 0, 0, 0, be)) {
|
|
2, 0, 0, 0, 0, be)) {
|
|
- fprintf(stderr, "qemu: Error registering flash memory.\n");
|
|
|
|
|
|
+ error_report("Error registering flash memory");
|
|
exit(1);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -99,8 +100,8 @@ static void verdex_init(MachineState *machine)
|
|
|
|
|
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
|
if (!dinfo && !qtest_enabled()) {
|
|
if (!dinfo && !qtest_enabled()) {
|
|
- fprintf(stderr, "A flash image must be given with the "
|
|
|
|
- "'pflash' parameter\n");
|
|
|
|
|
|
+ error_report("A flash image must be given with the "
|
|
|
|
+ "'pflash' parameter");
|
|
exit(1);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -113,7 +114,7 @@ static void verdex_init(MachineState *machine)
|
|
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
|
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
|
sector_len, verdex_rom / sector_len,
|
|
sector_len, verdex_rom / sector_len,
|
|
2, 0, 0, 0, 0, be)) {
|
|
2, 0, 0, 0, 0, be)) {
|
|
- fprintf(stderr, "qemu: Error registering flash memory.\n");
|
|
|
|
|
|
+ error_report("Error registering flash memory");
|
|
exit(1);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
|