summaryrefslogtreecommitdiff
path: root/com32/lib/sys
Commit message (Collapse)AuthorAgeFilesLines
* add missing '\n' to dprintfJonathan Boeing2015-05-031-2/+2
| | | | Signed-off-by: Jonathan Boeing <jonathan.n.boeing@gmail.com>
* ansi: switch cindex type to attr_tJames Buren2013-12-111-1/+2
| | | | | | To fully support color tables with more than 256 entries Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* module: convert to dprintf() to aid debuggingsyslinux-6.02-pre14Matt Fleming2013-07-263-16/+23
| | | | | | | | dprintf() is much more useful than DBG_PRINT() when trying to figure out where a module is failing to load because we can enable the debug statements at runtime. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* firmware: s/set_mode/text_mode/Matt Fleming2013-07-041-1/+1
| | | | | | | We only ever use ->set_mode() to transition into text mode, so rename it to something more suitable and drop the unused 'mode' argument. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* ansi: partially revert 937f816addb214ca4c8c1ce977e0357eafa8c617Matt Fleming2013-06-191-5/+1
| | | | | | | | | Commit ("ansi: Improve EFI console support") broke writing to the display under BIOS in an attempt to get things working under EFI. Since the 'cols' and 'rows' arguments aren't used by the EFI console code, revert that chunk of the commit to restore the BIOS functionality. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* Merge tag 'syslinux-5.11-pre2' into firmwareMatt Fleming2013-06-171-24/+12
|\ | | | | | | | | | | | | | | syslinux-5.11-pre2 Conflicts: core/elflink/load_env32.c version
| * PATH: use a linked list internallysyslinux-5.11-pre1Matt Fleming2013-06-131-24/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In retrospect, choosing the colon character as the entry separator for the PATH directive was not a smart move, as that character is also used in TFTP-style paths. This conflict manifests as PXELINUX being unable to find and load files. An example dnsmasq log looks like, dnsmasq-tftp: sent /arch/boot/syslinux/lpxelinux.0 to 192.168.0.90 dnsmasq-tftp: file /arch/ldlinux.c32 not found dnsmasq-tftp: file /arch//ldlinux.c32 not found dnsmasq-tftp: file /arch//boot/isolinux/ldlinux.c32 not found dnsmasq-tftp: file /arch//isolinux/ldlinux.c32 not found dnsmasq-tftp: file /arch//boot/syslinuxldlinux.c32 not found dnsmasq-tftp: sent /arch//boot/syslinux/ldlinux.c32 to 192.168.0.90 dnsmasq-tftp: error 0 No error, file close received from 192.168.0.90 dnsmasq-tftp: failed sending /arch//boot/syslinux/ldlinux.c32 to 192.168.0.90 dnsmasq-tftp: sent /arch/boot/syslinux/archiso.cfg to 192.168.0.90 dnsmasq-tftp: sent /arch/boot/syslinux/whichsys.c32 to 192.168.0.90 dnsmasq-tftp: file /arch/libcom32.c32 not found dnsmasq-tftp: file /arch//libcom32.c32 not found dnsmasq-tftp: file /arch/libcom32.c32 not found dnsmasq-tftp: file /arch//arch//boot/syslinux/libcom32.c32 not found The last line of the log is the indication that there's a problem. Internally, Syslinux adds the location of ldlinux.c32 to PATH by querying the current working directory once ldlinux.c32 is successfully loaded. Under PXELINUX that means the initial PATH string will be, "::/arch/boot/syslinux/" The PATH parsing code doesn't know how to correctly parse the "::" string and hence, the file is searched for relative to the 210 dhcp option directory - /arch/. Implement PATH with a linked list which *greatly* simplifies the path code, and means we no longer have to parse strings backwards and forwards. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | Merge tag 'syslinux-5.10-pre2' into for-hpa/elflink/firmwareMatt Fleming2013-03-222-2/+2
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | syslinux-5.10-pre2 Conflicts: NEWS com32/include/netinet/in.h com32/include/sys/cpu.h com32/lib/Makefile core/Makefile core/fs/diskio.c core/fs/pxe/pxe.h core/init.c core/mem/free.c core/mem/malloc.c mk/devel.mk version
| * Merge branch 'lwip' into elflinkMatt Fleming2013-02-262-2/+2
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Welcome to Syslinux 5.10. Conflicts: NEWS com32/lib/Makefile com32/lib/sys/open.c com32/lib/syslinux/ipappend.c com32/modules/Makefile com32/modules/prdhcp.c core/Makefile core/cmdline.inc core/com32.inc core/comboot.inc core/configinit.inc core/fs/chdir.c core/fs/fs.c core/fs/pxe/dnsresolv.c core/fs/pxe/pxe.c core/fs/pxe/pxe.h core/idle.c core/include/ctype.h core/init.inc core/mem/init.c core/parseconfig.inc core/runkernel.inc core/syslinux.ld core/ui.inc doc/comboot.txt version
| | * core: pass the file flags down through the stackH. Peter Anvin2011-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Pass the file flags down through the stack. This allows us to distinguish between open for read, open for write, or opendir in the low-level filesystem functions; this will matter for the PXE methods. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
| | * PXE Cleanups, allow for 128 open filesH. Peter Anvin2011-04-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Clean up dead code in the PXE stack. The buffer assignment no longer limits the number of open files either, so raise it to something more than reasonable. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* | | Merge tag 'syslinux-5.01' into firmwaresyslinux-6.00-pre4Matt Fleming2013-01-298-529/+26
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile NEWS com32/cmenu/Makefile com32/elflink/ldlinux/Makefile com32/gfxboot/Makefile com32/gpllib/Makefile com32/include/sys/module.h com32/lib/Makefile com32/lib/sys/module/elf_module.c com32/menu/Makefile com32/rosh/Makefile com32/samples/Makefile core/init.c mk/elf.mk Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | module: Replace cur_module with module_current()syslinux-5.01-pre4Matt Fleming2013-01-232-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's easy for cur_module and prev_module to get out of sync with reality (the actual module that is running), so add module_current() which returns the module at the head of the module_list, i.e. the module that was loaded most recently. Better still, by using the list we don't have to do any kind of stacking of module pointers ourselves. This fixes a bug where cur_module contained a stale pointer (the module had actually been unloaded) but the pointer value had since been reallocated for a new module in spawn_load(), meaning that the following check, if (!strcmp(cur_module->name, module->name)) was always going to be true, even though *no* module was actually loaded at this point as we were reloading ldlinux.c32 from start_ldlinux(). This could have been fixed with a NULL-assignment after module_unload(), but using the modules_head list to detect the current module is much cleaner. Note that the core module loaded in load_env32() is always on the list, therefore module_current() will always return a valid pointer. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | module: Check for NULL ctors and dtorsMatt Fleming2013-01-232-2/+2
| | | | | | | | | | | | | | | | | | Don't dereference a NULL ctor/dtor as that can cause us to crash. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | module: Check the return value of malloc()Matt Fleming2013-01-231-0/+8
| | | | | | | | | | | | | | | | | | | | | Instead of blindly writing through a possible-NULL pointer, check the return value of malloc(). Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | elf: remove long-since-obsolete shallow module machineryH. Peter Anvin2013-01-172-185/+0
| | | | | | | | | | | | | | | | | | | | | Meant to handle symbols exported from the core, but we just pregenerate the dynamic section instead. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
| * | module: Check return value of malloc()Matt Fleming2013-01-161-0/+5
| | | | | | | | | | | | | | | | | | | | | And return NULL after printing an appropriate error message if the call failed. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | module: Allow .c32 files to execute themselvesMatt Fleming2013-01-101-14/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Historically, .c32 files had to explicitly link against ldlinux.c32 in order to use its exported symbols. This lead to the undesirable situation during module dependency resolution where loading, e.g. menu.c32, would cause ldlinux.c32 to be reloaded, thus re-executing its main() function and dropping the user at a prompt instead of executing menu.c32. commit 1357b7e62706 ("elflink: Don't reload the current EXEC_MODULE module") was the solution to this problem, since you don't need to reload a module to link against it's symbols. Unfortunately, while this commit was intended to stop ldlinux.c32 being reloaded, it also broke the use case where a .c32 wants to load itself, e.g. when vesamenu.c32 wants to execute vesamenu.c32 with a different config. Luckily, modules no longer need to include ldlinux.c32 in their dependency list, since ldlinux.c32 is *always* loaded and any symbols can be automatically resolved. Which means that the check in spawn_load() can be deleted. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | Revert "vesa: Correct screencpy() prototype"Matt Fleming2013-01-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 15a67011987c341814533ac4d8e23c9a72dc7605, because as Peter points out, The objects are uint32_t and so the prototype is correct. It should not "leak" outside the screencpy function that we play ugly tricks with these pointers; that is better handled by an internal cast. So do the necessary casting inside bios_vesacon_screencpy(). Cc: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | com32: Fix merge botchMatt Fleming2013-01-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Somehow to the printf() statement that warns about undefined symbols when loading modules was deleted when syslinux-5.00 was merged, so restore it. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | Merge tag 'syslinux-5.00' into firmwaresyslinux-6.00-pre3Matt Fleming2012-12-077-24/+72
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile com32/elflink/ldlinux/Makefile com32/lib/sys/module/elf_module.c core/cleanup.c core/comboot.inc core/conio.c core/fs/fs.c core/init.c core/mem/free.c core/mem/malloc.c core/timer.inc diag/geodsp/Makefile extlinux/main.c mk/embedded.mk modules/Makefile Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | module: Fix incorrect list_entry() useMatt Fleming2012-11-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Correct the bogus use of list_entry() that was introduced in commit 8f1c64acf9c6 ("module: Stop silently failing to load dependency modules"). Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | module: Stop silently failing to load dependency modulessyslinux-5.00-pre12Matt Fleming2012-11-291-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We should be checking the return value of spawn_load() when loading a module's dependencies and printing some kind of an error message if they fail to load (for instance if the file is missing) and returning an error to the caller. Track the most recently loaded module in 'head' before we begin loading dependencies. That way we can unload any dependencies in the error path that were successfully loaded. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | ldlinux: Complain to user on failure to perform file operationsMatt Fleming2012-11-291-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If we fail to chdir or to execute a COM32 file we should inform the user so that they can debug the problem. We don't currently print anything if the user tries to execute a regular file, such as a config file, as an COM32 image. We also shouldn't be returning the exit value of the module from spawn_load(), because we have no way of doing anything useful with it, and just because a main() function returns -1 doesn't mean it failed to run. Modules need to take care of printing any error messages themselves. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | module: Append '/' to PATH strings if missingMatt Fleming2012-11-291-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | We shouldn't be appending a filename to any path string that isn't terminated by a '/', otherwise we end up searching for files like '/isolinuxpwd.c32' Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | Merge branch 'coverity' into elflinksyslinux-5.00-pre11Matt Fleming2012-11-274-14/+15
| |\ \
| | * | module: Fix off-by-one error in findpath()Matt Fleming2012-11-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to make sure that 'path' still has enough space to write the trailing NUL-byte. Without this patch it's possible to write a NUL-byte past the end of the on-stack buffer. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| | * | module: Fix memory leak in spawn_load()Matt Fleming2012-11-271-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If for some reason we fail to load a module then we need to free the memory allocated to that module. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| | * | screensize: Dereference pointers when checking cols/rowsMatt Fleming2012-11-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dereference 'rows' and 'cols' to check whether the data they point to is zero, which would indicate the screen size is bogus, instead of checking if they point to NULL. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| | * | vesa: Fix double close() bug in vesacon_load_background()Matt Fleming2012-11-151-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We always call fclose() on 'fp' if fopen() was successful, so delete the extraneous fclose() call in read_jpeg_file(). Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | | module: Correct the size of the module symbol tableMatt Fleming2012-11-271-7/+21
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were incorrectly grovelling around in the GNU hash table for the size of the symbol table. Instead we need to map the section headers and search for the SHT_DYNSYM entry. This bug caused hdt.c32 to refuse to load as some symbols were never resolved because not all of the SHT_UNDEF symbols in hdt.c32 were processed. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | sys/vesa: Modularise common vesa codeMatt Fleming2012-11-1516-3000/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There's lots of the vesa infrastructure that can be shared for both BIOS and EFI, so share the things that are common and split out the things that are not into firmware-specific functions and use the 'firmware' structure to access them. This commit is part of a series of changes that removes all EFI-specific code from everywhere except efi/, which means we can delete inclusion of any gnu-efi header files and remove gnu-efi paths from CFLAGS. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | vesa: Change the prototype of __vesacon_init()Matt Fleming2012-11-052-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | commit 97402a0a1639 ("efi, vesa: Fix vesa initialization and video mode resolution") should have updated the BIOS version of the vesa code too. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | i915resolution.c: cast to 64-bit sized ptrMatt Fleming2012-11-051-1/+1
| | | | | | | | | | | | Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | screencpy.c: Delete unused variables and cleanupMatt Fleming2012-10-261-86/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Delete unused variable 'winn' * Delete unused variable 'win_pos' * Mark parameter __unused * Delete unused variable 'l' * Delete unused variable 'omask' * Delete BIOS code * Delete unused variable 'win_size' * Delete set_window_pos unused function Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | initvesa.c: Delete unused variables (set but not used) and cleanupMatt Fleming2012-10-261-253/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Delete set but not used variables * Rip out non-EFI code * Delete defined but not used function. * Defined but not used variables. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | efi: Fix warning about discarding const qualifierMatt Fleming2012-10-261-1/+2
| | | | | | | | | | | | | | | | | | | | | Cast away the const-ness of cp865_8x16_font_data when passing it to unpack_font() so that gcc doesn't generate a warning. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | efi, vesa: Fix vesa initialization and video mode resolutionChandramouli Narayanan2012-09-063-12/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed undefined symbol dprintf for production build. Now dprintf.h is included so that both debug and production builds are ok. Fixed the initialization of mode_info structure to point to a valid GOP mode structure prior to printing it. Fixed the case when the requested video mode resolution is unsupported on a platform. Essentially, VESA initialization is passed a desirable video resolution. The underlying platform may either grant it or return a system supported default value. This fix is necessitated by EFI-enabled platforms. Appropriate changes to callers of the vesa initialization and the BIOS centric code are made as well. Signed-off-by: Chandramouli Narayanan <chandramouli.narayanan@intel.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | Merge branch 'elflink' into for-hpa/elflink/firmwareMatt Fleming2012-09-051-3/+3
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | We need to pick up a couple of bug fixes, one of which causes some machines to hang because we're walking out of the bounds of an ELF symbol table. Conflicts: com32/lib/Makefile core/init.c
| * | module: Fixed the upper limit in symbol table walk throughChandramouli Narayanan2012-09-051-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | Number of entries in symbol table should be sized by the table entry size. Without this, the loading of modules takes forever due to walking all over the memory. Signed-off-by: Chandramouli Narayanan <chandramouli.narayanan@intel.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | efi: Fix the screen setup for Graphics Output ProtocolChandramouli Narayanan2012-09-053-34/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Earlier version of this routine was erroneously handling locating the protocol. The check for error conditions have been fixed. The handling of more than one GOP handle has been fixed as well. Added copyright info to the file cp865_8x16.h. Fixed vesacon_set_mode() to use malloc() instead of lmalloc() and cleaned up debug traces. Fixed __vesacon_copy_to_screen() by directly writing to the frame buffer. Signed-off-by: Chandramouli Narayanan <chandramouli.narayanan@intel.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | module: Define __{ctors,dtors}_end symbolsChandramouli Narayanan2012-08-222-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | This patch fixes linker script for module initialization. The old __module_*_ptr symbols are no longer used, instead we now have an array of constructors and destructors. Signed-off-by: Chandramouli Narayanan <chandramouli.narayanan@intel.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | module: Consolidate lots of 32/64-bit codeMatt Fleming2012-08-136-1057/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | Only carry different code for i386/x86-64 if we really need it. There's plenty of code that can be shared between the two which eases the maintenance burden and also makes it easier to merge code from other branches which don't have the 32/64 split. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | efi, ansi: Improve console handling even further (e.g. scrolling support)Matt Fleming2012-08-131-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were quite a few trivial bugs in the EFI console code, such as mixing up column and row arguments and implementing functions with different semantics when compared with the BIOS code. With these changes console output now looks the same as the BIOS version, with output scrolling down the screen instead of overwriting existing text at the top whenever it incremented past the last row. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | Merge remote-tracking branch 'mfleming/elflink' into for-hpa/elflink/firmwareMatt Fleming2012-08-132-5/+34
|\ \ \ | |/ / | | | | | | | | | Conflicts: com32/lib/sys/module/common.c
| * | ldlinux: Use findpath() to lookup filenamessyslinux-5.00-pre7Matt Fleming2012-08-071-1/+1
| | | | | | | | | | | | | | | | | | | | | We should use the same method of opening files as the module code when searching for extensions. In particular, we should search all of PATH. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | rawcon_read: Fix reading high part of input keysMatt Fleming2012-08-021-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 8486142cf304 ("elflink: Replace __intcall() with direct function calls") made the mistake of zero'ing the high part of the input key on every invocation of __rawcon_read() instead of preserving it across calls like the old code, which lead to function keys such as KEY_UP, KEY_DOWN, etc not working. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
| * | ldlinux: Return to command prompt after loading COM32Matt Fleming2012-08-021-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old COM32 loading code would drop the user at a command prompt once execution returned from the COM32 amodule. We need to replicate this because most callers of execute() don't expect it to return. This bug was noticed when loading a COM32 module from vesamenu.c32. Once execution returned from the COM32 module the display became garbled because no code exists to reinitialise the screen for VGA. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
* | | Merge remote-tracking branch 'mfleming/elflink' into for-hpa/elflink/firmwareMatt Fleming2012-07-3022-1735/+513
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile com32/elflink/ldlinux/adv.c com32/elflink/ldlinux/kernel.c com32/elflink/ldlinux/ldlinux.c com32/include/bitsize/stddef.h com32/include/bitsize/stdint.h com32/include/stdint.h com32/include/sys/module.h com32/include/sys/x86_64/bitops.h com32/include/syslinux/linux.h com32/lib/Makefile com32/lib/sys/ansicon_write.c com32/lib/sys/module/elfutils.h com32/lib/sys/vesa/efi/fill.h com32/lib/syslinux/load_linux.c com32/lib/syslinux/serial.c com32/lib/syslinux/shuffle.c core/conio.c core/elflink/config.c core/elflink/load_env32.c core/graphics.c core/include/graphics.h core/init.c core/pxelinux.asm mk/elf.mk mk/lib.mk
| * | Use pxe_call() instead of COMBOOT APIMatt Fleming2012-07-201-10/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This involved some other changes, such as passing flags to unload_pxe() now that we only call it from C code, and hence don't need to update KeepPXE. We also needed to move some of the pxe function prototypes to com32/include/syslinux/pxe_api.h because they are now referenced outside of the core. Signed-off-by: Matt Fleming <matt.fleming@intel.com>