Displaying 4 results from an estimated 4 matches for "fseg".
Did you mean:
dseg
2017 Feb 20
3
[PATCH] Correct chain.c32 v. 6.04-pre1 for Reactos
...if (!strncmp(argv[i], "reactos=", 8)) {
- /*
- * settings based on commit
- * ad4cf1470977f648ee1dd45e97939589ccb0393c
- * note, conflicts with:
- * http://reactos.freedoors.org/Reactos%200.3.13/ReactOS-0.3.13-REL-src/boot/freeldr/notes.txt
- */
- opt.fseg = 0;
- opt.foff = 0x8000;
- opt.fip = 0x8100;
+ opt.fseg = 0x0F80;
+ opt.foff = 0;
+ opt.fip = 0;
opt.file = argv[i] + 8;
opt.setbpb = true;
opt.hand = false;
diff U3 doc/chain.txt doc/chain.txt
--- doc/chain.txt Wed Mar 02 07:06:02 2016
+++ doc/chain.txt Mon F...
2017 Feb 23
0
[PATCH] Correct chain.c32 v. 6.04-pre1 for Reactos
...* settings based on commit
> - * ad4cf1470977f648ee1dd45e97939589ccb0393c
> - * note, conflicts with:
> - * http://reactos.freedoors.org/Reactos%200.3.13/ReactOS-0.3.13-REL-src/boot/freeldr/notes.txt
> - */
> - opt.fseg = 0;
> - opt.foff = 0x8000;
> - opt.fip = 0x8100;
> + opt.fseg = 0x0F80;
> + opt.foff = 0;
> + opt.fip = 0;
> opt.file = argv[i] + 8;
> opt.setbpb = true;
> opt.hand = false;
> diff U3 d...
2017 Mar 04
1
[PATCH] Update chain.c32 v. 6.04-pre1 for current Reactos
...if (!strncmp(argv[i], "reactos=", 8)) {
- /*
- * settings based on commit
- * ad4cf1470977f648ee1dd45e97939589ccb0393c
- * note, conflicts with:
- * http://reactos.freedoors.org/Reactos%200.3.13/ReactOS-0.3.13-REL-src/boot/freeldr/notes.txt
- */
- opt.fseg = 0;
- opt.foff = 0x8000;
- opt.fip = 0x8100;
+ opt.fseg = 0x0F80;
+ opt.foff = 0;
+ opt.fip = 0;
opt.file = argv[i] + 8;
opt.setbpb = true;
opt.hand = false;
diff U3 doc/chain.txt doc/chain.txt
--- doc/chain.txt Wed Mar 02 07:06:02 2016
+++ doc/chain.txt Mon F...
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.