Displaying 3 results from an estimated 3 matches for "e3aed13".
Did you mean:
e3ad1e3
2009 Apr 09
0
[PATCH] gfxboot: parse DEFAULT keywork in syslinux config file
...ile and set the default entry
accordingly.
Signed-off-by: Christophe Fergeau <cfergeau at mandriva.com>
---
modules/gfxboot.asm | 34 ++++++++++++++++++++++++++++++++--
1 files changed, 32 insertions(+), 2 deletions(-)
diff --git a/modules/gfxboot.asm b/modules/gfxboot.asm
index 7640914..e3aed13 100644
--- a/modules/gfxboot.asm
+++ b/modules/gfxboot.asm
@@ -544,8 +544,8 @@ gfx_setup_menu:
mov di,[menu_seg]
mov [menu_desc+menu_ent_list+2],di
- mov word [menu_desc+menu_default],0
- mov [menu_desc+menu_default+2],di
+ mov word [menu_desc+menu_default],dentry_buf
+ mov [menu_desc+m...
2009 Apr 30
2
[1/1] [gfxboot] align buffer used to read data from disk to a 512 byte boundary
...sk is properly
aligned, this fixes the boot failures on the aforementioned machines.
Signed-off-by: Christophe Fergeau <cfergeau at mandriva.com>
---
modules/gfxboot.asm | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/modules/gfxboot.asm b/modules/gfxboot.asm
index e3aed13..2c3f809 100644
--- a/modules/gfxboot.asm
+++ b/modules/gfxboot.asm
@@ -871,6 +871,8 @@ drivenumber db 0
sectorshift db 0
sectorsize dw 0
trackbufsize equ 16384
+align 512 ; must be 512 byte aligned because it will
be passed
+...
2009 Apr 05
3
[PATCH] Gfxboot COMBOOT module
This is the latest version of the gfxboot module. It's supposed to work on
all Syslinux derivatives.
I am not sure about the copyright notice and would appreciate any input.
- Sebastian
Index: syslinux-3.74-pre17-2-g2a9ddec/modules/Makefile
===================================================================
--- syslinux-3.74-pre17-2-g2a9ddec.orig/modules/Makefile
+++