Use multiboot for booting MirOS BSD when using grub2
authorMichael Prokop <mika@grml.org>
Mon, 4 May 2009 17:52:20 +0000 (19:52 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 4 May 2009 17:52:20 +0000 (19:52 +0200)
debian/changelog
grml2usb

index 53c7adf..bfba705 100644 (file)
@@ -5,8 +5,9 @@ grml2usb (0.9.5) UNRELEASED; urgency=low
   * Display program version during execution.
   * Apply fix by Peter Daum <gator@cs.tu-berlin.de>, making sure
     to use the normalized path for unmounting. Thanks!
+  * Use multiboot for booting MirOS BSD when using grub2.
 
- -- Michael Prokop <mika@grml.org>  Tue, 21 Apr 2009 10:31:18 +0200
+ -- Michael Prokop <mika@grml.org>  Mon, 04 May 2009 19:51:44 +0200
 
 grml2usb (0.9.4) unstable; urgency=low
 
index b5338bd..453a2b8 100755 (executable)
--- a/grml2usb
+++ b/grml2usb
@@ -283,9 +283,9 @@ menuentry "FreeDOS" {
     initrd  /boot/addons/balder10.imz
 }
 
-menuentry "MirBSD" {
+menuentry "MirOS BSD" {
     set root=(hd0,%(install_partition)s)
-    linux   /boot/addons/bsd4grml/ldbsd.com
+    multiboot   /boot/addons/bsd4grml/ldbsd.com
 }
 
 menuentry "Boot OS of first partition on first disk" {
@@ -453,7 +453,7 @@ title FreeDOS
 kernel (hd0,%(install_partition)s)/boot/addons/memdisk
 initrd (hd0,%(install_partition)s)/boot/addons/balder10.imz
 
-title MirBSD
+title MirOS BSD
 kernel (hd0,%(install_partition)s)/boot/addons/bsd4grml/ldbsd.com
 
 """ % {'grml_flavour': grml_flavour, 'local_datestamp': local_datestamp,