search for: local_boot16

Displaying 4 results from an estimated 4 matches for "local_boot16".

Did you mean: local_boot
2013 Jul 04
0
Syslinux 6.01 released
...o elflink efi, udp: use single local port for each connection efi, udp: fill out the IP TTL field efi, tcp: fill out the IP TTL field Merge branch 'ipappend-fix-for-mfleming' of git://github.com/geneC/syslinux into elflink PXELINUX: implement our own version of local_boot16 bios, font: zero input registers to get font ldlinux: fix INCLUDE regression com32: Catch up with GCC changes to ctor/dtor funcs Merge tag 'syslinux-5.11-pre3' into firmware conio: Fix pollchar() for serial console efi: update derivative info on boot...
2013 Jul 19
3
Illegal OpCode on PXE exit with syslinux-6.0{1,2}
Hi, > Do you see the same error with 5.11-pre8? Yes, I do :( -- Regards, Igor
2014 Jul 23
3
DELL E6510 pxelinux issues
..._Dell_Latitude_E6400> and neither version works. The behavior differs between the laptop rebooting automatically and getting stuck. I checked all versions up to 6.02, which finally makes it work again thanks to 398cee85e1835b77e1b83a01fc20587bee8cc578 "PXELINUX: implement our own version of local_boot16". Good. 2. But since syslinux-5.10 the TFTP is very slow: Loading a 3 MiB Linux kernel and 72 MiB InitRD now takes 43s+16m instead of 1s+30s. Using syslinux-5.01 is the last version being fast, but all versions since 4.00 show file corruption: Loading the Linux kernel succeeds, but the the ex...
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...7 +11,11 @@ * ----------------------------------------------------------------------- */ #include <sys/cpu.h> +#include <sys/io.h> +#include <string.h> #include <core.h> +#include <fs.h> +#include <bios.h> /* * localboot.c @@ -32,7 +36,6 @@ extern void local_boot16(void); void local_boot(int16_t ax) { com32sys_t ireg, oreg; - unsigned long data; int i; vgaclearmode(); @@ -73,7 +76,7 @@ void local_boot(int16_t ax) kaboom(); cli(); /* Abandon hope, ye who enter here */ - memcpy(0x07C00, trackbuf, 512); + memcpy((void *)0x07C00, trackbuf, 512)...