mirror of
https://github.com/ipxe/ipxe
synced 2025-12-27 10:02:42 +03:00
Some binutils versions will drag in an object to satisfy the entry symbol; some won't. Try to cope with this exciting variety of behaviour by ensuring that all entry symbols are unique. Remove the explicit inclusion of the prefix object on the linker command line, since the entry symbol now provides all the information needed to identify the prefix. Signed-off-by: Michael Brown <mcb30@ipxe.org>
11 lines
343 B
ArmAsm
11 lines
343 B
ArmAsm
/*****************************************************************************
|
|
* PXE prefix that keep the UNDI portion of the PXE stack present
|
|
*****************************************************************************
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER )
|
|
|
|
#define PXELOADER_KEEP_UNDI
|
|
#define _pxe_start _kpxe_start
|
|
#include "pxeprefix.S"
|