From: BVK Chaitanya Date: Thu, 12 Aug 2010 04:05:15 +0000 (+0530) Subject: "break" command support to GRUB script. X-Git-Tag: 1.99~667 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4df51e00074fc7b5818cff20bd419f326ef65bd3;p=thirdparty%2Fgrub.git "break" command support to GRUB script. * conf/common.rmk: Rule updates to grub-script-check. * include/grub/misc.h (grub_min): New function. * include/grub/script_sh.h (grub_script_init): New prototype. (grub_script_fini): New prototype. (grub_script_break): New prototype. * script/main.c (grub_script_init): New function. (grub_script_fini): New function. * script/execute.c (grub_script_break): New function. * normal/main.c: Calls to grub_script_{init,fini}. * util/grub-script-check.c (grub_script_break): New function. * tests/grub_script_break.in: New testcase. * conf/tests.rmk: Rules for new test case. --- 4df51e00074fc7b5818cff20bd419f326ef65bd3 diff --cc ChangeLog index 7ad408602,7ad408602..835596322 --- a/ChangeLog +++ b/ChangeLog @@@ -1,3 -1,3 +1,21 @@@ ++2010-08-12 BVK Chaitanya ++ ++ "break" command support to GRUB script. ++ ++ * conf/common.rmk: Rule updates to grub-script-check. ++ * include/grub/misc.h (grub_min): New function. ++ * include/grub/script_sh.h (grub_script_init): New prototype. ++ (grub_script_fini): New prototype. ++ (grub_script_break): New prototype. ++ * script/main.c (grub_script_init): New function. ++ (grub_script_fini): New function. ++ * script/execute.c (grub_script_break): New function. ++ * normal/main.c: Calls to grub_script_{init,fini}. ++ * util/grub-script-check.c (grub_script_break): New function. ++ ++ * tests/grub_script_break.in: New testcase. ++ * conf/tests.rmk: Rules for new test case. ++ 2010-08-12 BVK Chaitanya Function parameters support to GRUB script.