[Fedora-livecd-list] 3 commits - imgcreate/live.py Makefile

Brian C. Lane bcl at fedoraproject.org
Sat Mar 16 14:34:07 UTC 2013


 Makefile          |    2 +-
 imgcreate/live.py |    8 +++++---
 2 files changed, 6 insertions(+), 4 deletions(-)

New commits:
commit 7342c11b485863dcbf747ec3c99cc6b04585191b
Author: Brian C. Lane <bcl at redhat.com>
Date:   Sat Mar 16 07:33:32 2013 -0700

    Version 19.1

diff --git a/Makefile b/Makefile
index a587956..33a6e43 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 
-VERSION = 19.0
+VERSION = 19.1
 
 INSTALL = /usr/bin/install -c
 INSTALL_PROGRAM = ${INSTALL}


commit 9f782637b32a3786cfd8d56dbc9a27c50f38b4dd
Author: Brian C. Lane <bcl at redhat.com>
Date:   Thu Mar 14 11:41:46 2013 -0700

    iso9660 module is names isofs

diff --git a/imgcreate/live.py b/imgcreate/live.py
index cbf59f1..11fa7fc 100755
--- a/imgcreate/live.py
+++ b/imgcreate/live.py
@@ -262,10 +262,10 @@ class LiveImageCreatorBase(LoopImageCreator):
         return env
 
     def __extra_filesystems(self):
-        return "vfat msdos ";
+        return "vfat msdos isofs ";
 
     def __extra_drivers(self):
-        retval = "sr_mod sd_mod ide-cd cdrom iso9660 "
+        retval = "sr_mod sd_mod ide-cd cdrom "
         for module in self.__modules:
             if module == "=usb":
                 retval = retval + "ehci_hcd uhci_hcd ohci_hcd "


commit 3371ebd19c590feb26860dc6d8c19d6622d9c815
Author: Brian C. Lane <bcl at redhat.com>
Date:   Thu Mar 14 11:39:36 2013 -0700

    disable dracut hostonly and rescue image (#921422)

diff --git a/imgcreate/live.py b/imgcreate/live.py
index dbb4dbb..cbf59f1 100755
--- a/imgcreate/live.py
+++ b/imgcreate/live.py
@@ -305,7 +305,9 @@ class LiveImageCreatorBase(LoopImageCreator):
         f = open(path, "a")
         f.write('filesystems+="' + self.__extra_filesystems() + ' "\n')
         f.write('drivers+="' + self.__extra_drivers() + ' "\n')
-        f.write('add_dracutmodules+=" dmsquash-live pollcdrom "')
+        f.write('add_dracutmodules+=" dmsquash-live pollcdrom "\n')
+        f.write('hostonly="no"\n')
+        f.write('dracut_rescue_image="no"\n')
         f.close()
 
     def __create_iso(self, isodir):




More information about the livecd mailing list