I forgot the patch on the previous email
diff -r -U 3 boot-floppies/utilities/libfdisk/partbl_msdos.c 
boot-floppies.orig/utilities/libfdisk/partbl_msdos.c
--- boot-floppies/utilities/libfdisk/partbl_msdos.c     Wed Jan 10 19:33:43 2001
+++ boot-floppies.orig/utilities/libfdisk/partbl_msdos.c        Sat May  6 01:44:26 
+2000
@@ -322,27 +322,21 @@
        if (is_extended_partition(p)) {
            extended_partition(device, fd, START_SECT(p), NR_SECTS(p));
        }
-    }
 #if HAVE_BSD_DISKLABEL
-    p = (struct partition *) (0x1be + data);
-    for (i=1 ; i<=4 ; minor++,i++,p++) {
        if (SYS_IND(p) == BSD_PARTITION) {
            bsd_disklabel_partition(device, fd, START_SECT(p));
        }
-    }
 #endif
 #if HAVE_SOLARIS_X86_PARTITION
-    /* [EMAIL PROTECTED]: Solaris has a nasty indicator: 0x82
-     * which also means linux swap.  For that reason, all
-     * of the prints are done inside the
-     * solaris_x86_partition routine */
-    p = (struct partition *) (0x1be + data);
-    for (i=1 ; i<=4 ; minor++,i++,p++) {
+       /* [EMAIL PROTECTED]: Solaris has a nasty indicator: 0x82
+        * which also means linux swap.  For that reason, all
+        * of the prints are done inside the
+        * solaris_x86_partition routine */
        if (SYS_IND(p) == SOLARIS_X86_PARTITION) {
            solaris_x86_partition(device, fd, START_SECT(p));
        }
-    }
 #endif
+    }
     /*
      *  Check for old-style Disk Manager partition table
      */

Reply via email to