Displaying 4 results from an estimated 4 matches for "segval".
Did you mean:
secval
2009 Aug 16
1
Chainc.32 missing some \n one error messages
...ot;Loader file too large");
+ error("Loader file too large\n");
return;
enomem:
- error("Out of memory");
+ error("Out of memory\n");
return;
}
@@ -614,7 +614,7 @@
} else if (!strncmp(argv[i], "seg=", 4)) {
uint32_t segval = strtoul(argv[i] + 4, NULL, 0);
if (segval < 0x50 || segval > 0x9f000) {
- error("Invalid segment");
+ error("Invalid segment\n");
goto bail;
}
opt.seg = segval;
2009 Sep 29
0
Chainc.32 missing some \n one error messages
...oader file too large\n");
> return;
>
> enomem:
> - error("Out of memory");
> + error("Out of memory\n");
> return;
> }
>
> @@ -614,7 +614,7 @@
> } else if (!strncmp(argv[i], "seg=", 4)) {
> uint32_t segval = strtoul(argv[i] + 4, NULL, 0);
> if (segval < 0x50 || segval > 0x9f000) {
> - error("Invalid segment");
> + error("Invalid segment\n");
> goto bail;
> }
> opt.seg = segval;
This patch isn't in Sys...
2010 Jul 26
5
[RFC/PATCH] New chainloading functionality
This patch introduces extra functionality to chain.c, mainly with reference to
BPB adjustments, but not only that. It expects 3 small patches I sent earlier
(they are included for easy reference, patches 1-3/4).
The changes introduced are:
1) file and boot sector use separate options to control load address and jump
address (if applicable). Options are as described below:
*
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.