]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2003-01-25 Yoshinori K. Okuji <okuji@enbug.org>
authorokuji <okuji@localhost>
Fri, 24 Jan 2003 16:28:41 +0000 (16:28 +0000)
committerokuji <okuji@localhost>
Fri, 24 Jan 2003 16:28:41 +0000 (16:28 +0000)
From Steven Dick <ssd.gnu@mmae.ucf.edu>:
* stage2/pc_slice.h (PC_SLICE_TYPE_DELL_UTIL): New macro.
(IS_PC_SLICE_TYPE_FAT): Recognize PC_SLIDE_TYPE_DELL_UTIL as
well.

ChangeLog
THANKS
stage2/pc_slice.h

index 4b1803314157046c4b2766dcd7d73e9cafb11565..67193b05190aa92ba0eb9ba549f3529f1584dac5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2003-01-25  Yoshinori K. Okuji  <okuji@enbug.org>
+
+       From Steven Dick <ssd.gnu@mmae.ucf.edu>:
+       * stage2/pc_slice.h (PC_SLICE_TYPE_DELL_UTIL): New macro.
+       (IS_PC_SLICE_TYPE_FAT): Recognize PC_SLIDE_TYPE_DELL_UTIL as
+       well.
+
 2003-01-25  Yoshinori K. Okuji  <okuji@enbug.org>
 
        From Karsten Scheibler <karsten.scheibler@student.uni-halle.de>:
diff --git a/THANKS b/THANKS
index 9bc14a033ef75cf52818f1feeb9cd7c3378ce8a6..7142335c9138486e538a0f3b70d5e806d78a8835 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -89,6 +89,7 @@ Rogelio M. Serrano Jr. <rogelio@victorio.com>
 Serguei Tzukanov <tzukanov@narod.ru>
 Stefan Ondrejicka <ondrej@idata.sk>
 Stephen Early <steve@greenend.org.uk>
+Steven Dick <ssd.gnu@mmae.ucf.edu>
 Takehiro Suzuki <takehiro@coral.ocn.ne.jp>
 Thierry DELHAISE <thierry.delhaise@delhaise.com>
 Thierry Laronde <thierry.laronde@polynum.com>
index c7e9f1110470b9cd4fe4308f0372ba70b7932445..a38d97f46d6875c4a8694af92fc131c681268fa3 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 1999, 2000, 2001   Free Software Foundation, Inc.
+ *  Copyright (C) 1999,2000,2001,2003   Free Software Foundation, Inc.
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
 #define PC_SLICE_TYPE_EXT2FS           0x83
 #define PC_SLICE_TYPE_LINUX_EXTENDED   0x85
 #define PC_SLICE_TYPE_VSTAFS           0x9e
+#define PC_SLICE_TYPE_DELL_UTIL                0xde
 #define PC_SLICE_TYPE_LINUX_RAID       0xfd
 
 
      || _type == PC_SLICE_TYPE_FAT16_GT32M \
      || _type == PC_SLICE_TYPE_FAT16_LBA \
      || _type == PC_SLICE_TYPE_FAT32 \
-     || _type == PC_SLICE_TYPE_FAT32_LBA; })
+     || _type == PC_SLICE_TYPE_FAT32_LBA \
+     || _type == PC_SLICE_TYPE_DELL_UTIL; })
 
 #define IS_PC_SLICE_TYPE_EXTENDED(type)        \
   (((type) == PC_SLICE_TYPE_EXTENDED)  \