summaryrefslogtreecommitdiffstats
path: root/src/hci
diff options
context:
space:
mode:
authorMichael Brown2015-02-11 14:57:34 +0100
committerMichael Brown2015-02-11 15:11:28 +0100
commitb06fdcf93668670b481491dc97f025e6efe5f450 (patch)
treef9c6bc9212672d07e87baa79929a447bbe029fe7 /src/hci
parent[build] Allow command help text URI to be customised via config/branding.h (diff)
downloadipxe-b06fdcf93668670b481491dc97f025e6efe5f450.tar.gz
ipxe-b06fdcf93668670b481491dc97f025e6efe5f450.tar.xz
ipxe-b06fdcf93668670b481491dc97f025e6efe5f450.zip
[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 b2e019e7..e66abe94 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 );
}