Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Jul 2007 01:58:25 +0200
From:      Raaf <raaf@zen.mooo.com>
To:        freebsd-gnome@freebsd.org
Subject:   hal no longer works with ext3fs
Message-ID:  <469EA921.4060409@zen.mooo.com>

next in thread | raw e-mail | index | archive | help
Mounting a Linux ext3fs partition with nautilus no longer works
with latest hal.

Following patch makes it work again:

--- hal-storage-mount.c.orig    Sun May 14 20:57:59 2006
+++ hal-storage-mount.c Thu Jul 19 01:31:48 2007
@@ -409,6 +409,8 @@
                return "cd9660";
        else if (! strcmp (fstype, "ext2"))
                return "ext2fs";
+       else if (! strcmp (fstype, "ext3"))
+               return "ext2fs";
        else if (! strcmp (fstype, "vfat"))
                return "msdosfs";
 #endif




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?469EA921.4060409>