The versatile express has no SCSI card, but instead boot on an SD card. Change block_default_type accordingly.
Signed-off-by: Aurelien Jarno <aurel...@aurel32.net> --- hw/vexpress.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/vexpress.c b/hw/vexpress.c index 741b044..969aae6 100644 --- a/hw/vexpress.c +++ b/hw/vexpress.c @@ -477,7 +477,7 @@ static QEMUMachine vexpress_a9_machine = { .name = "vexpress-a9", .desc = "ARM Versatile Express for Cortex-A9", .init = vexpress_a9_init, - .block_default_type = IF_SCSI, + .block_default_type = IF_SD, .max_cpus = 4, DEFAULT_MACHINE_OPTIONS, }; @@ -486,7 +486,7 @@ static QEMUMachine vexpress_a15_machine = { .name = "vexpress-a15", .desc = "ARM Versatile Express for Cortex-A15", .init = vexpress_a15_init, - .block_default_type = IF_SCSI, + .block_default_type = IF_SD, .max_cpus = 4, DEFAULT_MACHINE_OPTIONS, }; -- 1.7.10.4