* util/grub-install.in: Fix an ARC bug.
Print a warning if no platform-specific setup is available.
This commit is contained in:
parent
bb26e4ff16
commit
9e88df393a
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-01-25 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* util/grub-install.in: Fix an ARC bug.
|
||||
Print a warning if no platform-specific setup is available.
|
||||
|
||||
2012-01-24 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Use static allocation rather than scratch pointer in reed_solomon.
|
||||
|
|
|
@ -276,7 +276,8 @@ fi
|
|||
|
||||
if ! ([ "${target_cpu}-${platform}" = "i386-pc" ] \
|
||||
|| [ "${target_cpu}-${platform}" = "sparc64-ieee1275" ] \
|
||||
|| [ "${target_cpu}-${platform}" = "powerpc-ieee1275" ]); then
|
||||
|| [ "${target_cpu}-${platform}" = "powerpc-ieee1275" ]
|
||||
|| [ "${target_cpu}-${platform}" = "mips-arc" ]); then
|
||||
install_device=
|
||||
fi
|
||||
|
||||
|
@ -727,6 +728,8 @@ elif [ x"$platform" = xefi ]; then
|
|||
-L "$bootloader_id" -l "\\EFI\\$efi_distributor\\$efi_file"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "WARNING: no platform-specific install was performed"
|
||||
fi
|
||||
|
||||
echo "Installation finished. No error reported."
|
||||
|
|
Loading…
Reference in a new issue