Displaying 4 results from an estimated 4 matches for "pxe_idle_init".
2009 Sep 03
1
fsc branch: loop in pxe_idle_init() on qemu with pcnet card
syslinux-4.00-pre5-10-gdc10f7b locks up on qemu with pcnet card.
The problem seems to be in pxe_idle_init(). Added debug output:
dev_id: 10222000
before while loop h: 10 l: 0
h: 10 l: 0
e: 14e4166a
h modified
h: 350482265 l:0
h seems bogus as there are only 11 entries in pxe_need_idle_drain.
if (e == dev_id) {
found = true;
break;
} else if (e < dev_id) {...
2013 Mar 07
4
Syslinux-5.10-pre1
...ess to support infiniband.
lwip: Clean up the initialization sequence
pxe: Remove the lwip_test code
undiif: Theoretical support for infiniband.
core: thread: Implement polling for wakeups.
pxe: Cleanup interrupt handling making it reliabe and in spec
pxe: Neuter pxe_idle_init
undiif: Unneeded debugging functions.
Gene Cumm (13):
lwip: undiif: Fix #error typo
lwip: undiif: Fix debug option addressing in update_arp_entry()
lwip:undiif: Use tcpip_input() rather than ethernet_input()/ip_input()
lwip:undiif: Add interface with tcpip_input() cal...
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 Aug 14
1
[GIT PULL] elflink fixes
...,12 @@ static inline uint32_t gateway(uint32_t ip)
/* pxe.c */
bool ip_ok(uint32_t);
-int pxe_call(int, void *);
/* dhcp_options.c */
void parse_dhcp(const void *, size_t);
/* dnsresolv.c */
int dns_mangle(char **, const char *);
-uint32_t dns_resolv(const char *);
/* idle.c */
void pxe_idle_init(void);
diff --git a/core/hello.c b/core/hello.c
index 5b22478..d30fc3b 100644
--- a/core/hello.c
+++ b/core/hello.c
@@ -9,14 +9,10 @@
void myputchar(int c)
{
- static com32sys_t ireg;
-
if (c == '\n')
myputchar('\r');
- ireg.eax.b[1] = 0x02;
- ireg.edx.b[0] = c...