Made grub-menu-builder write (hd0,0) instead of hd0,0

svn path=/nixos/trunk/; revision=10101
This commit is contained in:
Michael Raskin 2008-01-09 05:36:40 +00:00
parent a4ff40b158
commit 020f035a5d

View File

@ -11,7 +11,7 @@ if test -z "$1"; then
exit 1 exit 1
fi fi
bootMount=@bootMount@ bootMount="@bootMount@"
if test -z "$bootMount"; then bootMount=/boot; fi if test -z "$bootMount"; then bootMount=/boot; fi
@ -30,7 +30,7 @@ if test -n "@grubSplashImage@"; then
# !!! image in /nix/store doesn't seem to work # !!! image in /nix/store doesn't seem to work
#if test -n "@copyKernels@"; then #if test -n "@copyKernels@"; then
cp -f $splashLocation /boot/background.xpm.gz cp -f $splashLocation /boot/background.xpm.gz
splashLocation=$bootMount/background.xpm.gz splashLocation="$bootMount/background.xpm.gz"
#fi #fi
echo "splashimage $splashLocation" >> $tmp echo "splashimage $splashLocation" >> $tmp
fi fi