|
|
2008-08-07
, 09:18
|
|
|
Posts: 2,121 |
Thanked: 1,540 times |
Joined on Mar 2008
@ Oxford, UK
|
#11
|
|
|
2008-08-07
, 13:54
|
|
|
Posts: 2,121 |
Thanked: 1,540 times |
Joined on Mar 2008
@ Oxford, UK
|
#13
|
|
|
2008-08-07
, 13:58
|
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#14
|
|
|
2008-08-07
, 14:00
|
|
|
Posts: 2,121 |
Thanked: 1,540 times |
Joined on Mar 2008
@ Oxford, UK
|
#15
|
|
|
2008-08-08
, 17:17
|
|
|
Posts: 2,121 |
Thanked: 1,540 times |
Joined on Mar 2008
@ Oxford, UK
|
#17
|
|
|
2008-08-08
, 20:50
|
|
|
Posts: 137 |
Thanked: 170 times |
Joined on Jul 2008
|
#18
|
|
|
2008-08-09
, 08:11
|
|
|
Posts: 137 |
Thanked: 170 times |
Joined on Jul 2008
|
#19
|
Does networking work yet, as it would be great to be able to install apps from the emulated tablet user-interface? Is there emulation for the N800 hardware buttons, like zoom, and power? And is there any way to save state? My host system is rather slow, and it takes quite a while for the emulated tablet to boot up, so it would be nice if I could simply save state and resume later.
|
|
2008-08-09
, 20:29
|
|
|
Posts: 2,121 |
Thanked: 1,540 times |
Joined on Mar 2008
@ Oxford, UK
|
#20
|
N810 has wrong partition layout in qemu source. Edit hw/nseries.c and make n810 partition table same as n800 one.
static struct omap_partition_info_s {
uint32_t offset;
uint32_t size;
int mask;
const char *name;
} n800_part_info[] = {
{ 0x00000000, 0x00020000, 0x3, "bootloader" },
{ 0x00020000, 0x00060000, 0x0, "config" },
{ 0x00080000, 0x00200000, 0x0, "kernel" },
{ 0x00280000, 0x00200000, 0x3, "initfs" },
{ 0x00480000, 0x0fb80000, 0x3, "rootfs" },
{ 0, 0, 0, 0 }
}, n810_part_info[] = {
{ 0x00000000, 0x00020000, 0x3, "bootloader" },
{ 0x00020000, 0x00060000, 0x0, "config" },
{ 0x00080000, 0x00200000, 0x0, "kernel" },
{ 0x00280000, 0x00200000, 0x3, "initfs" },
{ 0x00480000, 0x0fb80000, 0x3, "rootfs" },
{ 0, 0, 0, 0 }
};