Core compression test.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-04-27 19:44:00 +02:00
parent 17f9fd29d3
commit e7b8fd08c5
4 changed files with 26 additions and 1 deletions

View file

@ -105,6 +105,7 @@ usage () {
}
system_area=auto
mkimage_extra_arg=
# Check the arguments.
while test $# -gt 0
@ -154,6 +155,12 @@ do
export PATH
;;
# Intentionally undocumented
--grub-mkimage-extra)
mkimage_extra_arg="$mkimage_extra_arg `argument $option "$@"`"; shift ;;
--grub-mkimage-extra=*)
mkimage_extra_arg="$mkimage_extra_arg `echo "$option" | sed 's/--grub-mkimage-extra=//'`" ;;
--sparc-boot)
system_area=sparc64 ;;