summaryrefslogtreecommitdiffstats
path: root/src/hci/shell.c
diff options
context:
space:
mode:
authorMichael Brown2015-02-11 14:02:52 +0100
committerMichael Brown2015-02-11 15:11:22 +0100
commit544a6a9769112661b7831e114db4bf06c13baa67 (patch)
tree57f179d752eea4c839e52740bfeafc7843476230 /src/hci/shell.c
parent[build] Move branding information to config/branding.h (diff)
downloadipxe-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/hci/shell.c')
-rw-r--r--src/hci/shell.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hci/shell.c b/src/hci/shell.c
index c1a54384..c91d22e1 100644
--- a/src/hci/shell.c
+++ b/src/hci/shell.c
@@ -28,6 +28,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <ipxe/command.h>
#include <ipxe/parseopt.h>
#include <ipxe/shell.h>
+#include <config/branding.h>
/** @file
*
@@ -36,7 +37,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*/
/** The shell prompt string */
-static const char shell_prompt[] = "iPXE> ";
+static const char shell_prompt[] = PRODUCT_SHORT_NAME "> ";
/**
* "help" command