Compare commits

...

19 Commits
master ... el5

Author SHA1 Message Date
Fedora Release Engineering 61ee7b2d4d dist-git conversion 2010-07-29 02:28:44 +00:00
Bill Nottingham d8b65d8130 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:57:24 +00:00
Jeroen van Meeuwen 13c663a1f2 013.2-2 2008-11-09 18:13:34 +00:00
Lubomir Rintel c9600c878f - Fix invocation of extlinux 2008-10-27 11:31:13 +00:00
Jeroen van Meeuwen 81a3af54fb 013-8.el5 2008-08-31 13:51:23 +00:00
Jeroen van Meeuwen d24f18b9fc Why doesn't it find these files? They're in the imported SRPM ffs 2008-08-10 14:17:54 +00:00
Jeroen van Meeuwen 1c8ed425a8 013-7.el5 2008-08-10 14:11:07 +00:00
Jeroen van Meeuwen 0c0b040d0f 013-6.el5 2008-08-03 17:55:37 +00:00
Rahul Sundaram 34ea64d037 Fix changelog, bump release 2008-01-29 07:22:57 +00:00
Rahul Sundaram 9301c20681 Adding livecd-iso-to-disk patch to fix checkisomd5sum location 2008-01-29 07:16:16 +00:00
Rahul Sundaram c8ed96520a checkisomd5sum location has changed between RHEL 5 and Fedora 8. Adding a
patch for livecd-iso-to-disk script
2008-01-29 07:13:55 +00:00
Rahul Sundaram 250f83da7f *** empty log message *** 2008-01-28 23:37:38 +00:00
Rahul Sundaram 14358377b9 Use python sitelib as per packaging guidelines which fixes x86_64 build 2008-01-28 23:35:42 +00:00
Rahul Sundaram c5ba14982e Fix date 2008-01-28 23:15:21 +00:00
Rahul Sundaram ab83cc28c7 Fix date 2008-01-28 23:13:13 +00:00
Rahul Sundaram b959c888da Fix build on x86_64 2008-01-28 23:09:03 +00:00
Rahul Sundaram 79ad8c0a1a initial commit for EPEL 2008-01-28 22:55:54 +00:00
Kevin Fenzi 33419b2038 Initialize branch EL-5 for livecd-tools 2008-01-27 19:18:01 +00:00
Jeremy Katz aad66402ed - disable screensaver with default config
- add aic7xxx and sym53c8xx drivers to default initramfs
- fixes from johnp for FC6 support in the creator
- fix iso-to-stick to work on FC6
2007-05-04 22:11:36 +00:00
5 changed files with 109 additions and 34 deletions

View File

@ -1 +0,0 @@
livecd-tools-007.tar.bz2

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
livecd-tools-013.2.tar.bz2

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: livecd-tools
# $Id$
NAME := livecd-tools
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View File

