Alek,
Attached is a patch to Moblin Image Creator that adds an entry to fstab
for the / ext3 partition. This fixes a bug where GnomeVFS will not work
properly without such an entry.
Thanks,
Michael
diff --git a/libs/InstallImage.py b/libs/InstallImage.py
index 8be7649..b8f044e 100755
--- a/libs/InstallImage.py
+++ b/libs/InstallImage.py
@@ -198,6 +198,7 @@ class InstallImage(object):
def create_fstab(self, swap = True):
fstab_file = open(os.path.join(self.target.fs_path, 'etc/fstab'), 'w')
+ print >> fstab_file, "/dev/sda2 / ext3 defaults,noatime 0 0"
print >> fstab_file, "proc /proc proc defaults 0 0"
if swap:
print >> fstab_file, "/dev/sda3 none swap sw 0 0"
--
Ubuntu-mobile mailing list
[email protected]
Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-mobile