diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-02 04:51:10 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-02 04:51:10 +0000 |
commit | e4bcb14c79fb63a35aef3eb39e02c16c19b8b28d (patch) | |
tree | 06bee4b9dbf4c7b50e20c9996924d7d132cdfec2 /hw/gumstix.c | |
parent | 7233b355571ad2a8e7aec7eb19db5f530e81f052 (diff) |
Add -drive parameter, by Laurent Vivier.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3759 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/gumstix.c')
-rw-r--r-- | hw/gumstix.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/hw/gumstix.c b/hw/gumstix.c index 15562b7b01..21325177c5 100644 --- a/hw/gumstix.c +++ b/hw/gumstix.c @@ -47,6 +47,7 @@ static void connex_init(int ram_size, int vga_ram_size, const char *initrd_filename, const char *cpu_model) { struct pxa2xx_state_s *cpu; + int index; uint32_t connex_rom = 0x01000000; uint32_t connex_ram = 0x04000000; @@ -59,14 +60,15 @@ static void connex_init(int ram_size, int vga_ram_size, cpu = pxa255_init(connex_ram, ds); - if (pflash_table[0] == NULL) { + index = drive_get_index(IF_PFLASH, 0, 0); + if (index == -1) { fprintf(stderr, "A flash image must be given with the " "'pflash' parameter\n"); exit(1); } if (!pflash_register(0x00000000, qemu_ram_alloc(connex_rom), - pflash_table[0], sector_len, connex_rom / sector_len, + drives_table[index].bdrv, sector_len, connex_rom / sector_len, 2, 0, 0, 0, 0)) { fprintf(stderr, "qemu: Error registering flash memory.\n"); exit(1); @@ -85,6 +87,7 @@ static void verdex_init(int ram_size, int vga_ram_size, const char *initrd_filename, const char *cpu_model) { struct pxa2xx_state_s *cpu; + int index; uint32_t verdex_rom = 0x02000000; uint32_t verdex_ram = 0x10000000; @@ -97,14 +100,15 @@ static void verdex_init(int ram_size, int vga_ram_size, cpu = pxa270_init(verdex_ram, ds, cpu_model ?: "pxa270-c0"); - if (pflash_table[0] == NULL) { + index = drive_get_index(IF_PFLASH, 0, 0); + if (index == -1) { fprintf(stderr, "A flash image must be given with the " "'pflash' parameter\n"); exit(1); } if (!pflash_register(0x00000000, qemu_ram_alloc(verdex_rom), - pflash_table[0], sector_len, verdex_rom / sector_len, + drives_table[index].bdrv, sector_len, verdex_rom / sector_len, 2, 0, 0, 0, 0)) { fprintf(stderr, "qemu: Error registering flash memory.\n"); exit(1); |