aboutsummaryrefslogtreecommitdiff
path: root/src/hci
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2015-02-11 13:57:34 +0000
committerMichael Brown <mcb30@ipxe.org>2015-02-11 14:11:28 +0000
commitb06fdcf93668670b481491dc97f025e6efe5f450 (patch)
treef9c6bc9212672d07e87baa79929a447bbe029fe7 /src/hci
parent92f3bd901e359649cab05c7cb566d333e1f46f19 (diff)
downloadipxe-b06fdcf93668670b481491dc97f025e6efe5f450.zip
ipxe-b06fdcf93668670b481491dc97f025e6efe5f450.tar.gz
ipxe-b06fdcf93668670b481491dc97f025e6efe5f450.tar.bz2
[build] Allow setting help text URI to be customised via config/branding.h
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci')
-rw-r--r--src/hci/tui/settings_ui.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/hci/tui/settings_ui.c b/src/hci/tui/settings_ui.c
index b2e019e..e66abe9 100644
--- a/src/hci/tui/settings_ui.c
+++ b/src/hci/tui/settings_ui.c
@@ -378,8 +378,7 @@ static void draw_info_row ( struct setting_widget *widget ) {
msg ( INFO_ROW, "%s - %s", buf, widget->row.setting.description );
attroff ( A_BOLD );
color_set ( CPAIR_URL, NULL );
- msg ( ( INFO_ROW + 1 ), "http://ipxe.org/cfg/%s",
- widget->row.setting.name );
+ msg ( ( INFO_ROW + 1 ), PRODUCT_SETTING_URI, widget->row.setting.name );
color_set ( CPAIR_NORMAL, NULL );
}