Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sbin/fdisk Fix QNX partition IDs, confirmed by looking at Fr...



details:   https://anonhg.NetBSD.org/src/rev/4fce8abe4274
branches:  trunk
changeset: 487909:4fce8abe4274
user:      wiz <wiz%NetBSD.org@localhost>
date:      Wed Jun 14 19:35:50 2000 +0000

description:
Fix QNX partition IDs, confirmed by looking at FreeBSD's fdisk.
Note: 77 == 0x4d

diffstat:

 sbin/fdisk/fdisk.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (38 lines):

diff -r a4557099e39b -r 4fce8abe4274 sbin/fdisk/fdisk.c
--- a/sbin/fdisk/fdisk.c        Wed Jun 14 18:43:57 2000 +0000
+++ b/sbin/fdisk/fdisk.c        Wed Jun 14 19:35:50 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fdisk.c,v 1.40 2000/05/27 19:02:54 fvdl Exp $ */
+/*     $NetBSD: fdisk.c,v 1.41 2000/06/14 19:35:50 wiz Exp $ */
 
 /*
  * Mach Operating System
@@ -29,7 +29,7 @@
 #include <sys/cdefs.h>
 
 #ifndef lint
-__RCSID("$NetBSD: fdisk.c,v 1.40 2000/05/27 19:02:54 fvdl Exp $");
+__RCSID("$NetBSD: fdisk.c,v 1.41 2000/06/14 19:35:50 wiz Exp $");
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -186,6 +186,9 @@
        {0x41, "Linux/MINIX (sharing disk with DRDOS) or Personal RISC boot"},
        {0x42, "SFS or Linux swap (sharing disk with DRDOS)"},
        {0x43, "Linux native (sharing disk with DRDOS)"},
+       {0x4D, "QNX4.x"},
+       {0x4E, "QNX4.x 2nd part"},
+       {0x4F, "QNX4.x 3rd part"},
        {0x50, "DM (disk manager)"},
        {0x51, "DM6 Aux1 (or Novell)"},
        {0x52, "CP/M or Microport SysV/AT"},
@@ -208,9 +211,6 @@
        {0x74, reserved},
        {0x75, "PC/IX"},
        {0x76, reserved},
-       {0x77, "QNX4.x"},
-       {0x78, "QNX4.x 2nd part"},
-       {0x79, "QNX4.x 3rd part"},
        {0x80, "MINIX until 1.4a"},
        {0x81, "MINIX since 1.4b, early Linux, Mitac dmgr"},
        {0x82, "Linux swap or Prime or Solaris"},



Home | Main Index | Thread Index | Old Index