Makefile | 2 +- imgcreate/live.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-)
New commits: commit c4c05b555a954aa370b1733268673d041b77aa66 Author: Brian C. Lane <[email protected]> Date: Mon Aug 6 11:51:23 2012 -0700 Version 17.14 diff --git a/Makefile b/Makefile index 66a2d1a..cccd82c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -VERSION = 17.13 +VERSION = 17.14 INSTALL = /usr/bin/install -c INSTALL_PROGRAM = ${INSTALL} commit 07912577fab79f34d7119860d9a5a45eae96fb6a Author: Brian C. Lane <[email protected]> Date: Mon Aug 6 11:47:01 2012 -0700 dracut needs to load vfat and msdos filesystems This reverts fecdb917a44 and removes the default filesystems, leaving vfat and msdos. diff --git a/imgcreate/live.py b/imgcreate/live.py index 88c7034..4aa220e 100755 --- a/imgcreate/live.py +++ b/imgcreate/live.py @@ -254,7 +254,7 @@ class LiveImageCreatorBase(LoopImageCreator): return env def __extra_filesystems(self): - return "squashfs ext4 ext3 ext2 vfat msdos "; + return "vfat msdos "; def __extra_drivers(self): retval = "sr_mod sd_mod ide-cd cdrom " @@ -295,6 +295,7 @@ class LiveImageCreatorBase(LoopImageCreator): if not os.path.exists(os.path.dirname(path)): makedirs(os.path.dirname(path)) f = open(path, "a") + f.write('filesystems+="' + self.__extra_filesystems() + ' "\n') f.write('drivers+="' + self.__extra_drivers() + ' "\n') f.write('add_dracutmodules+=" dmsquash-live "') f.close() -- livecd mailing list [email protected] https://admin.fedoraproject.org/mailman/listinfo/livecd
