]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-mkrescue.in: Pass unrecognized options to xorriso.
authorThomas Schmitt <scdbackup@gmx.net>
Sat, 12 Jun 2010 14:03:34 +0000 (16:03 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 12 Jun 2010 14:03:34 +0000 (16:03 +0200)
ChangeLog
util/grub-mkrescue.in

index aababc8456004dc4b602c09563befd3d68dad99d..34823d8b85dbb1cd24e7c75f89bcf0c9481d9d25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-06-12  Thomas Schmitt  <scdbackup@gmx.net>
+
+       * util/grub-mkrescue.in: Pass unrecognized options to xorriso.
+
 2010-06-12  Colin Watson  <cjwatson@ubuntu.com>
 
        Avoid false positives in fs.lst, partmap.lst, and video.lst due to
index 90c0318823a3f97d1f95b60787b4c10c41629b04..f8445a1e356322e27540155f4724a4efcf83687a 100644 (file)
@@ -59,9 +59,12 @@ Make GRUB rescue image.
   --xorriso=FILE          use FILE as xorriso [optional]
   --grub-mkimage=FILE     use FILE as grub-mkimage
 
-$self generates a bootable rescue image with specified source files or directories.
+$self generates a bootable rescue image with specified source files, source
+directories, or mkisofs options listed by: xorriso -as mkisofs -help
+Option -- switches to native xorriso command mode. or directories.
 
 Report bugs to <bug-grub@gnu.org>.
+Mail xorriso support requests to <bug-xorriso@gnu.org>.
 EOF
 }
 
@@ -90,11 +93,6 @@ for option in "$@"; do
        grub_mkimage=`echo "$option" | sed 's/--grub-mkimage=//'` ;;
     --xorriso=*)
         xorriso=`echo "${option}/" | sed 's/--xorriso=//'` ;;
-    -*)
-       echo "Unrecognized option \`$option'" 1>&2
-       usage
-       exit 1
-       ;;
     *)
        source="${source} ${option}" ;;
     esac