Do not provide the 'install bootloader into partition' feature in the interactive...
authorMichael Prokop <mika@grml.org>
Thu, 29 Oct 2009 00:41:33 +0000 (01:41 +0100)
committerMichael Prokop <mika@grml.org>
Thu, 29 Oct 2009 00:41:33 +0000 (01:41 +0100)
debian/changelog
grml-debootstrap

index fb51ae4..3b79840 100644 (file)
@@ -1,3 +1,10 @@
+grml-debootstrap (0.33) UNRELEASED; urgency=low
+
+  * Do not provide the 'install bootloader into partition' feature
+    in the interactive menu (since grub2 can't handle that).
+
+ -- Michael Prokop <mika@grml.org>  Thu, 29 Oct 2009 01:40:37 +0100
+
 grml-debootstrap (0.32) unstable; urgency=low
 
   * Drop support for old-stable/etch.
index 40480d2..a82a853 100755 (executable)
@@ -11,7 +11,7 @@ set -e # exit on any error
 
 # variables {{{
 PN="$(basename $0)"
-VERSION='0.32'
+VERSION='0.33-pre1'
 MNTPOINT="/mnt/debootstrap.$$"
 
 # inside the chroot system locales might not be available, so use minimum:
@@ -252,7 +252,6 @@ prompt_for_bootmanager()
   GETMBR=$(dialog --stdout --title "$PN" --default-item mbr \
           --menu "Where do you want to install the bootmanager grub?" 0 0 0 \
             mbr       "install bootmanager into $MBRPART" \
-            partition "install bootmanager into partition $TARGET" \
             nowhere   "do not install bootmanager at all" \
           ${ADDITIONAL_PARAMS})
   [ $? -eq 0 ] || bailout 3
@@ -272,9 +271,6 @@ prompt_for_bootmanager()
         GRUB="$MBRDISK"
       fi
       ;;
-    partition)
-      GRUB="$TARGET"
-      ;;
     hda)
       GRUB="/dev/hda"
       ;;