similar to: [PATCH] efi/main.c: include <efisetjmp.h>

Displaying 20 results from an estimated 300 matches similar to: "[PATCH] efi/main.c: include <efisetjmp.h>"

2025 Apr 19
0
[PATCH] efi/main.c: include <efisetjmp.h>
On Tue Mar 24 03:57:51 PDT 2020, Thomas Petazzoni wrote: > Building syslinux against gnu-efi 3.0.10 currently fails with: > > syslinux/efi/main.c:33:8: error: unknown type name ?jmp_buf? >??? 33 | static jmp_buf load_error_buf; >?????? |??????? ^~~~~~~ > syslinux/efi/main.c: In function ?local_boot?: > syslinux/efi/main.c:189:5: warning: implicit declaration of
2020 Mar 24
1
[PATCH] efi/main.c: include <efisetjmp.h>
Hello, Thanks for your feedback. On Tue, 24 Mar 2020 18:17:09 +0200 Ady via Syslinux <syslinux at syslinux.org> wrote: > > Building syslinux against gnu-efi 3.0.10 currently fails with: > > FWIW, gnu-efi version 3.0.11 was released just 20 days after the > release of version 3.0.10. Building on top of gnu-efi 3.0.10 should be > considered irrelevant. A more-relevant
2020 Mar 24
0
[PATCH] efi/main.c: include <efisetjmp.h>
> Building syslinux against gnu-efi 3.0.10 currently fails with: FWIW, gnu-efi version 3.0.11 was released just 20 days after the release of version 3.0.10. Building on top of gnu-efi 3.0.10 should be considered irrelevant. A more-relevant test would be to build on top of the current gnu-efi master head: https://sf.net/p/gnu-efi/code/ci/HEAD/ https://sf.net/p/gnu-efi/code/ci/master/
2018 Dec 18
1
efi config hang
On Mon, 2018-12-17 at 23:52 +0100, Lukas Schwaighofer wrote: > CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe. > > > Hi Joakim, > > On Wed, 12 Dec 2018 23:25:24 +0000 > Joakim Tjernlund via Syslinux <syslinux at zytor.com> wrote: > > > I
2005 Feb 15
0
Proposal of talk about Xen at the Libre Software Meeting 2005
Hello, (I''ve tried several times to contact Xen developers through the xen-admin e-mail or directly Ian Clark with no answer as of today. As we are really interested in Xen, I post this call on a list that has a broader audience. Please Cc: me the answers because I''m not on the list. Thanks.) Since the year 2000, the Free Software Community in France has been organizing the
2002 Apr 26
2
Creating hard disk image in DOS
I was wondering if it is possible to create a hard disk image in DOS for use with MEMDISK? If so what utility is required? Rob
2012 Oct 28
6
Having some Trouble Data Structures
Hi All, I'm trying to run a simulation of host-pathogen evolution based around individuals. What I need to have is a dataframe or table of some description - describing all the individuals of a pathogen population (so far I've implemented this as a matrix): ID No_of_Effectors Effectors (Sequences) [1,] 0001 3 ## 3
2023 Nov 20
1
tftp problems
I've used TFTP server on CentOS/RHEL 7 and 8 but not 9, so take my notes with the appropriate grain of salt... JIC, confirm on the TFTP server you have a process socket for it, e.g. $ netstat -a | grep tftp udp 0 0 0.0.0.0:tftp 0.0.0.0:* Your 'systemctl status' output implies things are OK, but worth a check. I don't see a "tftpboot" symlink
2002 Apr 05
1
Selecting hard disk boot when running syslinux from floppy
Hi, I was wondering if it is possible to have the option to boot from hard disk when syslinux loads from floppy. Basicly I'm trying to create a boot disk which gives me the option to boot from hard disk, possibly after 5 seconds incase I leave the floppy in by mistake. The systems I would be using this floppy on would be running Windows NT 4.0, Windows 2000 and possibly RedHat Linux 7.2.
2015 Oct 07
2
Hyper-V Gen 2 waiting for ldlinux.e64
On Wed, Oct 07, 2015 at 05:58:51PM -0500, Clements, James wrote: > James Clement > > Geert Stappers > > > On Wed, Oct 07, 2015 at 05:06:41PM -0500, Clements, James wrote: > > > > The screen displays the following: > > > > > > > > PXE Network Boot using IPv4 > > > > .... > > > > Station IP address is 192.168.205.50
2015 Aug 15
3
[PATCH] EFI booting may hang indefinitely when no keyboard is present
EFI booting may hang indefinitely when no keyboard is present on a machine (or when UEFI has chosen to not init USB due to fast boot). Reproducible at least with "EFI v2.31 by American Megatrends" on an Asrock H81M-ITX board. Reason is the input draining loop near the end in efi/main.c; it calls ReadKeyStroke() as long as EFI_NOT_READY is not returned. On machines without keyboard,
2001 Mar 18
2
wine.conf newbie problem
I appear to have 'installed' wine correctly and get appropriate output from 'wine -version' However, when I try to run solitaire, the following happens. [root@pato gallun]# wine -winver win31 -desktop 640*480 /win98/windows/sol.exe Warning: could not find wine config [Drive x] entry for current working directory /home/gallun; starting in windows directory. Warning:
2017 Jul 19
1
[PATCH 000/102] Convert drivers to explicit reset API
Hello, On Wed, 19 Jul 2017 17:25:04 +0200, Philipp Zabel wrote: > The reset control API has two modes: exclusive access, where the driver > expects to have full and immediate control over the state of the reset > line, and shared (clock-like) access, where drivers only request reset > deassertion while active, but don't care about the state of the reset line > while inactive.
2020 Apr 16
2
Installing extlinux into a disk image without being root?
Hello, Is it possible to install extlinux into a disk image, without being root ? It seems like extlinux --install absolutely requires the specific block device in which extlinux should be installed to be mounted. This prevents from doing an extlinux installation as non-root, which is annoying for build systems such as Buildroot [1] that build a complete Linux system from source, without being
2013 Jan 24
1
Pairwise Comparrisons
Dear all, I''m trying to write a function, that will take as an argument, some aligned genome sequences, and using a sliding window, do pairwise comparisons of sequence similarity. Coding the sliding window I think I can manage but what I''m trying to get to grips with is getting it so as every pairwise comparison is made, no matter how many genomes are added, from 3 to N. So if
2015 Aug 05
0
EFI: HP + syslinux = crash
[ merging a few sub-threads into one ] > Weird as it sounds I was able to send debug info to COM2 > (redirected to a pipe) on EFI64 VMware workstation clients. Ports 0x3f8 and 0x2f8 are so hardwired into my brain from back in the old BBS-days that I did not expect them NOT to work. Apparently some firmware engineers have this problem too. ;-) >>>> > If there is
2015 Oct 09
0
load_env32 WAS: Hyper-V Gen 2 waiting for ldlinux.e64
On Thu, Oct 08, 2015 at 01:24:26AM +0200, Geert Stappers via Syslinux wrote: > On Wed, Oct 07, 2015 at 05:58:51PM -0500, Clements, James wrote: > > > Correct me if I am wrong but if I understand correctly, syslinux.efi is > > what drives the request for ldlinux.e64. Is there a way we can enable > > some debug somehow to see why the request for ldlinux.e64 includes >
2017 Jul 20
2
[PATCH 000/102] Convert drivers to explicit reset API
Hello, On Thu, 20 Jul 2017 11:36:55 +0200, Philipp Zabel wrote: > > I don't know if it has been discussed in the past, so forgive me if it > > has been. Have you considered adding a "int flags" argument to the > > existing reset_control_get_*() functions, rather than introducing > > separate exclusive variants ? > > > > Indeed, with a "int
2023 Nov 20
2
tftp problems
Hello, ?? I am a fairly experienced user.? I have set up tftp in the past at various times, although it's been a few years. I am using version... Version????? : 5.2 Release????? : 37.el9 On AlmaLinux 9.3, I currently have SELinux disabled. ]# firewall-cmd --list-services cockpit dhcp dhcpv6-client http ssh tftp I have tftp enabled on the firewall.? ( I have tried with the firewall completely
2015 Oct 08
0
{syslinux} Hyper-V Gen 2 waiting for ldlinux.e64
> Hello James, > > > ----- Forwarded message from Geert Stappers via Syslinux > <syslinux at zytor.com> ----- > > Date: Thu, 8 Oct 2015 01:24:26 +0200 > From: Geert Stappers via Syslinux <syslinux at zytor.com> > To: "Clements, James" <James.Clements at affiliate.oliverwyman.com> > Cc: "syslinux at zytor.com" <syslinux at