Re: [PATCH] add a --disk-module option to grub-install

2009-06-08 Thread Felix Zielcke
Am Freitag, den 05.06.2009, 23:26 +0200 schrieb Vladimir 'phcoder' Serbinenko: > -# generic method (used on coreboot) > +if [ "$disk_module" = ata ] ; then > +# generic method (used on coreboot and ata mod) > uuid="`$grub_probe --target=fs_uuid --device ${grub_device}`"

Re: [PATCH] add a --disk-module option to grub-install

2009-06-05 Thread Vladimir 'phcoder' Serbinenko
-# generic method (used on coreboot) +if [ "$disk_module" = ata ] ; then +# generic method (used on coreboot and ata mod) uuid="`$grub_probe --target=fs_uuid --device ${grub_device}`" if [ "x${uuid}" = "x" ] ; then - echo "UUID needed on this platform,

Re: [PATCH] add a --disk-module option to grub-install

2009-06-04 Thread Felix Zielcke
Am Donnerstag, den 04.06.2009, 20:57 +0200 schrieb Felix Zielcke: > Here's a patch which adds --disk-module to grub-install for i386-pc to > make it easier for users to try out ata mod instead of biosdisk. Args I forgot the actual parsing of the option. -- Felix Zielcke diff --git a/util/i386/pc/

[PATCH] add a --disk-module option to grub-install

2009-06-04 Thread Felix Zielcke
Here's a patch which adds --disk-module to grub-install for i386-pc to make it easier for users to try out ata mod instead of biosdisk. -- Felix Zielcke 2009-06-04 Felix Zielcke * util/i386/pc/grub-install.in: Add a parameter --disk-module. diff --git a/util/i386/pc/grub-install.in b/util/i3