summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config/branding.h9
-rw-r--r--src/usr/autoboot.c2
2 files changed, 10 insertions, 1 deletions
diff --git a/src/config/branding.h b/src/config/branding.h
index d1d4c4e1b..cca68b6e3 100644
--- a/src/config/branding.h
+++ b/src/config/branding.h
@@ -29,6 +29,15 @@ FILE_LICENCE ( GPL2_OR_LATER );
#define PRODUCT_URI "http://ipxe.org"
/*
+ * Tag line
+ *
+ * If your PRODUCT_SHORT_NAME is longer than the four characters used
+ * by "iPXE", then the standard tag line "Open Source Network Boot
+ * Firmware" is unlikely to fit neatly onto the screen.
+ */
+#define PRODUCT_TAG_LINE "Open Source Network Boot Firmware"
+
+/*
* Error messages
*
* iPXE error messages comprise a summary error message
diff --git a/src/usr/autoboot.c b/src/usr/autoboot.c
index 31b1ff6e2..4bcb64d4c 100644
--- a/src/usr/autoboot.c
+++ b/src/usr/autoboot.c
@@ -552,7 +552,7 @@ void ipxe ( struct net_device *netdev ) {
*
*/
printf ( NORMAL "\n\n" PRODUCT_NAME "\n" BOLD PRODUCT_SHORT_NAME " %s"
- NORMAL " -- Open Source Network Boot Firmware -- "
+ NORMAL " -- " PRODUCT_TAG_LINE " -- "
CYAN PRODUCT_URI NORMAL "\nFeatures:", product_version );
for_each_table_entry ( feature, FEATURES )
printf ( " %s", feature->name );