search for: syslxf

Displaying 8 results from an estimated 8 matches for "syslxf".

Did you mean: syslxfs
2013 Jul 22
1
[PATCH 1/1 v2] Add UFS1/2 support to Extlinux installer.
...1 can't. UFS2 has no cow feature unlike BTRFS. Signed-off-by: Raphael S.Carvalho <raphael.scarv at gmail.com> --- extlinux/main.c | 79 ++++++++++--- extlinux/ufs.h | 26 ++++ extlinux/ufs_fs.h | 307 ++++++++++++++++++++++++++++++++++++++++++++++++ libinstaller/syslxfs.h | 4 +- 4 files changed, 396 insertions(+), 20 deletions(-) create mode 100644 extlinux/ufs.h create mode 100644 extlinux/ufs_fs.h diff --git a/extlinux/main.c b/extlinux/main.c index 9ee9abb..737b668 100644 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -14,8 +14,8 @@ /* * extlinux.c...
2011 Oct 05
0
[GIT PULL] NTFS readonly file system support
...++- 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 +- mtools/Makefile | 2 +- mtools/syslinux.c | 5 +-...
2013 Jul 12
2
[PATCH 001/001] Add UFS1/2 support to Extlinux installer.
...the 0-64k range like BTRFS, whereas UFS1 can't. Signed-off-by: Raphael S.Carvalho <raphael.scarv at gmail.com> --- extlinux/main.c | 71 +++++++++--- extlinux/ufs.h | 26 ++++ extlinux/ufs_fs.h | 307 ++++++++++++++++++++++++++++++++++++++++++++++++ libinstaller/syslxfs.h | 4 +- 4 files changed, 390 insertions(+), 18 deletions(-) create mode 100644 extlinux/ufs.h create mode 100644 extlinux/ufs_fs.h diff --git a/extlinux/main.c b/extlinux/main.c index aa20e1b..1ebf800 100644 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -14,8 +14,8 @@ /* * extlinux.c...
2014 May 29
3
[PATCH v2 0/2] UFS1/2 support series
...| 486 ++++++++++++++++++++++++++++++++++++++++++++++++ core/fs/ufs/ufs.h | 254 +++++++++++++++++++++++++ core/ldlinux.asm | 2 + extlinux/main.c | 51 ++++- extlinux/ufs.h | 26 +++ extlinux/ufs_fs.h | 307 ++++++++++++++++++++++++++++++ libinstaller/syslxfs.h | 4 +- 8 files changed, 1322 insertions(+), 10 deletions(-) create mode 100644 core/fs/ufs/bmap.c create mode 100644 core/fs/ufs/ufs.c create mode 100644 core/fs/ufs/ufs.h create mode 100644 extlinux/ufs.h create mode 100644 extlinux/ufs_fs.h -- 1.7.2.5
2014 May 29
3
[PATCH 0/2] UFS1/2 support series
...++++++++++++++++++++++++++++++++++++++++++++++++ core/fs/ufs/ufs.h | 253 ++++++++++++++++++++++++++++++ core/ldlinux.asm | 2 + extlinux/main.c | 51 +++++- extlinux/ufs.h | 26 +++ extlinux/ufs_fs.h | 307 ++++++++++++++++++++++++++++++++++++ libinstaller/syslxfs.h | 4 +- 8 files changed, 1239 insertions(+), 10 deletions(-) create mode 100644 core/fs/ufs/bmap.c create mode 100644 core/fs/ufs/ufs.c create mode 100644 core/fs/ufs/ufs.h create mode 100644 extlinux/ufs.h create mode 100644 extlinux/ufs_fs.h -- 1.7.2.5
2015 Nov 10
2
[PATCH] mtools: Remove local xpread/xpwrite, use ones from syslxcom
...../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 "syslxopt.h" #include "syslxfs.h" +#include "syslxcom.h" -char *program; /* Name of program */ pid_t mypid; void __attribute__ ((noreturn)) die(const char *msg) @@ -59,63 +59,6 @@ void __attribute__ ((noreturn)) die_err(const char *msg) } /* - * read/write wrapper functions - */ -ssize_t xpread(int fd...
2015 Jan 02
13
[PATCH 0/9] linux/syslinux: support ext2/3/4 device
Hello, Happy New Year! These patches make syslinux/linux support ext2/3/4, and it doesn't require the root privilege, I'd like to add a separate e2fs/syslinux, if that is more appropriate, it should be easy to do that. I put these patches on github so that you can easily get them in case you'd like to test them. (The repo's name is sys_tmp, which avoids confusing others, I will
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
.../main.c | 235 +++++++++++--- extlinux/misc.h | 50 +++ extlinux/xfs.h | 25 ++ extlinux/xfs_fs.h | 501 ++++++++++++++++++++++++++++++ extlinux/xfs_sb.h | 476 ++++++++++++++++++++++++++++ extlinux/xfs_types.h | 135 ++++++++ libinstaller/syslxfs.h | 5 +- mbr/mbr.S | 13 + 23 files changed, 5011 insertions(+), 40 deletions(-) create mode 100644 core/fs/xfs/misc.h create mode 100644 core/fs/xfs/xfs.c create mode 100644 core/fs/xfs/xfs.h create mode 100644 core/fs/xfs/xfs_ag.h create mode 100644 core/fs/xfs/xfs_...