Displaying 3 results from an estimated 3 matches for "30bfb272".
2019 Jan 21
2
A bug in command localboot was introduced in version 6.03.
diff --git a/core/localboot.c b/core/localboot.c
index 0b8769e4..30bfb272 100644
--- a/core/localboot.c
+++ b/core/localboot.c
@@ -63,7 +63,6 @@ __export void local_boot(int16_t ax)
ireg.eax.w[0] = 0; /* Reset drive */
__intcall(0x13, &ireg, NULL);
- memset(&ireg, 0, sizeof(ireg));
ireg.eax.w[0] = 0x0201; /* Read one sector */
ireg.ecx.w[0] = 0x0001;...
2019 Jan 21
2
A bug in command localboot was introduced in version 6.03.
I created a bootable usb flash with boot menu. One of items was "Boot
from hard drive" with command "localboot 0x81". This item worked when
this usb flash was prepared with syslinux 6.02. And it stopped working
when the flash was prepared with syslinux 6.03. The message was
Booting from local disk...
Boot error
I extracted the source code, investigated, changed, compiled
2019 Jan 21
0
A bug in command localboot was introduced in version 6.03.
On Mon, Jan 21, 2019 at 3:37 AM Victor Sologoubov via Syslinux
<syslinux at zytor.com> wrote:
>
> diff --git a/core/localboot.c b/core/localboot.c
> index 0b8769e4..30bfb272 100644
> --- a/core/localboot.c
> +++ b/core/localboot.c
> @@ -63,7 +63,6 @@ __export void local_boot(int16_t ax)
> ireg.eax.w[0] = 0; /* Reset drive */
> __intcall(0x13, &ireg, NULL);
>
> - memset(&ireg, 0, sizeof(ireg));
> ireg.ea...