search for: syslxcom

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

2011 Apr 15
0
[GIT PULL] syslinux command-line
...Alcantara (4): libinstaller: implement syslinux_already_installed extlinux: use syslinux_already_installed instead of already_installed extlinux: remove already_installed syslinux: check --update option properly extlinux/main.c | 15 +-------------- libinstaller/syslxcom.c | 13 +++++++++++++ libinstaller/syslxcom.h | 1 + linux/syslinux.c | 4 ++++ 4 files changed, 19 insertions(+), 14 deletions(-) diff --git a/extlinux/main.c b/extlinux/main.c index 21369e4..e5212a9 100755 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -503,19 +503,6 @@ int instal...
2010 Jun 16
3
Pre48 - syslxcom compile errors
I just downloaded the pre48 and ran make. It ran fine for everything, but ended with a number of errors related to the syslxcom program. Usually, I only see the messages about the windows build since I am doing the make on a Fedora 10 system. Is there something new that has been added that requires something that I am missing? From looking at the program this isn't related to the isolinux that I use on my g4l cd pro...
2015 Nov 10
2
[PATCH] mtools: Remove local xpread/xpwrite, use ones from syslxcom
...(+), 58 deletions(-) diff --git a/mtools/Makefile b/mtools/Makefile index 0d0b1b2..c980420 100755 --- a/mtools/Makefile +++ b/mtools/Makefile @@ -9,6 +9,7 @@ SRCS = syslinux.c \ ../libinstaller/fs.c \ ../libinstaller/syslxmod.c \ ../libinstaller/syslxopt.c \ + ../libinstaller/syslxcom.c \ ../libinstaller/setadv.c \ ../libinstaller/bootsect_bin.c \ ../libinstaller/ldlinux_bin.c \ diff --git a/mtools/syslinux.c b/mtools/syslinux.c index 5924430..3686be0 100755 --- a/mtools/syslinux.c +++ b/mtools/syslinux.c @@ -42,8 +42,8 @@ #include "setadv.h" #include...
2012 Aug 02
0
[PATCH 1/3] ALPHA: make sector size dynamic in extlinux
...fix first stage of extlinux bootloader but have some problems with ADV Signed-off-by: Frediano Ziglio <frediano.ziglio at citrix.com> --- dos/syslinux.c | 2 +- extlinux/main.c | 36 +++++++++++++++++++++++++----------- libinstaller/syslinux.h | 3 ++- libinstaller/syslxcom.c | 30 +++++++++++++++--------------- libinstaller/syslxcom.h | 2 +- libinstaller/syslxmod.c | 14 ++++++++------ linux/syslinux.c | 4 ++-- mtools/syslinux.c | 2 +- win/syslinux.c | 3 ++- 9 files changed, 57 insertions(+), 39 deletions(-) diff --git a/dos...
2015 Nov 10
0
[PATCH] mtools: Remove local xpread/xpwrite, use ones from syslxcom
On Tue, 10 Nov 2015 14:51:04 +0100 Nicolas Cornu via Syslinux <syslinux at zytor.com> wrote: > From: Nicolas Cornu <ncornu at aldebaran.com> > > --- > mtools/Makefile | 1 + > mtools/syslinux.c | 59 > +------------------------------------------------------ 2 files > changed, 2 insertions(+), 58 deletions(-) Applied. Please, next time make sure you
2015 Nov 11
1
[PATCH] mtools: Remove local xpread/xpwrite, use ones from syslxcom
2015-11-10 23:18 UTC+01:00, Paulo Alcantara via Syslinux <syslinux at zytor.com>: > On Tue, 10 Nov 2015 14:51:04 +0100 > Nicolas Cornu via Syslinux <syslinux at zytor.com> wrote: > >> From: Nicolas Cornu <ncornu at aldebaran.com> >> >> --- >> mtools/Makefile | 1 + >> mtools/syslinux.c | 59 >>
2012 Sep 10
19
Initial support for sector size >512
This set of patches add some support for sector size >512. Currently it fixes extlinux, MBR for GPT and ext partitions. Other code is unaffected. This set of patches has been tested on a read Dell machine running a beta firmware.
2011 Oct 05
0
[GIT PULL] NTFS readonly file system support
...extlinux/Makefile | 2 +- extlinux/main.c | 59 ++- extlinux/ntfs.h | 19 + libinstaller/{fat.c => fs.c} | 120 +++-- libinstaller/linuxioctl.h | 5 +- libinstaller/setadv.c | 1 + libinstaller/syslinux.h | 4 +- libinstaller/syslxcom.c | 6 + libinstaller/syslxcom.h | 9 - libinstaller/syslxfs.h | 26 + libinstaller/syslxint.h | 70 +++- libinstaller/syslxmod.c | 2 +- libinstaller/syslxopt.c | 1 + linux/Makefile | 4 +- linux/syslinux.c | 24 +- mto...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...,10 @@ #include "btrfs.h" #include "fat.h" #include "ntfs.h" +#include "xfs.h" +#include "xfs_types.h" +#include "xfs_sb.h" +#include "misc.h" #include "../version.h" #include "syslxint.h" #include "syslxcom.h" /* common functions shared with extlinux and syslinux */ @@ -64,6 +69,13 @@ #define EXT2_SUPER_OFFSET 1024 #endif +/* Since we have unused 2048 bytes in the primary AG of an XFS partition, + * we will use the first 0~512 bytes starting from 2048 for the Syslinux + * boot sector. + */ +#...