@ -1,8 +1,11 @@
%define debug_package %{nil}
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Summary: Tools for building live CD's
Name: livecd-tools
Version: 007
Release: 1%{?dist}
License: GPL
Version: 013.2
Release: 2%{?dist}
License: GPLv2+
Group: System Environment/Base
URL: http://git.fedoraproject.org/?p=hosted/livecd
Source0: %{name}-%{version}.tar.bz2
@ -10,14 +13,18 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: util-linux
Requires: coreutils
Requires: e2fsprogs
Requires: yum >= 3.0.0
Requires: yum >= 3.1.7
Requires: mkisofs
Requires: squashfs-tools
Requires: pykickstart >= 0.96
Requires: syslinux >= 3.30
Requires: dosfstools >= 2.11-8
BuildArch: noarch
ExcludeArch: ppc pp64
Requires: pykickstart >= 0.43
Requires: dosfstools >= 2.11
Requires: anaconda-runtime
%ifarch %{ix86} x86_64
Requires: syslinux
%endif
%ifarch ppc ppc64
Requires: yaboot
%endif
%description
Tools for generating live CD's on Fedora based systems including
@ -40,14 +47,103 @@ rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING README HACKING
%{_bindir}/livecd-creator
%{_bindir}/livecd-iso-to-disk
%{_bindir}/*
%dir /usr/lib/livecd-creator
/usr/lib/livecd-creator/mayflower
%dir %{_datadir}/livecd-tools
%{_datadir}/livecd-tools/*
%{python_sitelib}/imgcreate/*
%changelog
* Sun Nov 09 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 013.2-2
- Fix requirements
- Fix indentation errors (bkearney)
* Thu Oct 30 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 013.1-1
- Apply backported patches
* Mon Oct 27 2008 Lubomir Rintel <lkundrak@v3.sk> - 013-8.1
- Fix invocation of extlinux
* Sun Aug 03 2008 Jeroen van Meeuwen <kanarip@fedoraproject.org> - 013-8
- Fix ksconfigs, fix building and naming of patches
* Tue Jan 29 2008 Rahul Sundaram <sundaram@fedoraproject.org> - 013-5
- Patch livecd-iso-to-disk for checkisomd5 location
* Tue Jan 29 2008 Rahul Sundaram <sundaram@fedoraproject.org> - 013-4
- Use python sitelib macro properly
* Tue Jan 29 2008 Rahul Sundaram <sundaram@fedoraproject.org> - 013-3
- Fix build on x86_64
* Mon Jan 28 2008 Rahul Sundaram <sundaram@fedoraproject.org> - 013-2
- Initial build for EPEL
* Mon Oct 29 2007 Jeremy Katz <katzj@redhat.com> - 013-1
- Lots of config updates
- Support 'device foo' to say what modules go in the initramfs
- Support multiple kernels being installed
- Allow blacklisting kernel modules on boot with blacklist=foo
- Improve bootloader configs
- Split configs off for f8
* Tue Sep 25 2007 Jeremy Katz <katzj@redhat.com> - 012-1
- Allow %%post --nochroot to work for putting files in the root of the iso
- Set environment variables for when %%post is run
- Add progress for downloads (Colin Walters)
- Add cachedir option (Colin Walters)
- Fixes for ppc/ppc64 to work again
- Clean up bootloader config a little
- Enable swaps in the default desktop config
- Ensure all configs are installed (#281911)
- Convert method line to a repo for easier config reuse (jkeating)
- Kill the modprobe FATAL warnings (#240585)
- Verify isos with iso-to-disk script
- Allow passing xdriver for setting the xdriver (#291281)
- Add turboliveinst patch (Douglas McClendon)
- Make iso-to-disk support --resetmbr (#294041)
- Clean up filesystem layout (Douglas McClendon)
- Manifest tweaks for most configs
* Tue Aug 28 2007 Jeremy Katz <katzj@redhat.com> - 011-1
- Many config updates for Fedora 8
- Support $basearch in repo line of configs; use it
- Support setting up Xen kernels and memtest86+ in the bootloader config
- Handle rhgb setup
- Improved default fs label (Colin Walters)
- Support localboot from the bootloader (#252192)
- Use hidden menu support in syslinux
- Have a base desktop config included by the other configs (Colin Walters)
- Use optparse for optino parsing
- Remove a lot of command line options; things should be specified via the
kickstart config instead
- Beginnings of PPC support (David Woodhouse)
- Clean up kernel module inclusion to take advantage of files in Fedora
kernels listing storage drivers
* Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 010-1
- Separate out configs used for Fedora 7
- Add patch from Douglas McClendon to make images smaller
- Add patch from Matt Domsch to work with older syslinux without vesamenu
- Add support for using mirrorlists; use them
- Let livecd-iso-to-disk work with uncompressed images (#248081)
- Raise error if SELinux requested without being enabled (#248080)
- Set service defaults on level 2 also (#246350)
- Catch some failure cases
- Allow specifying tmpdir
- Add patch from nameserver specification from Elias Hunt
* Wed May 30 2007 Jeremy Katz <katzj@redhat.com> - 009-1
- miscellaneous live config changes
- fix isomd5 checking syntax error
* Fri May 4 2007 Jeremy Katz <katzj@redhat.com> - 008-1
- disable screensaver with default config
- add aic7xxx and sym53c8xx drivers to default initramfs
- fixes from johnp for FC6 support in the creator
- fix iso-to-stick to work on FC6
* Tue Apr 24 2007 Jeremy Katz <katzj@redhat.com> - 007-1
- Disable prelinking by default
- Disable some things that slow down the live boot substantially

View File

@ -1 +1 @@
2d38ef9279789c9cb2339dab42d4da06 livecd-tools-007.tar.bz2
d6ab4d821687c01534f30b22b493c7c4 livecd-tools-013.2.tar.bz2