From: Alexandre Belloni Date: Sun, 1 Mar 2015 12:54:14 +0000 (+0100) Subject: wic: fix fstab generation X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3cc387efac241538ec9b63a70d3786e3d8f67d33;p=openembedded-core.git wic: fix fstab generation Commit 0a6668f6e60b4195ff4163c00fc972bacdb27b4b still included some debug and is not working properly as the new fstab is generated too late. Change-Id: I1a6f764bc84002c675eee038230558330e62e39f Signed-off-by: Alexandre Belloni Signed-off-by: Ross Burton Signed-off-by: Richard Purdie Signed-off-by: Otavio Salvador --- diff --git a/scripts/lib/wic/imager/direct.py b/scripts/lib/wic/imager/direct.py index c605e64238..d368401af4 100644 --- a/scripts/lib/wic/imager/direct.py +++ b/scripts/lib/wic/imager/direct.py @@ -136,7 +136,7 @@ class DirectImageCreator(BaseImageCreator): fstab_lines.append(fstab_entry) def _write_fstab(self, fstab, fstab_lines): - fstab = open(fstab + ".new", "w") + fstab = open(fstab, "w") for line in fstab_lines: fstab.write(line) fstab.close() @@ -250,6 +250,8 @@ class DirectImageCreator(BaseImageCreator): if not self.ks.handler.bootloader.source and p.mountpoint == "/boot": self.ks.handler.bootloader.source = p.source + fstab = self.__write_fstab(self.rootfs_dir.get("ROOTFS_DIR")) + for p in parts: # need to create the filesystems in order to get their # sizes before we can add them and do the layout. @@ -274,7 +276,6 @@ class DirectImageCreator(BaseImageCreator): no_table = p.no_table, part_type = p.part_type) - fstab = self.__write_fstab(self.rootfs_dir.get("ROOTFS_DIR")) self._restore_fstab(fstab) self.__image.layout_partitions(self._ptable_format)