search for: 4f5baf1

Displaying 4 results from an estimated 4 matches for "4f5baf1".

2010 Jun 28
0
[PATCH] chain.c32: pass partition number to stage2 of Grub Legacy
...ive (default) 0-3: primary partitions 4-*: logical partitions Signed-off-by: Gert Hulselmans <gerth at zytor.com> --- com32/modules/chain.c | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/com32/modules/chain.c b/com32/modules/chain.c index a76d275..4f5baf1 100644 --- a/com32/modules/chain.c +++ b/com32/modules/chain.c @@ -123,11 +123,11 @@ static struct options { uint16_t seg; bool isolinux; bool cmldr; + bool grub; bool grldr; bool swap; bool hide; bool sethidden; - bool grub; } opt; struct data_area { @@...
2010 Jun 30
0
[PATCH] chain.c32: add grubcfg= for passing an alternative config
.../grub/stage2 grubcfg=/boot/grub/grub.lst Signed-off-by: Gert Hulselmans <gerth at zytor.com> --- com32/modules/chain.c | 50 +++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 44 insertions(+), 6 deletions(-) diff --git a/com32/modules/chain.c b/com32/modules/chain.c index 4f5baf1..fd48bb8 100644 --- a/com32/modules/chain.c +++ b/com32/modules/chain.c @@ -78,7 +78,11 @@ * * grub=<loader> * same as seg=0x800 file=<loader> & jumping to seg 0x820, - * used with GRUB stage2 files. + * used with GRUB Legacy stage2 files. + * + * grubcfg=<filename> + *...
2010 Jun 30
1
(no subject)
.../grub/stage2 grubcfg=/boot/grub/grub.lst Signed-off-by: Gert Hulselmans <gerth at zytor.com> --- com32/modules/chain.c | 50 +++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 44 insertions(+), 6 deletions(-) diff --git a/com32/modules/chain.c b/com32/modules/chain.c index 4f5baf1..fd48bb8 100644 --- a/com32/modules/chain.c +++ b/com32/modules/chain.c @@ -78,7 +78,11 @@ * * grub=<loader> * same as seg=0x800 file=<loader> & jumping to seg 0x820, - * used with GRUB stage2 files. + * used with GRUB Legacy stage2 files. + * + * grubcfg=<filename> + *...
2010 Jun 30
2
[PATCH] chain.c32: add menu support to grub loader
...s border, which might not be acceptable.) Signed-off-by: Paul Bolle <pebolle at tiscali.nl> --- com32/modules/chain.c | 58 ++++++++++++++++++++++++++++++++++++------------ 1 files changed, 43 insertions(+), 15 deletions(-) diff --git a/com32/modules/chain.c b/com32/modules/chain.c index 4f5baf1..a386502 100644 --- a/com32/modules/chain.c +++ b/com32/modules/chain.c @@ -76,7 +76,7 @@ * equivalent to seg=0x70 file=<loader> sethidden, * used with DOS' io.sys. * - * grub=<loader> + * grub=<loader>[,<menu>] * same as seg=0x800 file=<loader> & jumpi...