liveusb-creator.spec | 5 ++++- liveusb/creator.py | 2 +- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-)
New commits: commit bfaa19f05cc2988d38fa0a0fa8086e1bf17dc0a1 Author: Luke Macken lmacken@redhat.com Date: Tue Jun 9 10:18:43 2009 -0400
3.6.7
diff --git a/liveusb-creator.spec b/liveusb-creator.spec index 6e00978..39b1852 100644 --- a/liveusb-creator.spec +++ b/liveusb-creator.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: liveusb-creator -Version: 3.6.6 +Version: 3.6.7 Release: 1%{?dist} Summary: A liveusb creator
@@ -68,6 +68,9 @@ rm -rf %{buildroot} %config(noreplace) %{_sysconfdir}/security/console.apps/%{name}
%changelog +* Tue Jun 09 2009 Luke Macken lmacken@redhat.com - 3.6.7-1 +- Fix a bug with ext formatted sticks + * Tue Jun 09 2009 Luke Macken lmacken@redhat.com - 3.6.6-1 - Update to v3.6.6 - Merge the dcon-unfreeze patch upstream diff --git a/setup.py b/setup.py index 5a8850e..63e2d7c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ if sys.platform == 'win32':
setup( name = 'liveusb-creator', - version = '3.6.6', + version = '3.6.7', packages = ['liveusb', 'liveusb/urlgrabber'], scripts = ['liveusb-creator'], license = 'GNU General Public License (GPL)', @@ -55,7 +55,7 @@ if sys.platform == 'win32': else: setup( name = 'liveusb-creator', - version = '3.6.6', + version = '3.6.7', packages = ['liveusb'], scripts = ['liveusb-creator'], license = 'GNU General Public License (GPL)',
commit 5f2388271bfcf3759b27b8182a3d4d7a4020058b Author: Luke Macken lmacken@redhat.com Date: Tue Jun 9 10:17:04 2009 -0400
Fix a bug when using ext formatted sticks.
So, apparently extlinux expects the configuration file to be named extlinux.conf not .cfg. Wow.
diff --git a/liveusb/creator.py b/liveusb/creator.py index 11c2668..23c4739 100755 --- a/liveusb/creator.py +++ b/liveusb/creator.py @@ -560,7 +560,7 @@ class LinuxLiveUSBCreator(LiveUSBCreator):
if self.drive['fstype'] in ('ext2', 'ext3'): shutil.move(os.path.join(syslinux_path, "syslinux.cfg"), - os.path.join(syslinux_path, "extlinux.cfg")) + os.path.join(syslinux_path, "extlinux.conf")) self.popen('extlinux -i %s' % syslinux_path) else: # FAT self.popen('syslinux%s%s -d %s %s' % (self.opts.force and ' -f' or ' ',
liveusb-creator@lists.stg.fedorahosted.org