Displaying 20 results from an estimated 4000 matches similar to: "[trivial patch] add newline after help output"
2010 Jul 28
1
syslinux-4.02-6-ge841d69 build failure
make[1]: Entering directory `/syslinux-4.02-6-ge841d69/dos'
gcc -Wp,-MT,syslxopt.o,-MD,./.syslxopt.o.d -m32 -ffreestanding -fno-stack-protector -fwrapv -freg-struct-return -march=i386
-Os -fomit-frame-pointer -mregparm=3 -DREGPARM=3 -msoft-float -fno-exceptions -fno-asynchronous-unwind-tables -fno-strict-aliasing
-falign-functions=0 -falign-jumps=0 -falign-labels=0 -falign-loops=0
2010 Jun 07
0
[PATCH] extlinux: Add the --menu-save option to set the MENU SAVE value from the running system using extlinux
---
extlinux/main.c | 9 ++++++++-
libinstaller/syslxopt.c | 8 +++++++-
libinstaller/syslxopt.h | 1 +
man/extlinux.1 | 3 +++
4 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/extlinux/main.c b/extlinux/main.c
index 0669bb9..8a0ac63 100644
--- a/extlinux/main.c
+++ b/extlinux/main.c
@@ -381,6 +381,13 @@ int modify_adv(void)
rv = -1;
}
}
+
2014 Dec 24
0
[PATCH 8/8] libinstaller/syslxopt.c: update the help text.
We support both device and directory as the target now.
Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
---
libinstaller/syslxopt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libinstaller/syslxopt.c b/libinstaller/syslxopt.c
index 3fc5519..d06719f 100644
--- a/libinstaller/syslxopt.c
+++ b/libinstaller/syslxopt.c
@@ -88,7 +88,7 @@ void __attribute__
2016 Jun 04
0
[PATCH] Wedding gift, removing double l from auxilliary
This patch changes only strings, no program code.
It is would be nice if it goes in the 6.04 release.
Reported-by: Ady <ady-sf at hotmail.com>
How this patch was prepared, how the editting for this patch was done
Where is auxiliary written with double l?
git grep -i auxilliary
Which files are effect
git grep -li auxilliary
Changing the those files with the streaming editor
sed
2014 Dec 28
2
raid long option
In Syslinux 6.03 -> libinstaller/syslxopt.c:
#n 50: const struct option long_options[] = {
...
#n 60: {"raid-mode", 0, NULL, 'r'},
...
#n105: fprintf(stderr,
...
#n112: " --raid -r Fall back to the next device on boot failure\n"
Comparing line #60 vs. line #112:
2014 Dec 28
0
raid long option
Ady <ady-sf at hotmail.com> writes:
> In Syslinux 6.03 -> libinstaller/syslxopt.c:
>
>
> #n 50: const struct option long_options[] = {
> ...
> #n 60: {"raid-mode", 0, NULL, 'r'},
> ...
> #n105: fprintf(stderr,
> ...
> #n112: " --raid -r Fall back to the next device on boot failure\n"
>
>
>
2016 Feb 25
2
[PATCH 2/5] ntfs: remove unused variable and have ntfssect use char API calls
Hi Shao,
On 2016.02.24 23:43, Shao Miller via Syslinux wrote:
> Did you happen to notice anything unusual when compiling with MinGW
> under Linux, once 'ok' was removed? I seem to recall warnings about
> unused results, but not of unused objects. Maybe that's an incorrect
> recollection or maybe it's ancient history, however.
I got no warnings with the patch on
2015 Nov 10
2
[PATCH] mtools: Remove local xpread/xpwrite, use ones from syslxcom
From: Nicolas Cornu <ncornu at aldebaran.com>
---
mtools/Makefile | 1 +
mtools/syslinux.c | 59 +------------------------------------------------------
2 files changed, 2 insertions(+), 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 \
2010 Jul 27
2
Usage output of Syslinux installers is not consequent
Why doesn't the Windows Syslinux installer show:
--offset and --directory too (I know it is not supported)?
Because the Linux versions show the Windows/dos specific commands:
--mbr --active and --force
I didn't check the DOS version.
If all options will be displayed unconditionally for all installers, it
might be a good idea to add:
--offset -t Offset of the file system on the
2011 Oct 05
0
[GIT PULL] NTFS readonly file system support
This is the initial NTFS file system support for Syslinux :-)
The following changes since commit 67954e370003d9bbfd8b58042669f2e9d532636f:
ifmemdsk: remove spurious +x bit (2011-08-25 10:58:44 -0700)
are available in the git repository at:
git://github.com/pcacjr/syslinux.git ntfs-for-hpa
Paulo Alcantara (34):
Add NTFS filesystem support to Linux and Windows installers
Initial
2014 Dec 24
14
[PATCH 0/8] extlinux: support unmounted ext2/3/4 filesystem
Hello syslinux,
Merry Christmas! These patches will make extlinux work with umounted
ext2/3/4 filesystem, for example:
$ extlinux -i /dev/sdXN
or
$ extlinux -i file_block
Also it can work with something like:
$ extlinux /dev/sdXN --reset-adv
or
$ extlinux file_block --reset-adv
We don't use a new option (I planed to use "-d" but it is already in
use), it will check whether the
2014 Dec 27
0
[PATCH] txt/syslinux.txt
Correct typos.
Improve format for asciidoc-to-manpage conversion.
Wrap text.
Correct info.
Help phase-out deprecated and/or conflicting options.
diff U3 /syslinux-6.03/txt/syslinux.txt /wip/txt/syslinux.txt
--- /syslinux-6.03/txt/syslinux.txt Mon Oct 06 16:27:44 2014
+++ /wip/txt/syslinux.txt Sat Dec 27 18:20:27 2014
@@ -30,9 +30,10 @@
unmounted file system. For the DOS/Win32/Win64 installers,
2005 Jan 05
2
SYSLINUX-3.02 released
Tying up lose ends, and adding the ethersel module for the Etherboot folks.
-hpa
Changes in 3.02:
* SYSLINUX: The "unix" installer now sets the MS-DOS
attributes (hidden, system, readonly.)
* COM32 library: build the .lnx (test modules for running
under Linux) as architecture native modules, in case
i386 devel libraries aren't
2010 Jul 30
1
Problem with short options (4.02).
Hello,
There seems to be a problem with short options.
F.i. "syslinux -s a:" results in:
Unknown option: -s
Usage: etc.
With the long option "syslinux --stupid a:" however everything is ok.
--
Regards,
Arwin.
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
2011 Apr 15
0
[GIT PULL] syslinux command-line
The following changes since commit 868c474546ba68e9e448734e1833f873fd50ec0a:
diskstart: Add a pointer to the syslinux_banner to the EPA (2011-04-04
17:40:59 -0700)
are available in the git repository at:
git://github.com/pcacjr/syslinux.git syslinux-update-for-hpa
Paulo Alcantara (4):
libinstaller: implement syslinux_already_installed
extlinux: use syslinux_already_installed
2014 Sep 18
4
[PATCH] remove _BSD_SOURCE definition
The _BSD_SOURCE was deprecated since glibc-2.20. _DEFAULT_SOURCE can be
used instead of _BSD_SOURCE. However, there is no need to include
_BSD_SOURCE because the sources only have inline functions and calls
memcmp/cpy functions.
Signed-off-by: Chanho Park <chanho61.park at samsung.com>
---
dos/getsetsl.c | 1 -
libinstaller/fs.c | 1 -
libinstaller/syslxmod.c | 1 -
3 files
2012 Aug 02
0
[PATCH 1/3] ALPHA: make sector size dynamic in extlinux
This is part of some patches to support sectors > 512.
Currently I'm able to boot a Ubuntu kernel but seems that mboot is not working for some reason.
This patch try to 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
2014 Sep 18
0
[PATCH] remove _BSD_SOURCE definition
The _BSD_SOURCE was deprecated since glibc-2.20. _DEFAULT_SOURCE can be
used instead of _BSD_SOURCE. However, there is no need to include
_BSD_SOURCE because the sources only have inline functions and calls
memcmp/cpy functions.
Signed-off-by: Chanho Park <chanho61.park at samsung.com>
---
dos/getsetsl.c | 1 -
libinstaller/fs.c | 1 -
libinstaller/syslxmod.c | 1 -
3 files
2014 Sep 25
3
[PATCH] define _DEFAULT_SOURCE for glibc-2.20
_BSD_SOURCE was deprecated in favour of _DEFAULT_SOURCE since glibc
2.20[1]. To avoid build warning on glibc2.20, _DEFAULT_SOURCE should
also be defined.
[1]: https://sourceware.org/glibc/wiki/Release/2.20
Signed-off-by: Chanho Park <chanho61.park at samsung.com>
---
dos/getsetsl.c | 2 ++
libinstaller/fs.c | 2 ++
libinstaller/syslxmod.c | 2 ++
3 files changed, 6