|
@@ -117,6 +117,49 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
117
|
117
|
*/
|
118
|
118
|
#define PRODUCT_COMMAND_URI "http://ipxe.org/cmd/%s"
|
119
|
119
|
|
|
120
|
+/*
|
|
121
|
+ * Setting help messages
|
|
122
|
+ *
|
|
123
|
+ * iPXE setting help messages include a URI constructed from the
|
|
124
|
+ * setting name, such as
|
|
125
|
+ *
|
|
126
|
+ * "http://ipxe.org/cfg/initiator-iqn"
|
|
127
|
+ *
|
|
128
|
+ * The iPXE web site includes documentation for the settings used by
|
|
129
|
+ * iPXE, including:
|
|
130
|
+ *
|
|
131
|
+ * - details of the corresponding DHCP option number.
|
|
132
|
+ *
|
|
133
|
+ * - details of the corresponding ISC dhcpd option name.
|
|
134
|
+ *
|
|
135
|
+ * - examples of using the setting from the iPXE command line, or in
|
|
136
|
+ * iPXE scripts.
|
|
137
|
+ *
|
|
138
|
+ * - examples of configuring the setting via a DHCP server.
|
|
139
|
+ *
|
|
140
|
+ * - a formal description of the setting.
|
|
141
|
+ *
|
|
142
|
+ * - links to documentation for related settings.
|
|
143
|
+ *
|
|
144
|
+ * - links to documentation for relevant build options.
|
|
145
|
+ *
|
|
146
|
+ * - general notes about the setting.
|
|
147
|
+ *
|
|
148
|
+ * If you want to provide your own documentation for all of the
|
|
149
|
+ * settings used by iPXE, rather than using the existing support
|
|
150
|
+ * infrastructure provided by http://ipxe.org, then you may define a
|
|
151
|
+ * custom URI to be included within setting help messages.
|
|
152
|
+ *
|
|
153
|
+ * Note that the custom URI is a printf() format string which must
|
|
154
|
+ * include a format specifier for the setting name.
|
|
155
|
+ *
|
|
156
|
+ * [ Please also note that the existing documentation is licensed
|
|
157
|
+ * under Creative Commons terms which require attribution to the
|
|
158
|
+ * iPXE project and prohibit the alteration or removal of any
|
|
159
|
+ * references to "iPXE". ]
|
|
160
|
+ */
|
|
161
|
+#define PRODUCT_SETTING_URI "http://ipxe.org/cfg/%s"
|
|
162
|
+
|
120
|
163
|
#include <config/local/branding.h>
|
121
|
164
|
|
122
|
165
|
#endif /* CONFIG_BRANDING_H */
|