diff options
author | Michael Brown | 2015-02-11 14:57:34 +0100 |
---|---|---|
committer | Michael Brown | 2015-02-11 15:11:28 +0100 |
commit | b06fdcf93668670b481491dc97f025e6efe5f450 (patch) | |
tree | f9c6bc9212672d07e87baa79929a447bbe029fe7 /src/hci | |
parent | [build] Allow command help text URI to be customised via config/branding.h (diff) | |
download | ipxe-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.c | 3 |
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 ); } |