search for: dfa6dc7

Displaying 1 result from an estimated 1 matches for "dfa6dc7".

Did you mean: dfa6c3
2010 Jun 07
0
[PATCH] extlinux: Add the --menu-save option to set the MENU SAVE value from the running system using extlinux
...int mode) case OPT_RESET_ADV: opt.reset_adv = 1; break; + case 'M': + opt.menu_save = optarg; + break; case 'v': fputs(program, stderr); fputs(" " VERSION_STR diff --git a/libinstaller/syslxopt.h b/libinstaller/syslxopt.h index d925fa3..dfa6dc7 100644 --- a/libinstaller/syslxopt.h +++ b/libinstaller/syslxopt.h @@ -13,6 +13,7 @@ struct sys_options { const char *directory; const char *device; unsigned int offset; + const char *menu_save; }; enum long_only_opt { diff --git a/man/extlinux.1 b/man/extlinux.1 index 426eeb3...