summaryrefslogtreecommitdiffstats
path: root/src/config/branding.h
diff options
context:
space:
mode:
authorMichael Brown2015-02-11 13:51:58 +0100
committerMichael Brown2015-02-11 13:51:58 +0100
commit1c3fb3c61ae4af8b8ccf92afc90b48dfc0b597c7 (patch)
tree7a538fed0bfc277a01b93f7a4d25634f90cbfdc4 /src/config/branding.h
parent[xhci] Delay after (possibly) forcing port link state to RxDetect (diff)
downloadipxe-1c3fb3c61ae4af8b8ccf92afc90b48dfc0b597c7.tar.gz
ipxe-1c3fb3c61ae4af8b8ccf92afc90b48dfc0b597c7.tar.xz
ipxe-1c3fb3c61ae4af8b8ccf92afc90b48dfc0b597c7.zip
[build] Move branding information to config/branding.h
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/branding.h')
-rw-r--r--src/config/branding.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/config/branding.h b/src/config/branding.h
new file mode 100644
index 00000000..e96d8ca7
--- /dev/null
+++ b/src/config/branding.h
@@ -0,0 +1,32 @@
+#ifndef CONFIG_BRANDING_H
+#define CONFIG_BRANDING_H
+
+/** @file
+ *
+ * Branding configuration
+ *
+ */
+
+FILE_LICENCE ( GPL2_OR_LATER );
+
+#include <config/defaults.h>
+
+/*
+ * Branding
+ *
+ * Vendors may use these strings to add their own branding to iPXE.
+ * PRODUCT_NAME is displayed prior to any iPXE branding in startup
+ * messages, and PRODUCT_SHORT_NAME is used where a brief product
+ * label is required (e.g. in BIOS boot selection menus).
+ *
+ * To minimise end-user confusion, it's probably a good idea to either
+ * make PRODUCT_SHORT_NAME a substring of PRODUCT_NAME or leave it as
+ * "iPXE".
+ *
+ */
+#define PRODUCT_NAME ""
+#define PRODUCT_SHORT_NAME "iPXE"
+
+#include <config/local/branding.h>
+
+#endif /* CONFIG_BRANDING_H */