search for: diskio_bios

Displaying 9 results from an estimated 9 matches for "diskio_bios".

2014 Feb 20
2
[PATCH] core: Incorrect detection of EDD in /core/fs/diskio_bios.c
DL register is not set to drive number when detecting EDD for drive, so detection may fail. Signed-off-by: Andy Alex<andy at r-tt.com> --- diff -uprN syslinux-6.02.orig/core/fs/diskio_bios.c syslinux-6.02/core/fs/diskio_bios.c --- syslinux-6.02.orig/core/fs/diskio_bios.c 2013-10-13 21:59:03.000000000 +0400 +++ syslinux-6.02/core/fs/diskio_bios.c 2014-02-20 12:15:08.000000000 +0400 @@ -337,7 +337,7 @@ struct disk *bios_disk_init(void *privat /* Get EBIOS support */ ireg.eax.b[1]...
2014 Feb 23
1
[PATCH] core: Incorrect detection of EDD in /core/fs/diskio_bios.c
...ebx, and ecx are checked after int 0x13). But it's better to leave it in code to make sure that BIOS conforms standards and clears CF flag on successful call. Adjusted patch is given below. Andy Alex Signed-off-by: Andy Alex <andy at r-tt.com> --- diff -uprN syslinux-6.02.orig/core/fs/diskio_bios.c syslinux-6.02/core/fs/diskio_bios.c --- syslinux-6.02.orig/core/fs/diskio_bios.c 2013-10-13 13:59:03.000000000 -0400 +++ syslinux-6.02/core/fs/diskio_bios.c 2014-02-23 14:04:17.876084866 -0500 @@ -337,6 +337,7 @@ struct disk *bios_disk_init(void *privat /* Get EBIOS support */...
2014 Feb 22
0
[PATCH] core: Incorrect detection of EDD in /core/fs/diskio_bios.c
Op 2014-02-20 om 13:23 schreef Andy Alex: > DL register is not set to drive number when detecting EDD for drive, so detection may fail. > > Signed-off-by: Andy Alex<andy at r-tt.com> > --- > diff -uprN syslinux-6.02.orig/core/fs/diskio_bios.c syslinux-6.02/core/fs/diskio_bios.c > --- syslinux-6.02.orig/core/fs/diskio_bios.c 2013-10-13 21:59:03.000000000 +0400 > +++ syslinux-6.02/core/fs/diskio_bios.c 2014-02-20 12:15:08.000000000 +0400 > @@ -337,7 +337,7 @@ struct disk *bios_disk_init(void *privat > /* Get EBIOS support...
2015 Jul 13
2
boot... round 2
...9;ve seen. > > > On Sun, Jul 12, 2015 at 8:58 AM, Gene Cumm <gene.cumm at gmail.com> wrote: >> On Thu, Jul 9, 2015 at 4:57 PM, William Kennington via Syslinux >> <syslinux at zytor.com> wrote: >>> Still not working with gcc5.2 rc >> >> core/fs/diskio_bios.c:395 contains pm_fs_init() which I believe is the >> first protected-mode code. >> >> void pm_fs_init(com32sys_t *regs) >> { >> static struct bios_disk_private priv; >> >> writechr('^'); >> priv.regs = regs; >> fs_init((...
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
2013 Oct 18
1
[RFC/PATCH 2/3] core: MultiFS infrastructure added.
...at will be later hooked to a function from ldlinux.c32. get_fs_info is expected to return a fs_info structure given the MultiFS path. Signed-off-by: Raphael S. Carvalho <raphael.scarv at gmail.com> --- core/fs/cache.c | 2 +- core/fs/diskio.c | 26 ++++++++++++---- core/fs/diskio_bios.c | 40 ++++++++++++++----------- core/fs/fs.c | 22 +++++++++++--- core/fs/readdir.c | 9 +++++- core/include/multifs.h | 61 ++++++++++++++++++++++++++++++++++++++ core/multifs.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 205 inserti...
2015 Jul 13
0
boot... round 2
...t strictly that BIOS from what I've seen. On Sun, Jul 12, 2015 at 8:58 AM, Gene Cumm <gene.cumm at gmail.com> wrote: > On Thu, Jul 9, 2015 at 4:57 PM, William Kennington via Syslinux > <syslinux at zytor.com> wrote: >> Still not working with gcc5.2 rc > > core/fs/diskio_bios.c:395 contains pm_fs_init() which I believe is the > first protected-mode code. > > 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....
2015 Jul 09
1
boot... round 2
Still not working with gcc5.2 rc On Thu, Jul 9, 2015, 11:08 William Kennington <william at wkennington.com> wrote: > Trying 5.2-rc now, will report back after the test case is run. > > On Thu, Jul 9, 2015, 07:23 Adam Williamson <awilliam at redhat.com> wrote: > >> On Thu, 2015-07-09 at 06:56 +0000, William Kennington wrote: >> > Does fedora have gcc5
2015 Jul 22
13
[PULL 0/8] MultiFS suppport for BIOS and EFI
...+++++++ com32/{chain => lib/syslinux}/partiter.c | 6 +- com32/{chain => lib/syslinux}/utility.c | 2 +- core/bios.c | 11 ++ core/fs/cache.c | 2 +- core/fs/diskio.c | 28 +++- core/fs/diskio_bios.c | 40 ++--- core/fs/fs.c | 21 ++- core/fs/readdir.c | 8 +- core/include/multifs.h | 50 ++++++ core/multifs.c | 221 +++++++++++++++++++++++++++ core/multif...