Skip to content

Commit

Permalink
[nvo] Expose non-volatile options block name
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Oct 15, 2012
1 parent 5ad445f commit 08a6ae8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/nvo.c
Expand Up @@ -296,7 +296,8 @@ int register_nvo ( struct nvo_block *nvo, struct settings *parent ) {
goto err_load;

/* Register settings */
if ( ( rc = register_settings ( &nvo->settings, parent, "nvo" ) ) != 0 )
if ( ( rc = register_settings ( &nvo->settings, parent,
NVO_SETTINGS_NAME ) ) != 0 )
goto err_register;

DBGC ( nvo, "NVO %p registered\n", nvo );
Expand Down
3 changes: 3 additions & 0 deletions src/include/ipxe/nvo.h
Expand Up @@ -42,6 +42,9 @@ struct nvo_block {
struct dhcp_options dhcpopts;
};

/** Name of non-volatile options settings block */
#define NVO_SETTINGS_NAME "nvo"

extern void nvo_init ( struct nvo_block *nvo, struct nvs_device *nvs,
size_t address, size_t len,
int ( * resize ) ( struct nvo_block *nvo, size_t len ),
Expand Down

0 comments on commit 08a6ae8

Please sign in to comment.