david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Added cmdl_show proof-of-concept

This commit is contained in:
Michael Brown 2006-08-11 18:40:27 +00:00
parent dd9399f527
commit 3c35a0b16d
1 changed files with 20 additions and 0 deletions

View File

@ -264,3 +264,23 @@ struct config_setting basic_config_settings[] __config_setting = {
.type = &config_setting_type_ipv4,
},
};
/* Quick and dirty proof of concept */
int cmdl_show ( int argc, char **argv ) {
char buf[256];
struct config_context dummy_context = { NULL };
int rc;
if ( argc < 2 )
return -EINVAL;
if ( ( rc = show_setting ( &dummy_context, argv[1],
buf, sizeof ( buf ) ) ) != 0 )
return rc;
printf ( "%s = %s\n", argv[1], buf );
return 0;
}