similar to: [patch 1/1] syslinux: add suport for com32 entries inthe menu

Displaying 20 results from an estimated 1000 matches similar to: "[patch 1/1] syslinux: add suport for com32 entries inthe menu"

2011 Aug 17
1
[patch 1/1] syslinux: add suport for com32 entries in the menu
From: Jorge D Cisneros <jorge.cisneros at hp.com> Problem: The actual code only check for entries with kernel or linux, so this example will not work, this patch is to add support to gfxboot to detect the entry COM32 and use any module, in this case the module is chain.c32 Version: Syslinux 4.04 Example: UI gfxboot.c32 LABEL boot_hd0 MENU LABEL Boot from first hard drive COM32 chain.c32
2010 Jul 14
2
[PATCH] gfxboot: add include and menu include support
Ubuntu CDs use multiple configuration files and the include directive as well as gfxboot, so it's useful for gfxboot to support these. Signed-off-by: Colin Watson <cjwatson at ubuntu.com> --- com32/gfxboot/gfxboot.c | 65 +++++++++++++++++++++++++++++++---------------- 1 files changed, 43 insertions(+), 22 deletions(-) diff --git a/com32/gfxboot/gfxboot.c b/com32/gfxboot/gfxboot.c
2010 Apr 09
2
[PATCH] gfxboot: support MENU LABEL statement
The config file parser now accepts MENU LABEL. Also, make config statements case-insensitive. Signed-off-by: Steffen Winterfeldt <wfeldt at opensuse.org> --- com32/gfxboot/gfxboot.c | 69 ++++++++++++++++++++++++++++++++++------------- 1 files changed, 50 insertions(+), 19 deletions(-) diff --git a/com32/gfxboot/gfxboot.c b/com32/gfxboot/gfxboot.c index bfdd8cc..640422b 100644 ---
2010 Jul 14
1
[PATCH] gfxboot: allow boot entry to start with label instead of menu_label
menu_ptr->menu_label is human-readable (perhaps even translatable!) text if the MENU LABEL command is used, which isn't very convenient at the start of a boot entry. Allow the entry to start with menu_ptr->label (an identifier) as an alternative. Signed-off-by: Colin Watson <cjwatson at ubuntu.com> --- com32/gfxboot/gfxboot.c | 16 ++++++++++------ 1 files changed, 10
2009 Oct 29
5
[PATCH] gfxboot.c32
Ok, here is the first try to turn the gfxboot wrapper into a com32 module. I had to extend the interface to the gfxboot core a bit to get it working. So it works only with latest gfxboot from git://gitorious.org/gfxboot/gfxboot.git Steffen -------------- next part -------------- A non-text attachment was scrubbed... Name: gfxboot_c32.diff.gz Type: application/x-gzip Size: 7220 bytes Desc: URL:
2008 Aug 12
3
COM32 Implementation Of GFXBoot
What?s the status of the Google Summer of Code?COM32 module implementation of GFXBoot?project? From what has been communicated to me, things have not gone as planned, and it?s currently in limbo.
1999 Nov 09
1
Strange entry inthe log when using encrypted passwords
Hello, I want to set up my Samba-servers to use encrypted passwords (smbpasswd). First I enabled "Update Encrypted" to set the correct password and then I disabled "Update encrypted" and enabled "encrypted passwords". When I map up a share from the client everything is working ok, but in the log I have the following: [1999/11/09 21:37:10, 1] smbd/password.c:(532)
2015 Oct 19
0
MANUAL: How to do an Installation Windows USB with syslinux 6.03
Hi Guys, I have done a tutorial in spanish to create an Installation Windows Pendrive using syslinux. It works well but it is in spanish, sorry. You are free to translate a upload to any place. *Crear USB Autoarrancable con syslinux * 1. Descargar la ?ltima versi?n de syslinux del enlace siguiente http://www.syslinux.org/wiki/index.php/Download *NOTA:* actualmente es la 6.03 2.
2004 Apr 19
1
Possible typo?
Just had a quick glance at the recents diffs of openssh and noted something which looks bogus to me: diff -u -r1.209 -r1.210 --- src/usr.bin/ssh/ssh.c 2004/03/11 10:21:17 1.209 +++ src/usr.bin/ssh/ssh.c 2004/04/18 23:10:26 1.210 @@ -517,16 +517,17 @@ * file if the user specifies a config file on the command line. */ if (config != NULL) { - if (!read_config_file(config, host,
2024 May 06
1
Feature request/EOI: Match interactive config?
On Mon, 6 May 2024, openssh at tr.id.au wrote: > ... and I guess your next question will be about compilation environment, so: > > ``` > $ gcc --version > gcc (Gentoo 13.2.1_p20240210 p14) 13.2.1 20240210 > Copyright (C) 2023 Free Software Foundation, Inc. > This is free software; see the source for copying conditions. There is NO > warranty; not even for MERCHANTABILITY
2004 Oct 03
3
[PATCH] PreferAskpass in ssh_config
Moin, attached is a patch, which adds a new configuration option "PreferAskpass" to the ssh config. ssh{,-add,-keygen,-agent} will use ssh-askpass to prompt for passwords, if this option is set to "yes", and if ssh-askpass is available. Default for "PreferAskpass" is "no". Pacth is against current CVS. Sebastian -- signature intentionally left blank.
2024 May 06
1
Feature request/EOI: Match interactive config?
Hey Damien, > Would something like this help? > > Match sessiontype shell > User foo > Match remotecommand "none" > User foo2 > Match sessiontype exec remotecommand "/rsync" > User bar > Match sessiontype subsystem remotecommand "sftp" > User baz > > > diff --git a/readconf.c b/readconf.c > <snip> Thanks for looking
2010 Sep 03
1
[PATCH] New '-o' option to configure server or hosts from command line
Options given on the command line have precedence over configuration from files. This can be useful, for example, for a roaming node, for which 'ConnectTo' and <host>.Address depends on its location. --- This patch is against stable branch. Merging this patch to the 1.1 branch is trivial. I use this patch on my Debian for several weeks. Here is the ifupdown script I use (some
2010 Jul 14
1
[PATCH] gfxboot: fix buffer overrun when loading kernel/initramfs
If the file size wasn't a multiple of 64KB, we could overwrite the next entry in the malloc arena so reading the initramfs would fail. Signed-off-by: Colin Watson <cjwatson at ubuntu.com> --- com32/gfxboot/gfxboot.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/com32/gfxboot/gfxboot.c b/com32/gfxboot/gfxboot.c index dd4d641..0fbfadd 100644 ---
2016 Aug 29
2
[PATCH] Make "ssh" try different configuration filenames
To provide a bit more backwards-compatible (which is nice for eg. NFS- shared /home directories) try a few version-number based names. Eg., for "OpenSSH_7.3" the strings that are tried after "~/.ssh/config" are "_7.3", "_7", and "". --- ssh.c | 37 ++++++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git
2010 Apr 25
1
[GIT PULL] gfxboot module changes
Hello Peter, the following changes since commit 67496f7afab45f17a6a4ce4fc183d9e0c15ead03: Michal Soltys (1): chain.c32 sethidden option fix are available in the git repository at: git://repo.or.cz/syslinux/sherbszt.git gfxboot32 Steffen Winterfeldt (7): gfxboot: support MENU LABEL statement gfxboot: make config statements case-insensitive gfxboot: handle IPAPPEND
2013 Jul 09
1
gfxboot again - EFI64
Am 04.07.2013 20:02, schrieb H. Peter Anvin: > On 07/04/2013 06:03 AM, Andreas Heinlein wrote: >> Hello, >> >> I think I found another problem with gfxboot, and I think it is >> completely unrelated to the 'packed archive' issue. >> >> Again I tried using gfxboot with the Ubuntu gfxboot archive, this time >> with EFI64, using a real EFI-capable
2015 Dec 12
0
Some patches from mageia
On 12.12.2015 17:39, Sebastian Herbszt via Syslinux wrote: > Gene Cumm wrote: >> On Sat, Dec 12, 2015 at 8:21 AM, Ady via Syslinux <syslinux at zytor.com> wrote: >>> >>>> On Thu, Dec 10, 2015 at 5:15 PM, Sebastian Herbszt <herbszt at gmx.de> wrote: >>>>> Gene Cumm wrote: >>>>>> On Tue, Dec 1, 2015 at 3:02 PM, Erwan Velu via
2015 Dec 12
0
Some patches from mageia
On Sat, Dec 12, 2015 at 8:21 AM, Ady via Syslinux <syslinux at zytor.com> wrote: > >> On Thu, Dec 10, 2015 at 5:15 PM, Sebastian Herbszt <herbszt at gmx.de> wrote: >> > Gene Cumm wrote: >> >> On Tue, Dec 1, 2015 at 3:02 PM, Erwan Velu via Syslinux >> >> <syslinux at zytor.com> wrote: >> >> > Hi folks, >> >> >
2013 Jul 04
0
Problems with gfxboot.c32
Am 03.07.2013 23:05, schrieb Sebastian Herbszt: > Matt Fleming wrote: >> On Wed, 03 Jul, at 09:53:32PM, Sebastian Herbszt wrote: >>> gfxboot.c32 is supposed to work as expected if you put all required >>> files >>> inside the bootlogo archive. >> >> From reading com32/gfxboot/gfxboot.c, the code in the bootlog archive >> calls *out* into a