Displaying 2 results from an estimated 2 matches for "9a5adf9".
2015 Jul 13
2
boot... round 2
...fs/diskio_bios.c
@@ -398,6 +398,7 @@ void pm_fs_init(com32sys_t *regs)
{
static struct bios_disk_private priv;
+ writechr('^');
priv.regs = regs;
fs_init((const struct fs_ops **)regs->eax.l, (void *)&priv);
}
diff --git a/core/isolinux.asm b/core/isolinux.asm
index 50d9fe1..9a5adf9 100644
--- a/core/isolinux.asm
+++ b/core/isolinux.asm
@@ -1160,6 +1160,10 @@ init_fs:
mov ebx,[Hidden+4]
mov si,[bsHeads]
mov di,[bsSecPerTrack]
+ push ax
+ mov al,'$'
+ call writechr
+ pop ax
pm_call pm_fs_init
pm_call load_env32
enter_command:
A...
2015 Jul 03
7
boot... round 2
On Fri, Jul 3, 2015 at 12:50 AM, poma via Syslinux <syslinux at zytor.com> wrote:
> - "unsigned char c;" does not solve the problem
>
> - "c >= 0 && c <= ' '" solves the problem for the current git
Could you try the following patch? Feel free to only apply the change
to readconfig.c if you want.
--
-Gene
diff --git