Displaying 15 results from an estimated 15 matches for "pxeretry".
2016 Apr 22
4
PXERETRY directive
Would someone please be so kind to explain / describe the PXERETRY
directive?
TIA,
Ady.
2016 Apr 27
4
PXERETRY directive
> On Thu, Apr 21, 2016 at 10:30 PM, Ady via Syslinux <syslinux at zytor.com> wrote:
> > Would someone please be so kind to explain / describe the PXERETRY
> > directive?
>
> $ git grep -ni pxeretry
> com32/elflink/ldlinux/readconfig.c:1305: else if (looking_at(p, "pxeretry"))
> com32/elflink/ldlinux/readconfig.c:1306: PXERetry =
> atoi(skipspace(p + 8));
>
> core/fs/pxe/pxe.c:275: int i = PXERetry;...
2016 Apr 27
2
PXERETRY directive
On Wed, Apr 27, 2016 at 06:23:38AM -0400, Gene Cumm via Syslinux wrote:
> On Thu, Apr 21, 2016 at 10:30 PM, Ady via Syslinux <syslinux at zytor.com> wrote:
> > Would someone please be so kind to explain / describe the PXERETRY
> > directive?
>
> $ git grep -ni pxeretry
-i ignore case ("thanks" said the person who exact case matching search )
> com32/elflink/ldlinux/readconfig.c:1305: else if (looking_at(p, "pxeretry"))
> com32/elflink/ldlinux/readconfig.c:1306: PX...
2016 May 11
0
PXERETRY directive
On Wed, Apr 27, 2016 at 7:55 AM, Ady via Syslinux <syslinux at zytor.com> wrote:
>
>> On Thu, Apr 21, 2016 at 10:30 PM, Ady via Syslinux <syslinux at zytor.com> wrote:
>> > Would someone please be so kind to explain / describe the PXERETRY
>> > directive?
>>
>> $ git grep -ni pxeretry
>> com32/elflink/ldlinux/readconfig.c:1305: else if (looking_at(p, "pxeretry"))
>> com32/elflink/ldlinux/readconfig.c:1306: PXERetry =
>> atoi(skipspace(p + 8));
>>
>> core/fs/pxe/px...
2016 May 05
0
PXERETRY directive
>
> > On Thu, Apr 21, 2016 at 10:30 PM, Ady via Syslinux <syslinux at zytor.com> wrote:
> > > Would someone please be so kind to explain / describe the PXERETRY
> > > directive?
> >
> > $ git grep -ni pxeretry
> > com32/elflink/ldlinux/readconfig.c:1305: else if (looking_at(p, "pxeretry"))
> > com32/elflink/ldlinux/readconfig.c:1306: PXERetry =
> > atoi(skipspace(p + 8));
> >
> > core...
2016 Apr 27
0
PXERETRY directive
On Thu, Apr 21, 2016 at 10:30 PM, Ady via Syslinux <syslinux at zytor.com> wrote:
> Would someone please be so kind to explain / describe the PXERETRY
> directive?
$ git grep -ni pxeretry
com32/elflink/ldlinux/readconfig.c:1305: else if (looking_at(p, "pxeretry"))
com32/elflink/ldlinux/readconfig.c:1306: PXERetry =
atoi(skipspace(p + 8));
core/fs/pxe/pxe.c:275: int i = PXERetry;
It's used in pxe_searchdir() to af...
2016 Apr 27
0
PXERETRY directive
...2:43:37PM +0200, Geert Stappers via Syslinux wrote:
> On Wed, Apr 27, 2016 at 06:23:38AM -0400, Gene Cumm via Syslinux wrote:
> > On Thu, Apr 21, 2016 at 10:30 PM, Ady via Syslinux <syslinux at zytor.com> wrote:
> > > Would someone please be so kind to explain / describe the PXERETRY
> > > directive?
> >
> > $ git grep -ni pxeretry
>
> -i ignore case ("thanks" said the person who exact case matching search )
-i ignore case ("thanks" said the person who did exact case matching search )
> > com32/elflink/ldlin...
2016 May 11
1
PXERETRY directive
> On Wed, May 11, 2016 at 9:18 AM, Ady via Syslinux <syslinux at zytor.com> wrote:
> >> > _ Is it valid for pxelinux.0 only? What about lpxelinux.0? What about
> >> > syslinux.efi? Others?
> >>
> >> Both pxelinux.0 and lpxelinux.0. The others have the variable but no
> >> functions that read it.
> >>
> >
> > Thank
2016 May 11
2
PXERETRY directive
> > _ Is it valid for pxelinux.0 only? What about lpxelinux.0? What about
> > syslinux.efi? Others?
>
> Both pxelinux.0 and lpxelinux.0. The others have the variable but no
> functions that read it.
>
Thank you very much.
This is the first time I read about a directive that is usable under
BIOS but not under UEFI.
Is
./com32/elflink/ldlinux/readconfig.c
only for
2016 May 11
0
PXERETRY directive
On Wed, May 11, 2016 at 9:18 AM, Ady via Syslinux <syslinux at zytor.com> wrote:
>> > _ Is it valid for pxelinux.0 only? What about lpxelinux.0? What about
>> > syslinux.efi? Others?
>>
>> Both pxelinux.0 and lpxelinux.0. The others have the variable but no
>> functions that read it.
>>
>
> Thank you very much.
>
> This is the first time
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi,
These patches contain support for some features that are already in
Syslinux 4 but weren't working properly on the elflink branch. It's
another step closer to feature parity with Syslinux 4.
Having to jump through the comboot API for localboot support is less
than ideal and I'll eventually fix that, probably when we move a big
chunk of code from asm to C.
Also, there's a
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com>
Since we can't use __intcall() for EFI, and since we can now have the
ELF module code resolve all our symbols at runtime, we should delete
as many references to __intcall() as possible and just access the
symbols directly.
The most interesting patch is the support for weak symbols. We need to
be able to reference derivative-specific
2019 Jul 09
0
[PATCH] core: Add support for BLS Type 1 entries
...NULL;
+char *bls1_pinmax = NULL;
+int bls1_padver = BLS1_PADVER;
+int bls1_ascend = BLS1_ASCEND;
+int bls1_shwlbl = BLS1_SHWLBL;
+
const struct menu_parameter mparm[NPARAMS] = {
[P_WIDTH] = {"width", 0},
[P_MARGIN] = {"margin", 10},
@@ -641,6 +653,7 @@ extern uint16_t PXERetry;
static struct labeldata ld;
static int parse_main_config(const char *filename);
+static int parse_bls1_dir(const char *dirname);
static char *is_kernel_type(char *cmdstr, enum kernel_type *type)
{
@@ -1239,6 +1252,40 @@ static void parse_config_file(FILE * f)
default_cmd = refstrdup(...
2012 Aug 14
1
[GIT PULL] elflink fixes
...#39;\r');
- ireg.eax.b[1] = 0x02;
- ireg.edx.b[0] = c;
- __intcall(0x21, &ireg, NULL);
+ writechr(c);
}
void myputs(const char *str)
diff --git a/core/diskfs.inc b/core/diskfs.inc
index 02382cc..dcbc924 100644
--- a/core/diskfs.inc
+++ b/core/diskfs.inc
@@ -109,9 +109,9 @@ PXERetry dw 0 ; Extra PXE retries
section .data16
global SerialNotice
SerialNotice db 1 ; Only print this once
+ global IPAppends, numIPAppends
%if IS_PXELINUX
extern IPOption
- global IPAppends, numIPAppends
alignz 2
IPAppends dw IPOption
numIPAppends equ ($-IPAppends)/2
diff --git a/...
2015 Jul 22
13
[PULL 0/8] MultiFS suppport for BIOS and EFI
So last week I was wondering if XFS was still working -- even with its
last on-disk structure changes -- and it _suprisingly_ worked as
expected. Right, now I can finally get rid of GRUB and use Syslinux to
boot my Linux on EFI from a rootfs with xfs. Shit, I have two
partitions (the first one being the required ESP) so there is no way to
access the other partitions since because Syslinux does not