diff options
| author | Michael Brown | 2015-02-11 14:02:52 +0100 |
|---|---|---|
| committer | Michael Brown | 2015-02-11 15:11:22 +0100 |
| commit | 544a6a9769112661b7831e114db4bf06c13baa67 (patch) | |
| tree | 57f179d752eea4c839e52740bfeafc7843476230 /src/arch | |
| parent | [build] Move branding information to config/branding.h (diff) | |
| download | ipxe-544a6a9769112661b7831e114db4bf06c13baa67.tar.gz ipxe-544a6a9769112661b7831e114db4bf06c13baa67.tar.xz ipxe-544a6a9769112661b7831e114db4bf06c13baa67.zip | |
[build] Use PRODUCT_SHORT_NAME for end-user visible strings
Use PRODUCT_SHORT_NAME instead of a hardcoded "iPXE" for strings which
are typically shown in the user interface.
Note that this only allows for customisation of the user interface.
Where the "iPXE" string serves a technical purpose (such as in the
HTTP User-Agent), the string cannot be customised.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch')
| -rw-r--r-- | src/arch/i386/prefix/romprefix.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/i386/prefix/romprefix.S b/src/arch/i386/prefix/romprefix.S index 03ab8c78b..d1ceb0b43 100644 --- a/src/arch/i386/prefix/romprefix.S +++ b/src/arch/i386/prefix/romprefix.S @@ -590,7 +590,8 @@ init_message: .ascii "\n" .ascii PRODUCT_NAME .ascii "\n" - .asciz "iPXE (http://ipxe.org)" + .ascii PRODUCT_SHORT_NAME + .asciz " (http://ipxe.org)" .size init_message, . - init_message .ifeqs BUSTYPE, "PCIR" init_message_pci: |
