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")"
- print_option_help "--sparc-boot" "$(gettext "enable sparc boot. Disables HFS+, APM and boot as disk image for i386-pc")"
+ 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")"
echo
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
echo
@@ -154,6 +156,9 @@ do
--sparc-boot)
system_area=sparc64 ;;
+ --arcs-boot)
+ system_area=arcs ;;
+
--product-name)
product_name=`argument $option "$@"`; shift ;;
--product-name=*)
@@ -273,6 +278,8 @@ if [ "${override_dir}" = "" ] ; then
system_area=common;
elif test -e "${sparc64_dir}" ; then
system_area=sparc64;
+ elif test -e "${arcs_dir}" ; then
+ system_area=arcs;
fi
fi
if test -e "${multiboot_dir}" ; then
@@ -314,6 +321,9 @@ if [ "${override_dir}" = "" ] ; then