Displaying 7 results from an estimated 7 matches for "hptr".
Did you mean:
fptr
2009 Dec 07
3
[PATCH] memdisk: "safe hook" and mBFT
...; /* "Safe hook" physical address */
+} __attribute__((packed));
+
struct patch_area {
uint32_t diskbuf;
uint32_t disksize;
@@ -816,6 +834,7 @@ void setup(const struct real_mode_args *rm_args_ptr)
unsigned int bin_size;
char *memdisk_hook;
struct memdisk_header *hptr;
+ struct safe_hook *safe_hook;
struct patch_area *pptr;
uint16_t driverseg;
uint32_t driverptr, driveraddr;
@@ -899,6 +918,7 @@ void setup(const struct real_mode_args *rm_args_ptr)
/* Figure out where it needs to go */
hptr = (struct memdisk_header *)memdisk_hook;
+...
2009 Sep 12
1
[PATCH] Let MEMDISK honor the quiet append option
...rameter table */
if (geometry->driveno & 0x80) {
@@ -956,10 +971,12 @@
total_size += cmdline_len; /* Command line */
stack_len = stack_needed();
total_size += stack_len; /* Stack */
- printf("Code %u, meminfo %u, cmdline %u, stack %u\n",
- hptr->total_size, e820_len, cmdline_len, stack_len);
- printf("Total size needed = %u bytes, allocating %uK\n",
- total_size, (total_size + 0x3ff) >> 10);
+ if (!quiet) {
+ printf("Code %u, meminfo %u, cmdline %u, stack %u\n",
+ hptr->total_size,...
2014 Dec 05
1
vesamenu back to text before booting
...options already available in chain.c32 regarding
> the address. As previously suggested, read the 2 wiki pages about
> chain.c32.
Ah, interesting. Let?s see?
http://www.syslinux.org/wiki/index.php/Doc/chain#hand is unclear
about what a handover area is (contains) and where it?s passed
(if hptr is given, DS:SI appears to contain it).
Other than that? it has keepexe for PXE, and a boot loaded from
SYSLINUX usually doesn?t need image the patching that bootxx
does. I assume DL and a stack are set up. Though, it doesn?t gain
much from using pxechn.c32 and mboot.c32 especially as the latter
c...
2014 Dec 05
0
vesamenu back to text before booting
> On Fri, 5 Dec 2014, Ady wrote:
>
> > > > If so: http://www.syslinux.org/wiki/index.php/Mboot.c32
> > >
> > > I?m not permitted to edit either that page or its talk page.
> > > Do I submit the content addition here, then?
> >
> > Please do.
>
> Okay, MediaWiki syntax docs follow. Note I have tested those
> only a bit, and not
2009 Dec 29
0
aMSN segfaults at login after configuring my home network
...tionCmd (clientData=0x9220550,
interp=0x80563a0, objc=3, objv=0x81b7d48)
at /build/buildd/tcl8.5-8.5.7/unix/../generic/tclNamesp.c:6234
isRootEnsemble = 1
copyObj = <value optimized out>
result = <value optimized out>
prefixObj = 0x8fbe238
hPtr = <value optimized out>
prefixObjv = 0x91fc318
prefixObjc = 5
---Type <return> to continue, or q <return> to quit---
reparseCount = 1
#18 0xb7da6b59 in TclEvalObjvInternal (interp=0x80563a0, objc=3,
objv=0x81b7d48, command=0x0, length=0, flags=524288)...
2014 Dec 05
2
vesamenu back to text before booting
On Fri, 5 Dec 2014, Ady wrote:
> > > If so: http://www.syslinux.org/wiki/index.php/Mboot.c32
> >
> > I?m not permitted to edit either that page or its talk page.
> > Do I submit the content addition here, then?
>
> Please do.
Okay, MediaWiki syntax docs follow. Note I have tested those
only a bit, and not within the vesamenu context, but if mboot.c32
resets to
2012 Nov 06
50
chain.c32 (and partiter) updates v2
This is a bit updated set of chain.c32 changes that simplifies a few things
(and in partiter part), fixes few minor issues and adds a few new features.
Details are in the following commits, below is the summary and pull details at
the end.
Shao - any chance to peek over them ? Most of those are relatively simple
changes and well tested, though of course something might have slipped my
attention.