From: BVK Chaitanya Date: Sat, 4 Sep 2010 14:57:48 +0000 (+0530) Subject: "setparams" command to update positional parameters. X-Git-Tag: 1.99~598 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52e72f9d461ae8292a11e2e8addfa65ade36769d;p=thirdparty%2Fgrub.git "setparams" command to update positional parameters. * tests/grub_script_setparams.in: New test. * Makefile.util.def: Rules for new test. * grub-core/script/argv.c (grub_script_argv_make): New function. * grub-core/script/execute.c (replace_scope): New function. (grub_script_setparams): New function. * grub-core/script/lexer.c: Remove unused variables. * grub-core/script/main.c: Register/unregister setparams command. * include/grub/script_sh.h (grub_script_argv_make): New prototype. (grub_script_setparams): New prototype. --- 52e72f9d461ae8292a11e2e8addfa65ade36769d diff --cc ChangeLog index 371e910c5,44c2d178d..6c31afe29 --- a/ChangeLog +++ b/ChangeLog @@@ -1,8 -1,3 +1,23 @@@ ++2010-09-04 BVK Chaitanya ++ ++ "setparams" command to update positional parameters. ++ ++ * tests/grub_script_setparams.in: New test. ++ * Makefile.util.def: Rules for new test. ++ ++ * grub-core/script/argv.c (grub_script_argv_make): New function. ++ * grub-core/script/execute.c (replace_scope): New function. ++ (grub_script_setparams): New function. ++ * grub-core/script/lexer.c: Remove unused variables. ++ * grub-core/script/main.c: Register/unregister setparams command. ++ * include/grub/script_sh.h (grub_script_argv_make): New prototype. ++ (grub_script_setparams): New prototype. ++ +2010-09-04 BVK Chaitanya + + * grub-core/normal/completion.c (grub_normal_do_completion): Fix + grub_free order. + 2010-09-04 BVK Chaitanya Support for passing block of commands as an argument to extcmds.