mirror of
https://github.com/ipxe/ipxe
synced 2026-05-09 18:00:12 +03:00
[comboot] Match version strings to SYSLINUX style
In the actual SYSLINUX suite's comboot implementation, the version string is prefixed by CR LF, and the copyright string has a leading space. Some tools (specifically HDT) assume these padding characters exist, so we should probably return strings in a similar format. Signed-off-by: Michael Brown <mcb30@etherboot.org>
This commit is contained in:
committed by
Michael Brown
parent
f5f8ee00fc
commit
12defeca99
@@ -43,7 +43,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
|||||||
#include "config/serial.h"
|
#include "config/serial.h"
|
||||||
|
|
||||||
/** The "SYSLINUX" version string */
|
/** The "SYSLINUX" version string */
|
||||||
static char __data16_array ( syslinux_version, [] ) = "gPXE " VERSION;
|
static char __data16_array ( syslinux_version, [] ) = "\r\ngPXE " VERSION;
|
||||||
#define syslinux_version __use_data16 ( syslinux_version )
|
#define syslinux_version __use_data16 ( syslinux_version )
|
||||||
|
|
||||||
/** The "SYSLINUX" copyright string */
|
/** The "SYSLINUX" copyright string */
|
||||||
|
|||||||
Reference in New Issue
Block a user