]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[build] Use PRODUCT_SHORT_NAME for end-user visible strings
authorMichael Brown <mcb30@ipxe.org>
Wed, 11 Feb 2015 13:02:52 +0000 (13:02 +0000)
committerMichael Brown <mcb30@ipxe.org>
Wed, 11 Feb 2015 14:11:22 +0000 (14:11 +0000)
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>
src/arch/i386/prefix/romprefix.S
src/hci/shell.c
src/hci/tui/settings_ui.c
src/usr/autoboot.c

index 03ab8c78b1da07ab9cd4ae74741a167700d67f10..d1ceb0b43fb04bfb7b0406f438bc702701a9cc37 100644 (file)
@@ -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:
index c1a54384995e818a9e29a58e4ddf3523b0d24438..c91d22e17881c1209f2bd62fb0cc5f06b58a249a 100644 (file)
@@ -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
index 221839730be78072f1e453b4062f297b1e6b6e79..b2e019e740de4f1b67787598acf42153fb83724a 100644 (file)
@@ -30,6 +30,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
 #include <ipxe/keys.h>
 #include <ipxe/ansicol.h>
 #include <ipxe/settings_ui.h>
+#include <config/branding.h>
 
 /** @file
  *
@@ -348,7 +349,7 @@ static void draw_title_row ( struct setting_widget *widget ) {
        clearmsg ( TITLE_ROW );
        name = settings_name ( widget->settings );
        attron ( A_BOLD );
-       msg ( TITLE_ROW, "iPXE configuration settings%s%s",
+       msg ( TITLE_ROW, PRODUCT_SHORT_NAME " configuration settings%s%s",
              ( name[0] ? " - " : "" ), name );
        attroff ( A_BOLD );
 }
index 2e52c87b9fcbbacad18aaf1c6c0768f4b5b8bfd4..42718ee1c6cfcab97f30eac7cf83adf4b6aadc1f 100644 (file)
@@ -42,6 +42,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
 #include <usr/prompt.h>
 #include <usr/autoboot.h>
 #include <config/general.h>
+#include <config/branding.h>
 
 /** @file
  *
@@ -522,7 +523,8 @@ static int shell_banner ( void ) {
 
        /* Prompt user */
        printf ( "\n" );
-       return ( prompt ( "Press Ctrl-B for the iPXE command line...",
+       return ( prompt ( "Press Ctrl-B for the " PRODUCT_SHORT_NAME
+                         " command line...",
                          ( ( BANNER_TIMEOUT * TICKS_PER_SEC ) / 10 ),
                          CTRL_B ) == 0 );
 }
@@ -549,10 +551,10 @@ void ipxe ( struct net_device *netdev ) {
         * do so.
         *
         */
-       printf ( NORMAL "\n\n%s\n" BOLD "iPXE %s"
+       printf ( NORMAL "\n\n" PRODUCT_NAME "\n" BOLD PRODUCT_SHORT_NAME " %s"
                 NORMAL " -- Open Source Network Boot Firmware -- "
                 CYAN "http://ipxe.org" NORMAL "\n"
-                "Features:", product_name, product_version );
+                "Features:", product_version );
        for_each_table_entry ( feature, FEATURES )
                printf ( " %s", feature->name );
        printf ( "\n" );