mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
Fix/remove bogus ram size checks.
Signed-off-by: Paul Brook <paul@codesourcery.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7087 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
520860ef61
commit
b0457b6920
2 changed files with 2 additions and 9 deletions
|
@ -1272,15 +1272,8 @@ static void n8x0_init(ram_addr_t ram_size, const char *boot_device,
|
|||
{
|
||||
struct n800_s *s = (struct n800_s *) qemu_mallocz(sizeof(*s));
|
||||
int sdram_size = binfo->ram_size;
|
||||
int onenandram_size = 0x00010000;
|
||||
DisplayState *ds;
|
||||
|
||||
if (ram_size < sdram_size + onenandram_size + OMAP242X_SRAM_SIZE) {
|
||||
fprintf(stderr, "This architecture uses %i bytes of memory\n",
|
||||
sdram_size + onenandram_size + OMAP242X_SRAM_SIZE);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
s->cpu = omap2420_mpu_init(sdram_size, cpu_model);
|
||||
|
||||
/* Setup peripherals
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue