2009-11-14 18:38:11 +00:00
# Make GRUB rescue image
2010-05-06 06:04:04 +00:00
# Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010 Free Software Foundation, Inc.
2009-11-14 18:38:11 +00:00
#
# GRUB is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# GRUB is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
# Initialize some variables.
2012-01-24 12:17:36 +00:00
prefix="@prefix@"
exec_prefix="@exec_prefix@"
datarootdir="@datarootdir@"
bindir="@bindir@"
libdir="@libdir@"
2009-11-14 18:38:11 +00:00
PACKAGE_NAME=@PACKAGE_NAME@
PACKAGE_TARNAME=@PACKAGE_TARNAME@
PACKAGE_VERSION=@PACKAGE_VERSION@
2012-02-03 10:42:22 +00:00
datadir="@datadir@"
2012-02-10 17:16:27 +00:00
if [ "x$pkgdatadir" = x ]; then
2012-02-27 10:04:50 +00:00
pkgdatadir="${datadir}/@PACKAGE@"
2012-02-10 17:16:27 +00:00
fi
2010-05-06 06:04:04 +00:00
pkglib_DATA="moddep.lst command.lst fs.lst partmap.lst parttool.lst handler.lst video.lst crypto.lst terminal.lst"
2009-11-14 18:38:11 +00:00
2010-06-08 10:52:42 +00:00
self=`basename $0`
2012-02-27 10:04:50 +00:00
multiboot_dir="${libdir}/@PACKAGE@/i386-multiboot"
coreboot_dir="${libdir}/@PACKAGE@/i386-coreboot"
qemu_dir="${libdir}/@PACKAGE@/i386-qemu"
2012-06-06 10:31:24 +00:00
mipsel_qemu_dir="${libdir}/@PACKAGE@/mipsel-qemu_mips"
2012-06-15 16:35:11 +00:00
loongson_dir="${libdir}/@PACKAGE@/mipsel-loongson"
2012-06-06 10:31:24 +00:00
mips_qemu_dir="${libdir}/@PACKAGE@/mips-qemu_mips"
2012-02-27 10:04:50 +00:00
pc_dir="${libdir}/@PACKAGE@/i386-pc"
2013-04-11 23:29:45 +00:00
i386_ieee1275_dir="${libdir}/@PACKAGE@/i386-ieee1275"
2012-02-27 10:04:50 +00:00
efi32_dir="${libdir}/@PACKAGE@/i386-efi"
efi64_dir="${libdir}/@PACKAGE@/x86_64-efi"
2012-06-06 10:31:24 +00:00
ia64_dir="${libdir}/@PACKAGE@/ia64-efi"
2013-04-14 15:10:55 +00:00
sparc64_dir="${libdir}/@PACKAGE@/sparc64-ieee1275"
2013-04-24 12:02:58 +00:00
arcs_dir="${libdir}/@PACKAGE@/mips-arc"
2013-04-25 20:42:35 +00:00
arc_dir="${libdir}/@PACKAGE@/mipsel-arc"
2013-04-11 21:15:26 +00:00
ppc_dir="${libdir}/@PACKAGE@/powerpc-ieee1275"
2010-05-17 19:35:39 +00:00
rom_directory=
2010-05-27 11:43:22 +00:00
override_dir=
2012-12-28 06:57:17 +00:00
grub_mkimage="${bindir}/@grub_mkimage@"
2013-04-11 21:15:26 +00:00
grub_render_label="${bindir}/@grub_render_label@"
2013-04-12 22:38:04 +00:00
grub_glue_efi="${bindir}/@grub_glue_efi@"
2013-04-11 21:15:26 +00:00
label_font="${pkgdatadir}/unicode.pf2"
label_color="black"
label_bgcolor="white"
product_name="${PACKAGE_NAME}"
product_version="${PACKAGE_VERSION}"
2009-11-14 18:38:11 +00:00
2010-06-12 11:54:35 +00:00
xorriso=xorriso
2012-02-29 23:40:02 +00:00
export TEXTDOMAIN=@PACKAGE@
export TEXTDOMAINDIR="@localedir@"
2012-04-23 15:17:50 +00:00
localedir="@datadir@/locale"
2012-02-10 17:16:27 +00:00
. "${pkgdatadir}/grub-mkconfig_lib"
2012-02-03 10:42:22 +00:00
2009-11-14 18:38:11 +00:00
# Usage: usage
# Print the usage.
usage () {
2012-02-03 10:42:22 +00:00
gettext_printf "Usage: %s [OPTION] SOURCE...\n" "$self"
2012-03-02 14:09:10 +00:00
# TRANSLATORS: it generates one single image which is bootable through any method.
2012-02-26 16:28:05 +00:00
gettext "Make GRUB CD-ROM, disk, pendrive and floppy bootable image."; echo
2012-02-03 10:42:22 +00:00
echo
2012-03-02 14:09:10 +00:00
filetrans="$(gettext FILE)"
2012-04-07 17:49:25 +00:00
print_option_help "-h, --help" "$(gettext "print this message and exit")"
print_option_help "-v, --version" "$(gettext "print the version information and exit")"
print_option_help "-o, --output=$filetrans" "$(gettext "save output in FILE [required]")"
print_option_help "--modules=$(gettext "MODULES")" "$(gettext "pre-load specified modules MODULES")"
2013-04-04 17:59:59 +00:00
grub_print_install_files_help
print_option_help "--install-modules=$(gettext "MODULES")" "$(gettext "install only MODULES and their dependencies on bootable media")"
2012-04-07 17:49:25 +00:00
print_option_help "--rom-directory=$(gettext "DIR")" "$(gettext "save ROM images in DIR [optional]")"
2012-03-02 14:09:10 +00:00
# TRANSLATORS: xorriso is a program for creating ISOs and burning CDs
2012-04-07 17:49:25 +00:00
print_option_help "--xorriso=$filetrans" "$(gettext "use FILE as xorriso [optional]")"
print_option_help "--grub-mkimage=$filetrans" "$(gettext "use FILE as grub-mkimage")"
2013-04-12 22:38:04 +00:00
print_option_help "--grub-glue-efi=$filetrans" "$(gettext "use FILE as grub-glue-efi")"
2013-04-11 21:15:26 +00:00
print_option_help "--grub-render-label=$filetrans" "$(gettext "use FILE as grub-render-label")"
print_option_help "--label-font=$filetrans" "$(gettext "use FILE as font for label")"
print_option_help "--label-color=$(gettext "COLOR")" "$(gettext "use COLOR for label")"
print_option_help "--label-bgcolor=$(gettext "COLOR")" "$(gettext "use COLOR for label background")"
print_option_help "--product-name=$(gettext "STR")" "$(gettext "use STR as product")"
print_option_help "--product-version=$(gettext "STR")" "$(gettext "use STR as product version")"
2013-04-24 12:02:58 +00:00
print_option_help "--sparc-boot" "$(gettext "enable sparc boot. Disables HFS+, APM, ARCS and boot as disk image for i386-pc")"
print_option_help "--arcs-boot" "$(gettext "enable ARCS (big-endian mips machines, mostly SGI) boot. Disables HFS+, APM, sparc64 and boot as disk image for i386-pc")"
2012-02-03 10:42:22 +00:00
echo
2012-04-07 17:49:25 +00:00
gettext_printf "%s generates a bootable rescue image with specified source files, source directories, or mkisofs options listed by the output of \`%s'\n" "xorriso -as mkisofs -help" "$self" | grub_fmt
2012-02-03 10:42:22 +00:00
echo
gettext "Option -- switches to native xorriso command mode."; echo
echo
gettext "Report bugs to <bug-grub@gnu.org>."; echo
gettext "Mail xorriso support requests to <bug-xorriso@gnu.org>."; echo
2009-11-14 18:38:11 +00:00
}
2013-04-14 15:10:55 +00:00
system_area=auto
2009-11-14 18:38:11 +00:00
# Check the arguments.
2010-02-07 04:44:50 +00:00
while test $# -gt 0
do
2013-04-04 17:59:59 +00:00
grub_process_install_options "$@"
case "$grub_process_install_options_consumed" in
1) shift; continue;;
2) shift; shift; continue;;
esac
2010-02-07 04:44:50 +00:00
option=$1
shift
2009-11-14 18:38:11 +00:00
case "$option" in
-h | --help)
usage
exit 0 ;;
-v | --version)
2010-06-08 10:52:42 +00:00
echo "$self (${PACKAGE_NAME}) ${PACKAGE_VERSION}"
2009-11-14 18:38:11 +00:00
exit 0 ;;
2010-02-07 04:44:50 +00:00
--modules)
2010-04-12 16:03:03 +00:00
modules=`argument $option "$@"`; shift ;;
2009-11-14 18:38:11 +00:00
--modules=*)
modules=`echo "$option" | sed 's/--modules=//'` ;;
2010-02-07 04:44:50 +00:00
-o | --output)
2010-04-12 16:03:03 +00:00
output_image=`argument $option "$@"`; shift ;;
2009-11-14 18:38:11 +00:00
--output=*)
output_image=`echo "$option" | sed 's/--output=//'` ;;
2010-02-07 04:44:50 +00:00
2010-06-12 10:51:10 +00:00
--rom-directory)
rom_directory=`argument $option "$@"`; shift ;;
2010-05-17 19:35:39 +00:00
--rom-directory=*)
rom_directory=`echo "$option" | sed 's/--rom-directory=//'` ;;
2010-06-12 10:51:10 +00:00
2009-11-21 13:11:38 +00:00
# Intentionally undocumented
2010-02-07 04:44:50 +00:00
--override-directory)
2010-04-12 16:03:03 +00:00
override_dir=`argument $option "$@"`
2010-02-07 04:44:50 +00:00
shift
PATH=${override_dir}:$PATH
export PATH
;;
2009-11-21 13:11:38 +00:00
--override-directory=*)
override_dir=`echo "${option}/" | sed 's/--override-directory=//'`
PATH=${override_dir}:$PATH
export PATH
;;
2010-06-12 10:51:10 +00:00
2013-04-14 15:10:55 +00:00
--sparc-boot)
system_area=sparc64 ;;
2013-04-24 12:02:58 +00:00
--arcs-boot)
system_area=arcs ;;
2013-04-11 21:15:26 +00:00
--product-name)
product_name=`argument $option "$@"`; shift ;;
--product-name=*)
product_name=`echo "$option" | sed 's/--product-name=//'` ;;
--product-version)
product_version=`argument $option "$@"`; shift ;;
--product-version=*)
product_version=`echo "$option" | sed 's/--product-version=//'` ;;
2010-06-12 10:51:10 +00:00
--grub-mkimage)
grub_mkimage=`argument $option "$@"`; shift ;;
2010-05-18 10:51:37 +00:00
--grub-mkimage=*)
grub_mkimage=`echo "$option" | sed 's/--grub-mkimage=//'` ;;
2010-06-12 14:55:26 +00:00
2013-04-12 22:38:04 +00:00
--grub-glue-efi)
grub_glue_efi=`argument $option "$@"`; shift ;;
--grub-glue-efi=*)
grub_glue_efi=`echo "$option" | sed 's/--grub-glue-efi=//'` ;;
2013-04-11 21:15:26 +00:00
--grub-render-label)
grub_render_label=`argument $option "$@"`; shift ;;
--grub-render-label=*)
grub_render_label=`echo "$option" | sed 's/--grub-render-label=//'` ;;
--label-font)
label_font=`argument $option "$@"`; shift ;;
--label-font=*)
label_font=`echo "$option" | sed 's/--label-font=//'` ;;
--label-color)
label_color=`argument $option "$@"`; shift ;;
--label-color=*)
label_color=`echo "$option" | sed 's/--label-color=//'` ;;
--label-bgcolor)
label_bgcolor=`argument $option "$@"`; shift ;;
--label-bgcolor=*)
label_bgcolor=`echo "$option" | sed 's/--label-bgcolor=//'` ;;
2010-06-12 14:55:26 +00:00
--xorriso)
xorriso=`argument $option "$@"`; shift ;;
2010-06-12 11:54:35 +00:00
--xorriso=*)
2011-11-03 15:49:02 +00:00
xorriso=`echo "${option}" | sed 's/--xorriso=//'` ;;
2010-06-12 14:55:26 +00:00
2009-11-14 18:38:11 +00:00
*)
2010-04-12 16:03:03 +00:00
source="${source} ${option} $@"; break ;;
2009-11-14 18:38:11 +00:00
esac
done
2009-11-21 16:40:55 +00:00
if [ "x${output_image}" = x ] ; then
2012-02-05 10:23:47 +00:00
gettext "output file must be specified" >&2
2012-02-03 10:42:22 +00:00
echo >&2
2009-11-21 16:40:55 +00:00
usage
exit 1
fi
2010-05-18 10:51:37 +00:00
set $grub_mkimage dummy
if test -f "$1"; then
:
else
2012-02-03 10:42:22 +00:00
gettext_printf "%s: Not found.\n" "$1" 1>&2
2010-05-18 10:51:37 +00:00
exit 1
fi
2010-10-18 20:50:01 +00:00
iso9660_dir=`mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
2009-11-14 18:38:11 +00:00
mkdir -p ${iso9660_dir}/boot/grub
2013-04-24 23:36:20 +00:00
mkdir -p ${iso9660_dir}/boot/grub/roms
2009-11-14 18:38:11 +00:00
2009-11-21 13:11:38 +00:00
process_input_dir ()
{
2013-04-04 17:59:59 +00:00
grub_install_files "$1" "${iso9660_dir}/boot/grub" "$2"
2009-11-21 13:11:38 +00:00
}
2010-05-17 19:35:39 +00:00
make_image ()
{
source_directory="$1"
platform=$2
if ! test -e "${source_directory}"; then
return;
2009-11-21 13:11:38 +00:00
fi
2009-11-14 18:38:11 +00:00
2012-02-03 10:42:22 +00:00
gettext_printf "Enabling %s support ...\n" "$2"
2010-05-17 19:35:39 +00:00
2013-04-14 15:10:55 +00:00
load_cfg="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`"
2009-11-14 18:38:11 +00:00
2012-02-04 20:47:29 +00:00
(cat << EOF
2010-09-20 12:14:44 +00:00
search --fs-uuid --set=root ${iso_uuid}
2012-02-04 20:47:29 +00:00
set prefix=(\${root})/boot/grub
2009-11-14 18:38:11 +00:00
EOF
2012-02-04 20:47:29 +00:00
for i in $(cat "${source_directory}/partmap.lst") ${modules} ; do
2009-11-14 18:38:11 +00:00
echo "insmod $i"
2013-04-14 15:10:55 +00:00
done ; ) > "${load_cfg}"
"$grub_mkimage" -O ${platform} -d "${source_directory}" -c "${load_cfg}" -o "$3" \
2013-04-14 17:24:05 +00:00
$grub_decompression_module search iso9660 $4
2013-04-14 15:10:55 +00:00
rm -rf "${load_cfg}"
}
make_image_fwdisk ()
{
source_directory="$1"
platform=$2
if ! test -e "${source_directory}"; then
return;
fi
gettext_printf "Enabling %s support ...\n" "$2"
"$grub_mkimage" -O ${platform} -d "${source_directory}" -p '()/boot/grub' -o "$3" \
2013-04-14 17:24:05 +00:00
$grub_decompression_module iso9660 $4
2010-05-17 19:35:39 +00:00
}
2009-11-21 13:11:38 +00:00
if [ "${override_dir}" = "" ] ; then
2013-04-14 15:10:55 +00:00
if [ "$system_area" = auto ]; then
if test -e "${pc_dir}" || test -e "${ppc_dir}" \
|| test -e "${efi32_dir}" || test -e "${efi64_dir}"; then
system_area=common;
elif test -e "${sparc64_dir}" ; then
system_area=sparc64;
2013-04-24 12:02:58 +00:00
elif test -e "${arcs_dir}" ; then
system_area=arcs;
2013-04-14 15:10:55 +00:00
fi
fi
2010-05-01 12:06:53 +00:00
if test -e "${multiboot_dir}" ; then
2012-06-06 10:31:24 +00:00
process_input_dir "${multiboot_dir}" i386-multiboot
2010-05-17 19:35:39 +00:00
fi
if test -e "${coreboot_dir}" ; then
2012-06-06 10:31:24 +00:00
process_input_dir "${coreboot_dir}" i386-coreboot
2010-05-17 19:35:39 +00:00
fi
if test -e "${qemu_dir}" ; then
2012-06-06 10:31:24 +00:00
process_input_dir "${qemu_dir}" i386-qemu
2009-11-14 18:38:11 +00:00
fi
2009-11-21 13:11:38 +00:00
if test -e "${pc_dir}" ; then
2012-06-06 10:31:24 +00:00
process_input_dir "${pc_dir}" i386-pc
2009-11-21 13:11:38 +00:00
fi
2013-04-11 23:29:45 +00:00
if test -e "${i386_ieee1275_dir}" ; then
process_input_dir "${i386_ieee1275_dir}" i386-ieee1275
fi
2009-12-29 10:24:13 +00:00
if test -e "${efi32_dir}" ; then
2012-06-06 10:31:24 +00:00
process_input_dir "${efi32_dir}" i386-efi
2009-12-29 10:24:13 +00:00
fi
if test -e "${efi64_dir}" ; then
2012-06-06 10:31:24 +00:00
process_input_dir "${efi64_dir}" x86_64-efi
fi
if test -e "${ia64_dir}" ; then
process_input_dir "${ia64_dir}" ia64-efi
fi
if test -e "${mips_qemu_dir}" ; then
process_input_dir "${mips_qemu_dir}" mips-qemu_mips
fi
if test -e "${mipsel_qemu_dir}" ; then
process_input_dir "${mipsel_qemu_dir}" mipsel-qemu_mips
2009-12-29 10:24:13 +00:00
fi
2012-06-15 16:35:11 +00:00
if test -e "${loongson_dir}" ; then
process_input_dir "${loongson_dir}" mipsel-loongson
fi
2013-04-11 21:15:26 +00:00
if test -e "${ppc_dir}" ; then
2013-04-13 00:02:19 +00:00
process_input_dir "${ppc_dir}" powerpc-ieee1275
2013-04-11 21:15:26 +00:00
fi
2013-04-14 15:10:55 +00:00
if test -e "${sparc64_dir}" ; then
process_input_dir "${sparc64_dir}" sparc64-ieee1275
fi
2013-04-24 12:02:58 +00:00
if test -e "${arcs_dir}" ; then
process_input_dir "${arcs_dir}" mips-arc
fi
2013-04-25 20:42:35 +00:00
if test -e "${arc_dir}" ; then
process_input_dir "${arc_dir}" mipsel-arc
fi
2009-11-21 13:11:38 +00:00
else
2011-05-18 11:57:59 +00:00
. "${override_dir}"/modinfo.sh
2011-05-17 23:38:01 +00:00
process_input_dir "${override_dir}" ${grub_modinfo_target_cpu}-${grub_modinfo_platform}
2010-05-01 12:06:53 +00:00
multiboot_dir=
2009-11-21 13:11:38 +00:00
pc_dir=
2009-12-29 10:24:13 +00:00
efi32_dir=
efi64_dir=
2012-06-06 10:31:24 +00:00
ia64_dir=
2010-05-17 19:35:39 +00:00
coreboot_dir=
qemu_dir=
2012-06-06 10:31:24 +00:00
mipsel_qemu_dir=
mips_qemu_dir=
2012-06-15 16:35:11 +00:00
loongson_dir=
2013-04-11 21:15:26 +00:00
ppc_dir=
2013-04-11 23:29:45 +00:00
i386_ieee1275_dir=
2013-04-14 15:10:55 +00:00
sparc64_dir=
2013-04-24 12:02:58 +00:00
arcs_dir=
2013-04-25 20:42:35 +00:00
arc_dir=
2011-05-17 23:38:01 +00:00
case "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" in
2012-06-06 10:31:24 +00:00
i386-multiboot) multiboot_dir="${override_dir}" ;;
i386-coreboot) coreboot_dir="${override_dir}" ;;
i386-qemu) qemu_dir="${override_dir}" ;;
2013-04-14 15:10:55 +00:00
i386-pc) pc_dir="${override_dir}"; system_area=common;;
i386-efi) efi32_dir="${override_dir}"; system_area=common ;;
x86_64-efi) efi64_dir="${override_dir}"; system_area=common ;;
2012-06-06 10:31:24 +00:00
ia64-efi) ia64_dir="${override_dir}" ;;
mipsel-qemu_mips) mipsel_qemu_dir="${override_dir}" ;;
2012-06-15 16:35:11 +00:00
mipsel-loongson) loongson_dir="${override_dir}" ;;
2012-06-06 10:31:24 +00:00
mips-qemu_mips) mips_qemu_dir="${override_dir}" ;;
2013-04-14 15:10:55 +00:00
powerpc-ieee1275) ppc_dir="${override_dir}"; system_area=common ;;
sparc64-ieee1275) sparc64_dir="${override_dir}"; system_area=sparc64 ;;
2013-04-24 12:02:58 +00:00
mips-arc) arcs_dir="${override_dir}"; system_area=arcs ;;
2013-04-25 20:42:35 +00:00
mipsel-arc) arc_dir="${override_dir}" ;;
2013-04-11 23:29:45 +00:00
i386-ieee1275) i386_ieee1275_dir="${override_dir}" ;;
2009-11-21 13:11:38 +00:00
esac
2009-11-14 18:38:11 +00:00
fi
2010-04-27 09:08:53 +00:00
# obtain date-based UUID
iso_uuid=$(date -u +%Y-%m-%d-%H-%M-%S-00)
grub_mkisofs_arguments="${grub_mkisofs_arguments} --modification-date=$(echo ${iso_uuid} | sed -e s/-//g)"
2009-12-21 16:11:35 +00:00
# build BIOS core.img
2009-11-21 13:11:38 +00:00
if test -e "${pc_dir}" ; then
2012-02-03 10:42:22 +00:00
gettext_printf "Enabling %s support ...\n" "BIOS"
2012-02-04 20:47:29 +00:00
load_cfg="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`"
core_img="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1
(for i in $(cat "${pc_dir}/partmap.lst") ${modules} ; do
echo "insmod $i"
done ;) > "${load_cfg}"
2009-12-21 17:40:26 +00:00
2012-02-04 20:47:29 +00:00
"$grub_mkimage" -O i386-pc -d "${pc_dir}/" -o "${core_img}" -c "$load_cfg" --prefix=/boot/grub \
2013-04-14 17:24:05 +00:00
$grub_decompression_module iso9660 biosdisk
2012-02-04 20:47:29 +00:00
cat "${pc_dir}/cdboot.img" "${core_img}" > "${iso9660_dir}/boot/grub/i386-pc/eltorito.img"
2009-12-21 17:40:26 +00:00
2013-04-14 15:10:55 +00:00
grub_mkisofs_arguments="${grub_mkisofs_arguments} -b boot/grub/i386-pc/eltorito.img -no-emul-boot -boot-load-size 4 -boot-info-table"
if [ "$system_area" = common ]; then
2013-04-14 16:53:14 +00:00
if "${xorriso}" -as mkisofs -help 2>&1 | fgrep "grub2-boot-info" >/dev/null; then
grub_mkisofs_arguments="${grub_mkisofs_arguments} --grub2-boot-info --grub2-mbr ${pc_dir}/boot_hybrid.img"
else
gettext "Your xorriso doesn't support \`--grub2-boot-info'. Some features are disabled. Please use xorriso 1.2.9 or later."
echo
sysarea_img="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1
cat "${pc_dir}/boot.img" "${core_img}" > "${sysarea_img}"
if [ "$(wc -c "${sysarea_img}" | awk '{ print $1; }')" -gt 32768 ]; then
gettext "Your xorriso doesn't support \`--grub2-boot-info'. Your core image is too big. Boot as disk is disabled. Please use xorriso 1.2.9 or later."
echo
else
grub_mkisofs_arguments="${grub_mkisofs_arguments} -G ${sysarea_img}"
fi
fi
2013-04-14 15:10:55 +00:00
fi
2013-04-14 16:53:14 +00:00
rm -f "${core_img}"
2009-11-14 18:38:11 +00:00
fi
2010-05-17 19:35:39 +00:00
# build multiboot core.img
2013-04-24 23:36:20 +00:00
make_image "${multiboot_dir}" i386-multiboot "${iso9660_dir}/boot/grub/i386-multiboot/core.elf" "pata ahci at_keyboard"
2010-05-17 19:35:39 +00:00
2013-04-26 09:27:24 +00:00
make_image_fwdisk "${i386_ieee1275_dir}" i386-ieee1275 "${iso9660_dir}/boot/grub/ofwx86.elf" ""
2013-04-11 23:29:45 +00:00
2012-06-06 10:31:24 +00:00
if test -e "${efi64_dir}" || test -e "${efi32_dir}" || test -e "${ia64_dir}"; then
2010-10-18 20:50:01 +00:00
efi_dir=`mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
2010-04-17 14:43:04 +00:00
mkdir -p "${efi_dir}/efi/boot"
2010-04-27 09:08:53 +00:00
2012-06-06 10:31:24 +00:00
# build bootia64.efi
make_image "${ia64_dir}" ia64-efi "${efi_dir}"/efi/boot/bootia64.efi ""
2010-05-17 19:35:39 +00:00
# build bootx64.efi
make_image "${efi64_dir}" x86_64-efi "${efi_dir}"/efi/boot/bootx64.efi ""
# build bootia32.efi
make_image "${efi32_dir}" i386-efi "${efi_dir}"/efi/boot/bootia32.efi ""
2011-03-29 22:05:25 +00:00
if [ -e "${efi_dir}"/efi/boot/bootia32.efi ]; then
# For old macs. Suggested by Peter Jones.
cp "${efi_dir}"/efi/boot/bootia32.efi "${efi_dir}"/efi/boot/boot.efi
fi
2010-04-27 09:08:53 +00:00
2013-04-12 22:38:04 +00:00
if [ -e "${efi_dir}"/efi/boot/bootx64.efi ] || [ -e "${efi_dir}"/efi/boot/bootia32.efi ]; then
mkdir -p "${iso9660_dir}"/System/Library/CoreServices
fi
if [ -e "${efi_dir}"/efi/boot/bootx64.efi ] && [ -e "${efi_dir}"/efi/boot/bootia32.efi ]; then
"$grub_glue_efi" -6 "${efi_dir}"/efi/boot/bootx64.efi -3 "${efi_dir}"/efi/boot/bootia32.efi -o "${iso9660_dir}"/System/Library/CoreServices/boot.efi
elif [ -e "${efi_dir}"/efi/boot/bootx64.efi ]; then
cp "${efi_dir}"/efi/boot/bootx64.efi "${iso9660_dir}"/System/Library/CoreServices/boot.efi
elif [ -e "${efi_dir}"/efi/boot/bootia32.efi ]; then
cp "${efi_dir}"/efi/boot/bootia32.efi "${iso9660_dir}"/System/Library/CoreServices/boot.efi
fi
2010-04-17 14:43:04 +00:00
mformat -C -f 2880 -L 16 -i "${iso9660_dir}"/efi.img ::
mcopy -s -i "${iso9660_dir}"/efi.img ${efi_dir}/efi ::/
2010-08-01 16:30:03 +00:00
rm -rf ${efi_dir}
2013-04-17 17:08:31 +00:00
grub_mkisofs_arguments="${grub_mkisofs_arguments} --efi-boot efi.img -efi-boot-part --efi-boot-image"
2009-12-29 10:24:13 +00:00
fi
2013-04-24 23:36:20 +00:00
make_image_fwdisk "${ppc_dir}" powerpc-ieee1275 "${iso9660_dir}/boot/grub/powerpc-ieee1275/core.elf" ""
if [ -e "${iso9660_dir}"/System/Library/CoreServices/boot.efi ] || [ -e "${iso9660_dir}/boot/grub/powerpc-ieee1275/core.elf" ]; then
2013-04-11 21:15:26 +00:00
mkdir -p "${iso9660_dir}"/System/Library/CoreServices
touch "${iso9660_dir}/mach_kernel"
cat > "${iso9660_dir}/System/Library/CoreServices/SystemVersion.plist" <<EOF
<plist version="1.0">
<dict>
<key>ProductBuildVersion</key>
<string></string>
<key>ProductName</key>
<string>${product_name}</string>
<key>ProductVersion</key>
<string>${product_version}</string>
</dict>
</plist>
EOF
"$grub_render_label" -f "$label_font" -b "$label_bgcolor" -c "$label_color" -t "${product_name} ${product_version}" -o "${iso9660_dir}/System/Library/CoreServices/.disk_label"
echo "${product_name} ${product_version}" > "${iso9660_dir}/System/Library/CoreServices/.disk_label.contentDetails"
2013-04-14 15:10:55 +00:00
if [ "$system_area" = common ]; then
2013-04-17 17:08:31 +00:00
grub_mkisofs_arguments="${grub_mkisofs_arguments} -hfsplus -apm-block-size 2048 -hfsplus-file-creator-type chrp tbxj /System/Library/CoreServices/.disk_label"
2013-04-14 15:10:55 +00:00
fi
2013-04-11 21:15:26 +00:00
fi
2013-04-24 23:36:20 +00:00
if [ -e "${iso9660_dir}/boot/grub/powerpc-ieee1275/core.elf" ] ; then
2013-04-11 21:15:26 +00:00
cp "${ppc_dir}/grub.chrp" "${iso9660_dir}"/System/Library/CoreServices/BootX
2013-04-18 22:36:23 +00:00
mkdir -p "${iso9660_dir}"/ppc/chrp
cp "${ppc_dir}/bootinfo.txt" "${iso9660_dir}"/ppc/bootinfo.txt
2013-04-24 23:36:20 +00:00
grub_mkisofs_arguments="${grub_mkisofs_arguments} /System/Library/CoreServices/grub.elf=${iso9660_dir}/boot/grub/powerpc-ieee1275/core.elf /boot/grub/powerpc.elf=${iso9660_dir}/boot/grub/powerpc-ieee1275/core.elf"
2013-04-11 21:15:26 +00:00
# FIXME: add PreP
2013-04-14 15:10:55 +00:00
if [ "$system_area" = common ]; then
grub_mkisofs_arguments="${grub_mkisofs_arguments} -hfsplus-file-creator-type chrp tbxi /System/Library/CoreServices/BootX -hfs-bless-by p /System/Library/CoreServices"
fi
grub_mkisofs_arguments="${grub_mkisofs_arguments} -sysid PPC"
2013-04-11 21:15:26 +00:00
fi
2013-04-14 15:10:55 +00:00
if [ -e "${iso9660_dir}"/System/Library/CoreServices/boot.efi ] && [ "$system_area" = common ]; then
2013-04-11 21:15:26 +00:00
grub_mkisofs_arguments="${grub_mkisofs_arguments} -hfs-bless-by i /System/Library/CoreServices/boot.efi"
fi
2013-04-14 15:10:55 +00:00
make_image_fwdisk "${sparc64_dir}" sparc64-ieee1275-cdcore "${iso9660_dir}/boot/grub/sparc64-ieee1275/core.img" ""
if [ -e "${iso9660_dir}"/boot/grub/sparc64-ieee1275/core.img ] && [ "$system_area" = sparc64 ]; then
sysarea_img="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1
dd if=/dev/zero count=1 bs=512 | cat - "${sparc64_dir}"/cdboot.img > "$sysarea_img"
grub_mkisofs_arguments="${grub_mkisofs_arguments} -G $sysarea_img -B , --grub2-sparc-core /boot/grub/sparc64-ieee1275/core.img"
fi
2013-04-27 17:12:11 +00:00
make_image_fwdisk "${arcs_dir}" mips-arc "${iso9660_dir}/boot/grub/mips-arc/core.img" ""
2013-04-24 12:02:58 +00:00
if [ -e "${iso9660_dir}/boot/grub/mips-arc/core.img" ]; then
2013-04-24 16:56:47 +00:00
grub_mkisofs_arguments="${grub_mkisofs_arguments} /boot/grub/mips-arc/grub=${iso9660_dir}/boot/grub/mips-arc/core.img /boot/grub/mips-arc/sashARCS=${iso9660_dir}/boot/grub/mips-arc/core.img /boot/grub/mips-arc/sash=${iso9660_dir}/boot/grub/mips-arc/core.img"
2013-04-24 12:02:58 +00:00
fi
if [ -e "${iso9660_dir}/boot/grub/mips-arc/core.img" ] && [ "$system_area" = arcs ]; then
2013-04-24 16:56:47 +00:00
grub_mkisofs_arguments="${grub_mkisofs_arguments} -mips-boot /boot/grub/mips-arc/sashARCS -mips-boot /boot/grub/mips-arc/sash -mips-boot /boot/grub/mips-arc/grub"
2013-04-24 12:02:58 +00:00
fi
2013-04-27 17:12:11 +00:00
make_image_fwdisk "${arc_dir}" mipsel-arc "${iso9660_dir}/boot/grub/arc.exe" ""
2013-04-25 20:42:35 +00:00
2013-04-24 23:36:20 +00:00
make_image "${mipsel_qemu_dir}" mipsel-qemu_mips-elf "${iso9660_dir}/boot/grub/roms/mipsel-qemu_mips.elf" "pata"
if [ -e "${iso9660_dir}/boot/grub/roms/mipsel-qemu_mips.elf" ] && [ -d "${rom_directory}" ]; then
cp "${iso9660_dir}/boot/grub/roms/mipsel-qemu_mips.elf" "${rom_directory}/mipsel-qemu_mips.elf"
2012-06-06 10:31:24 +00:00
fi
2012-06-15 16:35:11 +00:00
2013-04-25 00:14:46 +00:00
make_image "${loongson_dir}" mipsel-loongson-elf "${iso9660_dir}/boot/grub/loongson.elf" "pata -C xz"
if [ -e "${iso9660_dir}/boot/grub/loongson.elf" ] && [ -d "${rom_directory}" ]; then
cp "${iso9660_dir}/boot/grub/loongson.elf" "${rom_directory}/mipsel-loongson.elf"
2012-06-15 16:35:11 +00:00
fi
2013-04-24 23:36:20 +00:00
make_image "${loongson_dir}" mipsel-yeeloong-flash "${iso9660_dir}/boot/grub/roms/mipsel-yeeloong.bin" "pata -C xz"
if [ -e "${iso9660_dir}/boot/grub/roms/mipsel-yeeloong.bin" ] && [ -d "${rom_directory}" ]; then
cp "${iso9660_dir}/boot/grub/roms/mipsel-yeeloong.bin" "${rom_directory}/mipsel-yeeloong.bin"
2012-06-15 16:35:11 +00:00
fi
2013-04-24 23:36:20 +00:00
make_image "${loongson_dir}" mipsel-fuloong2f-flash "${iso9660_dir}/boot/grub/roms/mipsel-fuloong2f.bin" "pata -C xz"
if [ -e "${iso9660_dir}/boot/grub/roms/mipsel-fulong.bin" ] && [ -d "${rom_directory}" ]; then
cp "${iso9660_dir}/boot/grub/roms/mipsel-fulong.bin" "${rom_directory}/mipsel-fulong.bin"
2012-06-15 16:35:11 +00:00
fi
2013-04-24 23:36:20 +00:00
make_image "${mips_qemu_dir}" mips-qemu_mips-elf "${iso9660_dir}/boot/grub/roms/mips-qemu_mips.elf" "pata"
if [ -e "${iso9660_dir}/boot/grub/roms/mips-qemu_mips.elf" ] && [ -d "${rom_directory}" ]; then
cp "${iso9660_dir}/boot/grub/roms/mips-qemu_mips.elf" "${rom_directory}/mips-qemu_mips.elf"
2012-06-06 10:31:24 +00:00
fi
2013-04-24 23:36:20 +00:00
make_image "${qemu_dir}" i386-qemu "${iso9660_dir}/boot/grub/roms/qemu.img" "pata at_keyboard"
if [ -e "${iso9660_dir}/boot/grub/roms/qemu.img" ] && [ -d "${rom_directory}" ]; then
cp "${iso9660_dir}/boot/grub/roms/qemu.img" "${rom_directory}/qemu.img"
2010-05-17 19:35:39 +00:00
fi
2013-04-24 23:36:20 +00:00
make_image "${coreboot_dir}" i386-coreboot "${iso9660_dir}/boot/grub/roms/coreboot.elf" "pata ahci at_keyboard"
if [ -e "${iso9660_dir}/boot/grub/roms/coreboot.elf" ] && [ -d "${rom_directory}" ]; then
cp "${iso9660_dir}/boot/grub/roms/coreboot.elf" "${rom_directory}/coreboot.elf"
2010-05-17 19:35:39 +00:00
fi
2009-11-14 18:38:11 +00:00
# build iso image
2012-02-04 20:47:29 +00:00
"${xorriso}" -as mkisofs -graft-points ${grub_mkisofs_arguments} --protective-msdos-label -o "${output_image}" -r "${iso9660_dir}" --sort-weight 0 / --sort-weight 1 /boot ${source}
rm -rf "${iso9660_dir}"
2009-11-14 18:38:11 +00:00
2013-04-14 15:10:55 +00:00
rm -f "${sysarea_img}"
2009-12-21 17:40:26 +00:00
2009-11-14 18:38:11 +00:00
exit 0