diff options
author | Michael Brown | 2013-07-13 15:06:20 +0200 |
---|---|---|
committer | Michael Brown | 2013-07-13 15:11:45 +0200 |
commit | 66ea4581256449fe9dcb26340851c09ffd9d6290 (patch) | |
tree | 89144d4ecd20220f55328cd9d267d27dc4495465 /src/hci | |
parent | [settings] Expose PCI configuration space via settings mechanism (diff) | |
download | ipxe-66ea4581256449fe9dcb26340851c09ffd9d6290.tar.gz ipxe-66ea4581256449fe9dcb26340851c09ffd9d6290.tar.xz ipxe-66ea4581256449fe9dcb26340851c09ffd9d6290.zip |
[settings] Make "netX" settings block function as a symbolic link
Add a facility for settings blocks to act as symbolic links to other
settings blocks, and reimplement the "netX" virtual settings block
using this facility.
The primary advantage of this approach is that unscoped settings such
as ${mac} and ${filename} will now reflect the settings obtained from
the most recently opened network device: in most cases, this will mean
the settings obtained from the most recent DHCP attempt. This should
improve conformance to the principle of least astonishment.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci')
-rw-r--r-- | src/hci/tui/settings_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hci/tui/settings_ui.c b/src/hci/tui/settings_ui.c index 403d1245..eb82ae54 100644 --- a/src/hci/tui/settings_ui.c +++ b/src/hci/tui/settings_ui.c @@ -441,7 +441,7 @@ static void reveal_setting_row ( struct setting_widget *widget, static void init_widget ( struct setting_widget *widget, struct settings *settings ) { - widget->settings = settings; + widget->settings = settings_target ( settings ); widget->num_rows = select_setting_row ( widget, 0 ); widget->first_visible = SETTINGS_LIST_ROWS; draw_title_row ( widget ); |