Dear list,
I have upgraded my grub installed in my pendrive from 1.95 to 1.99
And now the .iso images are not booting any more. oOne such configuration
is
` ` ` `
menuentry "Ubuntu Live 11.10 64bit" {
set root=(hd0,2)
loopback loop (hd0,2)/ubuntu-11.10-desktop-amd64.iso
On 27.04.2012 16:54, J. Bakshi wrote:
> Dear list,
>
> I have upgraded my grub installed in my pendrive from 1.95 to 1.99
> And now the .iso images are not booting any more. oOne such configuration
> is
1.95 is very old anyway. Also now we're in release process for 2.00 and
I suggest trying latest
On Fri, 27 Apr 2012 17:27:36 +0200
Vladimir 'φ-coder/phcoder' Serbinenko wrote:
> On 27.04.2012 16:54, J. Bakshi wrote:
> > Dear list,
> >
> > I have upgraded my grub installed in my pendrive from 1.95 to 1.99
> > And now the .iso images are not booting any more. oOne such configuration
> > is
>
Hi,
A while ago, I improved the grub-mount patches a bit. Mostly:
* Write a simplified compile.py script.
* Remove nested functions. They don't work on Mac because of stack
execution protection.
* Improve ReiserFS reading performance.
The whole fork:
https://github.com/albertz/grub-fuse
The ful
On 27.04.2012 16:05, Albert Zeyer wrote:
> * Write a simplified compile.py script.
We don't have any compile.py.
> * Remove nested functions. They don't work on Mac because of stack
> execution protection.
It can be disabled. It's Apple fault for not allowing to disable it
selectively. Replacing ne
On 25.04.2012 11:37, Samuel Thibault wrote:
> + /* Make sure the string is terminated. */
> + argz[argz_len-1] = 0;
This would fail if argz_len == 0. You have to check this case.
> +
> + /* Skip first word (translator path) and options. */
> + for (i = strlen (&argz[0]) + 1; i < argz_len; i +
On 27.04.2012 20:36, Vladimir 'φ-coder/phcoder' Serbinenko wrote:
> On 27.04.2012 16:05, Albert Zeyer wrote:
>> * Write a simplified compile.py script.
> We don't have any compile.py.
>> * Remove nested functions. They don't work on Mac because of stack
>> execution protection.
> It can be disabled