From 3e41ca492a805e10b592b3d9a59d8277ba4ec8ef Mon Sep 17 00:00:00 2001 From: okuji Date: Fri, 24 Jan 2003 16:28:41 +0000 Subject: [PATCH] 2003-01-25 Yoshinori K. Okuji From Steven Dick : * 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 | 7 +++++++ THANKS | 1 + stage2/pc_slice.h | 6 ++++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4b1803314..67193b051 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-01-25 Yoshinori K. Okuji + + From Steven Dick : + * 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 From Karsten Scheibler : diff --git a/THANKS b/THANKS index 9bc14a033..7142335c9 100644 --- a/THANKS +++ b/THANKS @@ -89,6 +89,7 @@ Rogelio M. Serrano Jr. Serguei Tzukanov Stefan Ondrejicka Stephen Early +Steven Dick Takehiro Suzuki Thierry DELHAISE Thierry Laronde diff --git a/stage2/pc_slice.h b/stage2/pc_slice.h index c7e9f1110..a38d97f46 100644 --- a/stage2/pc_slice.h +++ b/stage2/pc_slice.h @@ -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 @@ -114,6 +114,7 @@ #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 @@ -127,7 +128,8 @@ || _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) \