mirror of
https://github.com/ipxe/ipxe
synced 2026-02-28 03:11:18 +03:00
[build] Allow product tag line to be customised via config/branding.h
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -28,6 +28,15 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
|||||||
#define PRODUCT_SHORT_NAME "iPXE"
|
#define PRODUCT_SHORT_NAME "iPXE"
|
||||||
#define PRODUCT_URI "http://ipxe.org"
|
#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
|
* Error messages
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -552,7 +552,7 @@ void ipxe ( struct net_device *netdev ) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
printf ( NORMAL "\n\n" PRODUCT_NAME "\n" BOLD PRODUCT_SHORT_NAME " %s"
|
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 );
|
CYAN PRODUCT_URI NORMAL "\nFeatures:", product_version );
|
||||||
for_each_table_entry ( feature, FEATURES )
|
for_each_table_entry ( feature, FEATURES )
|
||||||
printf ( " %s", feature->name );
|
printf ( " %s", feature->name );
|
||||||
|
|||||||
Reference in New Issue
Block a user