From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1LW5Zq-0003ti-1A for mharc-grub-devel@gnu.org; Sun, 08 Feb 2009 04:03:46 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LW5Zn-0003sF-H3 for grub-devel@gnu.org; Sun, 08 Feb 2009 04:03:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LW5Zl-0003qx-S3 for grub-devel@gnu.org; Sun, 08 Feb 2009 04:03:42 -0500 Received: from [199.232.76.173] (port=35451 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LW5Zl-0003qr-I0 for grub-devel@gnu.org; Sun, 08 Feb 2009 04:03:41 -0500 Received: from moutng.kundenserver.de ([212.227.17.8]:62821) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LW5Zk-0000Nf-R7 for grub-devel@gnu.org; Sun, 08 Feb 2009 04:03:41 -0500 Received: from [85.180.55.22] (e180055022.adsl.alicedsl.de [85.180.55.22]) by mrelayeu.kundenserver.de (node=mrelayeu0) with ESMTP (Nemesis) id 0MKwh2-1LW5Zi136T-00035y; Sun, 08 Feb 2009 10:03:38 +0100 From: Felix Zielcke To: The development of GRUB 2 In-Reply-To: <20090207225222.GU6343@thorin> References: <1233866360.3426.31.camel@fz.local> <20090207225222.GU6343@thorin> Content-Type: multipart/mixed; boundary="=-DsQcT/RqboRNaCePQQcQ" Date: Sun, 08 Feb 2009 10:03:43 +0100 Message-Id: <1234083823.3429.3.camel@fz.local> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 X-Provags-ID: V01U2FsdGVkX1+o/w28mKnQmcXgGulVqizih3cGbDLiLbAHs9l CNqqh3d5/EifrZm3JCfK65q5H2aH0F70Y5tjA4ZGVlZsXE8g+S yziILckPbd5QU+HfjE0fNJ9KneZ7ka2 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: Re: [PATCH] try to avoid false positives on FAT filesystem X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2009 09:03:44 -0000 --=-DsQcT/RqboRNaCePQQcQ Content-Type: text/plain Content-Transfer-Encoding: 7bit Am Samstag, den 07.02.2009, 23:52 +0100 schrieb Robert Millan: > There's one, you forgot to attach it ;-) Actually I didn't forgot it, I was too lazy. I thought such a simple change doestn't need a patch send to list :) Well here it is. -- Felix Zielcke --=-DsQcT/RqboRNaCePQQcQ Content-Disposition: attachment; filename=move_fat_before_ext2.patch Content-Type: text/x-patch; name=move_fat_before_ext2.patch; charset=utf-8 Content-Transfer-Encoding: 7bit 2009-02-08 Felix Zielcke * conf/common.rmk (grub_probe_SOURCES): Move fs/ext2.c before fs/fat.c to avoid false posivites with FAT. (grub_fstest_SOURCES): Likewise. * conf/i386-pc.rmk (grub_emu_SOURCES): Likewise. * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise. * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise. * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise. * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise. * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise. Index: conf/common.rmk =================================================================== --- conf/common.rmk (revision 1980) +++ conf/common.rmk (working copy) @@ -14,7 +14,7 @@ grub_probe_SOURCES = util/grub-probe.c \ kern/device.c kern/disk.c kern/err.c kern/misc.c \ kern/parser.c kern/partition.c kern/file.c \ \ - fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \ + fs/affs.c fs/cpio.c fs/fat.c fs/ext2.c fs/hfs.c \ fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \ fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \ fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \ @@ -34,7 +34,7 @@ grub_fstest_SOURCES = util/grub-fstest.c disk/host.c disk/loopback.c normal/arg.c normal/misc.c \ lib/hexdump.c lib/crc.c commands/blocklist.c commands/ls.c \ \ - fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \ + fs/affs.c fs/cpio.c fs/fat.c fs/ext2.c fs/hfs.c \ fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \ fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \ fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \ Index: conf/i386-pc.rmk =================================================================== --- conf/i386-pc.rmk (revision 1980) +++ conf/i386-pc.rmk (working copy) @@ -134,7 +134,7 @@ grub_emu_SOURCES = commands/boot.c comma partmap/amiga.c partmap/apple.c partmap/pc.c partmap/sun.c \ partmap/acorn.c partmap/gpt.c \ \ - fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \ + fs/affs.c fs/cpio.c fs/fat.c fs/ext2.c fs/hfs.c \ fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \ fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \ fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \ Index: conf/x86_64-efi.rmk =================================================================== --- conf/x86_64-efi.rmk (revision 1980) +++ conf/x86_64-efi.rmk (working copy) @@ -42,7 +42,7 @@ grub_emu_SOURCES = commands/boot.c comma commands/i386/cpuid.c \ disk/loopback.c \ \ - fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \ + fs/affs.c fs/cpio.c fs/fat.c fs/ext2.c fs/hfs.c \ fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \ fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \ fs/ufs.c fs/xfs.c fs/afs.c \ Index: conf/powerpc-ieee1275.rmk =================================================================== --- conf/powerpc-ieee1275.rmk (revision 1980) +++ conf/powerpc-ieee1275.rmk (working copy) @@ -45,7 +45,7 @@ grub_emu_SOURCES = commands/boot.c comma lib/hexdump.c commands/halt.c commands/reboot.c \ disk/loopback.c \ \ - fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \ + fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/ext2.c fs/hfs.c \ fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \ fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \ fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \ Index: conf/i386-coreboot.rmk =================================================================== --- conf/i386-coreboot.rmk (revision 1980) +++ conf/i386-coreboot.rmk (working copy) @@ -62,7 +62,7 @@ grub_emu_SOURCES = commands/boot.c comma lib/hexdump.c commands/i386/cpuid.c \ disk/host.c disk/loopback.c \ \ - fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \ + fs/affs.c fs/cpio.c fs/fat.c fs/ext2.c fs/hfs.c \ fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \ fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \ fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \ Index: conf/sparc64-ieee1275.rmk =================================================================== --- conf/sparc64-ieee1275.rmk (revision 1980) +++ conf/sparc64-ieee1275.rmk (working copy) @@ -48,7 +48,7 @@ grub_mkimage_SOURCES = util/sparc64/ieee # commands/timeout.c commands/test.c \ # commands/halt.c commands/reboot.c \ # disk/loopback.c \ -# fs/affs.c fs/ext2.c fs/fat.c fs/fshelp.c fs/hfs.c fs/iso9660.c \ +# fs/affs.c fs/fat.c fs/ext2.c fs/fshelp.c fs/hfs.c fs/iso9660.c \ # fs/jfs.c fs/minix.c fs/sfs.c fs/ufs.c fs/xfs.c \ # grub_script.tab.c \ # io/gzio.c \ Index: conf/i386-ieee1275.rmk =================================================================== --- conf/i386-ieee1275.rmk (revision 1980) +++ conf/i386-ieee1275.rmk (working copy) @@ -61,7 +61,7 @@ grub_emu_SOURCES = commands/boot.c comma commands/i386/cpuid.c \ disk/host.c disk/loopback.c \ \ - fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \ + fs/affs.c fs/cpio.c fs/fat.c fs/ext2.c fs/hfs.c \ fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \ fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \ fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \ --=-DsQcT/RqboRNaCePQQcQ--