This email list is read-only. Emails sent to this list will be discarded
----------------------------------
debian/changelog | 7 +++++--
libs/InstallImage.py | 10 +++++-----
2 files changed, 10 insertions(+), 7 deletions(-)
New commits:
commit c6a87e5e695c1d49f67609cd6834df9dc77360b3
Author: Prajwal Mohan <[EMAIL PROTECTED]>
Date: Fri Aug 22 13:21:44 2008 -0700
Passing callback to pdk_utils.copy causing problems in FC9
Diff in this email is a maximum of 400 lines.
diff --git a/debian/changelog b/debian/changelog
index b36f983..f8ea523 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -140,9 +140,12 @@ moblin-image-creator (0.45) UNRELEASED; urgency=low
* Fixed some Makefile.am to entried .empty file. It can correspond only
Makefile.am. so Removed a .empty file.
* Merged from UME patches. Based patch file is
moblin-image-creator-0.44+repack/debian/patches/73_create-kernel-img-conf.patch.
Thanks to Loic Minier <[EMAIL PROTECTED]>.
* Merged from UME patches. Based patch file is
moblin-image-creator-0.44+repack/debian/patches/74_boot-is-really-boot.patch.
Thanks to Loic Minier <[EMAIL PROTECTED]>.
- * Droped backwords compatibility codes.
+ * Droped backwords compatibility codes.
- -- Mitsutaka Amano <[EMAIL PROTECTED]> Fri, 22 Aug 2008 20:50:07 +0900
+ [ Prajwal Mohan ]
+ * Passing callback to pdk_utils.copy causing problems in FC9
+
+ -- Prajwal Mohan <[EMAIL PROTECTED]> Fri, 22 Aug 2008 13:21:09 -0700
moblin-image-creator (0.44) gaston; urgency=low
diff --git a/libs/InstallImage.py b/libs/InstallImage.py
index ac9f30b..43f60c6 100755
--- a/libs/InstallImage.py
+++ b/libs/InstallImage.py
@@ -472,8 +472,8 @@ class LiveIsoImage(InstallImage):
self.kernels.pop(0)
# Flashing yellow on a blue background
self.install_kernels("9e", image_type)
- pdk_utils.copy(self.rootfs_path, self.tmp_path, callback =
self.progress_callback)
- pdk_utils.copy("/usr/lib/syslinux/isolinux.bin", self.tmp_path,
callback = self.progress_callback)
+ pdk_utils.copy(self.rootfs_path, self.tmp_path)
+ pdk_utils.copy("/usr/lib/syslinux/isolinux.bin", self.tmp_path)
print _("Creating CD image file at: %s") % self.path
cmd_line = "genisoimage -quiet -o %s -b isolinux.bin -c boot.cat
-no-emul-boot -boot-load-size 4 -boot-info-table -l -R -r %s" % (self.path,
self.tmp_path)
@@ -600,7 +600,7 @@ class LiveUsbImage(BaseUsbImage):
# Flashing yellow on a blue background
self.install_kernels("9e", image_type)
try:
- pdk_utils.copy(self.rootfs_path, self.tmp_path, callback =
self.progress_callback)
+ pdk_utils.copy(self.rootfs_path, self.tmp_path)
except OSError:
print _("Could not copy rootfs_path. Ignored error")
@@ -646,11 +646,11 @@ class InstallUsbImage(BaseUsbImage):
# Flashing yellow on a red background
self.install_kernels("ce", image_type)
try:
- pdk_utils.copy(self.rootfs_path, self.tmp_path, callback =
self.progress_callback)
+ pdk_utils.copy(self.rootfs_path, self.tmp_path)
except OSError:
print _("Could not copy rootfs_path. Ignored error")
try:
- pdk_utils.copy(self.bootfs_path, self.tmp_path, callback =
self.progress_callback)
+ pdk_utils.copy(self.bootfs_path, self.tmp_path)
except OSError:
print _("Could not copy bootfs_path. Ignored error")
try:
_______________________________________________
Commits mailing list
[email protected]
https://www.moblin.org/mailman/listinfo/commits