On Tuesday 07 March 2006 14:29, Chris Abbey wrote: > I just tried out grub2 on my ppc64 box, a 43p-260 using cvs as of 6 March. It > 0 > setenv debug all ok > 0 > 0 > 0 > printenv debug > debug all > ok
This part here won't work. GRUB doesn't look for an OF variable named "debug" (technically such a thing does not exist, according to IEEE1275), but rather a commandline argument. So you would do this: 0 > boot debug=all or even 0 > boot floppy debug=all ... but in this particular case, the crash is very very early, and also we already got our helpful debugging message. > 0 > boot Failed to claim heap at 0x4000, len 0x1fb000 This is telling us that GRUB attempted to claim some memory for its heap (at that address and that length), but some of it was already in use, so the request failed. From the OF prompt, before you boot GRUB, could you do the following and send the output: 0 > dev /[EMAIL PROTECTED] 0 > .properties In particular, the "available" property is the one I'm interested in. That will tell us what areas of memory are considered free... -Hollis _______________________________________________ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel