[RFC] Multiboot2 drafting

2010-05-11 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Hello, all. In GRUB2 community we're currently working on a next-generation multiboot specification. It has goals similar to the original multiboot specification but with important flaws fixed: 1) Instead of having bunch of pointers to subtables it uses a tagged structure now. It allows it to be

Re: [PATCH] Function parameters support

2010-05-11 Thread BVK Chaitanya
2010/5/9 Vladimir 'φ-coder/phcoder' Serbinenko phco...@gmail.com: The only place where new scope is added or removed is: +  grub_list_push (GRUB_AS_LIST_P (scope), GRUB_AS_LIST (new_scope)); + +  ret = grub_script_execute (func-func); + +  grub_list_pop (GRUB_AS_LIST_P (scope)); + So you

Re: [PATCH] Function parameters support

2010-05-11 Thread BVK Chaitanya
On Wed, May 5, 2010 at 11:06 PM, Seth Goldberg seth.goldb...@oracle.com wrote:  This is a *great* start, but can you please add support for $* ... Support for $@, $* and their double quoted forms is added. Its available in people/bvk/func-params branch. One known bug is, $@ currently expands

Re: [PATCH] Function parameters support

2010-05-11 Thread Seth Goldberg
Quoting BVK Chaitanya, who wrote the following on Wed, 12 May 2010: On Wed, May 5, 2010 at 11:06 PM, Seth Goldberg seth.goldb...@oracle.com wrote:  This is a *great* start, but can you please add support for $* ... Support for $@, $* and their double quoted forms is added. Its available