search for: pxep

Displaying 3 results from an estimated 3 matches for "pxep".

Did you mean: ptep
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
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...- a/com32/modules/pxechn.c +++ b/com32/modules/pxechn.c @@ -1031,10 +1031,7 @@ int pxe_restart(char *ifn) } printf(" Attempting to boot '%s'...\n\n", pxe.fn); memset(&reg, 0, sizeof reg); - if (sizeof(t_PXENV_TFTP_READ_FILE) <= __com32.cs_bounce_size) { - pxep = __com32.cs_bounce; - memset(pxep, 0, sizeof(t_PXENV_RESTART_TFTP)); - } else if (!(pxep = lzalloc(sizeof(t_PXENV_RESTART_TFTP)))){ + if (!(pxep = lzalloc(sizeof(t_PXENV_RESTART_TFTP)))){ dprintf("Unable to lzalloc() for PXE call structure\n"); goto ret; } @@ -1055,8 +1052...
2012 Aug 14
1
[GIT PULL] elflink fixes
...(PXENV_GET_CACHED_INFO, ci); if (ci->Status != PXENV_STATUS_SUCCESS) { dprintf("PXE Get Cached Info failed: %d\n", ci->Status); @@ -1015,7 +1009,6 @@ int pxe_restart(char *ifn) { int rv = 0; struct pxelinux_opt pxe; - com32sys_t reg; t_PXENV_RESTART_TFTP *pxep; /* PXENV callback Parameter */ pxe.fn = ifn; @@ -1030,7 +1023,6 @@ int pxe_restart(char *ifn) goto ret; } printf(" Attempting to boot '%s'...\n\n", pxe.fn); - memset(&reg, 0, sizeof reg); if (!(pxep = lzalloc(sizeof(t_PXENV_RESTART_TFTP)))){ dpri...