From: BVK Chaitanya Date: Thu, 12 Aug 2010 06:37:27 +0000 (+0530) Subject: "shift" command support to GRUB script. X-Git-Tag: 1.99~665 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab8ba50d75cb31cfd9216e2189d657fccfe6e8e9;p=thirdparty%2Fgrub.git "shift" command support to GRUB script. * include/grub/script_sh.h (grub_script_shift): New prototype. * script/execute.c (grub_script_shift): New function. * script/main.c (grub_script_init): Register shift command. (grub_script_fini): Unregister shift command. * util/grub-script-check.c (grub_script_cmd_shift): New function. * tests/grub_script_shift.in: New testcase. * conf/tests.rmk: Rules for new testcase. --- ab8ba50d75cb31cfd9216e2189d657fccfe6e8e9 diff --cc ChangeLog index 5845bb7dc,5845bb7dc..a8cb8f6e6 --- a/ChangeLog +++ b/ChangeLog @@@ -1,3 -1,3 +1,16 @@@ ++2010-08-12 BVK Chaitanya ++ ++ "shift" command support to GRUB script. ++ ++ * include/grub/script_sh.h (grub_script_shift): New prototype. ++ * script/execute.c (grub_script_shift): New function. ++ * script/main.c (grub_script_init): Register shift command. ++ (grub_script_fini): Unregister shift command. ++ * util/grub-script-check.c (grub_script_cmd_shift): New function. ++ ++ * tests/grub_script_shift.in: New testcase. ++ * conf/tests.rmk: Rules for new testcase. ++ 2010-08-12 BVK Chaitanya "continue" command support to GRUB script.