[syslinux:master] core: use MY_NAME for syslinux_banner

syslinux-bot for Sebastian Herbszt herbszt at gmx.de
Mon Mar 29 13:27:26 PDT 2010


Commit-ID:  eaa8dfe4150e12dcebf327f59e18a4be5fda3207
Gitweb:     http://syslinux.zytor.com/commit/eaa8dfe4150e12dcebf327f59e18a4be5fda3207
Author:     Sebastian Herbszt <herbszt at gmx.de>
AuthorDate: Sun, 21 Mar 2010 13:23:17 +0100
Committer:  H. Peter Anvin <hpa at zytor.com>
CommitDate: Mon, 29 Mar 2010 13:12:45 -0700

core: use MY_NAME for syslinux_banner

Use MY_NAME for syslinux_banner in isolinux and pxelinux.
This is already done in ldlinux and extlinux.

Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
Signed-off-by: H. Peter Anvin <hpa at zytor.com>


---
 core/isolinux.asm |    2 +-
 core/pxelinux.asm |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/isolinux.asm b/core/isolinux.asm
index ef7d92d..23429bd 100644
--- a/core/isolinux.asm
+++ b/core/isolinux.asm
@@ -1034,7 +1034,7 @@ writestr_early	equ writestr
 ; Data that needs to be in the first sector
 ; -----------------------------------------------------------------------------
 
-syslinux_banner	db CR, LF, 'ISOLINUX ', VERSION_STR, ' ', DATE_STR, ' ', 0
+syslinux_banner	db CR, LF, MY_NAME, ' ', VERSION_STR, ' ', DATE_STR, ' ', 0
 copyright_str   db ' Copyright (C) 1994-'
 		asciidec YEAR
 		db ' H. Peter Anvin et al', CR, LF, 0
diff --git a/core/pxelinux.asm b/core/pxelinux.asm
index 929ab67..55444db 100644
--- a/core/pxelinux.asm
+++ b/core/pxelinux.asm
@@ -2872,7 +2872,7 @@ tftpprefix_msg	db 'TFTP prefix: ', 0
 localboot_msg	db 'Booting from local disk...', CR, LF, 0
 trying_msg	db 'Trying to load: ', 0
 default_str	db 'default', 0
-syslinux_banner	db CR, LF, 'PXELINUX ', VERSION_STR, ' ', DATE_STR, ' ', 0
+syslinux_banner	db CR, LF, MY_NAME, ' ', VERSION_STR, ' ', DATE_STR, ' ', 0
 cfgprefix	db 'pxelinux.cfg/'		; No final null!
 cfgprefix_len	equ ($-cfgprefix)
 



More information about the Syslinux-commits mailing list