Displaying 3 results from an estimated 3 matches for "insertrange".
Did you mean:
insert_range
2002 Aug 27
2
memdisk and grub
Hi,
I am trying to use MEMDISK from the GRUB boot loader, and gets stuck on the
memory detection. MEMDISK reports
dos_mem = 0
low_mem = 0
high_mem = 0
2011 Feb 05
1
[PATCH][git-pull] memdisk/setup.c: Limit available RAM hack
.../git.zytor.com/users/genec/syslinux.git
Branch memdisk-maxmem-for-hpa
This is a preliminary hack to introduce a new option that will allow
an end-user to limit the amount of available RAM as returned by any
call that MEMDISK touches. This works by adding additional memory
reservation(s) (through insertrange()) to reserve the memory between
the specified address and the top of RAM.
For now, the parameter is int15maxres (implement INT15h MAX by
reservation) and is specified in bytes. I welcome feedback on its
functionality, default unit (ie 1 byte versus 1024 bytes or even unit
of 1024 bytes but must...
2009 Sep 12
1
[PATCH] Let MEMDISK honor the quiet append option
...>> 32), (uint32_t) buf->len, buf->type);
+ if (!quiet)
+ printf("e820: %08x%08x %08x%08x %d\n",
+ (uint32_t) (buf->base >> 32), (uint32_t) buf->base,
+ (uint32_t) (buf->len >> 32), (uint32_t) buf->len, buf->type);
insertrange(buf->base, buf->len, buf->type);
range_count++;
@@ -78,7 +78,8 @@
memset(®s, 0, sizeof regs);
intcall(0x12, ®s, ®s);
insertrange(0, (uint64_t) ((uint32_t) regs.eax.w[0] << 10), 1);
- printf(" DOS: %d K\n", regs.eax.w[0]);
+ if...