Makefile | 2 +- imgcreate/live.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-)
New commits: commit a009612bb09e2c94afa889aceefb2171059eac84 Author: Brian C. Lane <[email protected]> Date: Mon Aug 6 11:49:20 2012 -0700 Version 18.8 diff --git a/Makefile b/Makefile index 6d0335d..16b370b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -VERSION = 18.7 +VERSION = 18.8 INSTALL = /usr/bin/install -c INSTALL_PROGRAM = ${INSTALL} commit 4c3d86a0281e76ad1977b7b4073a7fedb020d5b2 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 091812a30e7 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
