Blame SPECS/syslinux.spec

8a725e
Summary: Simple kernel loader which boots from a FAT filesystem
8a725e
Name: syslinux
8a725e
Version: 6.04
8a725e
%define tarball_version 6.04-pre1
8a725e
Release: 1%{?dist}
8a725e
License: GPLv2+
8a725e
Group: Applications/System
8a725e
URL: http://syslinux.zytor.com/wiki/index.php/The_Syslinux_Project
8a725e
Source0: http://www.kernel.org/pub/linux/utils/boot/syslinux/%{name}-%{tarball_version}.tar.xz
8a725e
Patch0001: 0001-Add-install-all-target-to-top-side-of-HAVE_FIRMWARE.patch
8a725e
Patch0002: 0002-ext4-64bit-feature.patch
8a725e
Patch0003: 0003-extlinux-fix-missing-include-for-major-minor.patch
8a725e
8a725e
# this is to keep rpmbuild from thinking the .c32 / .com / .0 / memdisk files
8a725e
# in noarch packages are a reason to stop the build.
8a725e
%define _binaries_in_noarch_packages_terminate_build 0
8a725e
8a725e
ExclusiveArch: %{ix86} x86_64
8a725e
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
8a725e
BuildRequires: nasm >= 0.98.38-1, perl-interpreter, perl-generators, netpbm-progs, git
8a725e
BuildRequires: /usr/include/gnu/stubs-32.h
8a725e
BuildRequires: libuuid-devel
8a725e
Requires: syslinux-nonlinux = %{version}-%{release}
8a725e
%ifarch %{ix86}
8a725e
Requires: mtools, libc.so.6
8a725e
BuildRequires: mingw32-gcc
8a725e
%endif
8a725e
%ifarch x86_64
8a725e
Requires: mtools, libc.so.6()(64bit)
8a725e
BuildRequires: mingw64-gcc
8a725e
%endif
8a725e
8a725e
# NOTE: extlinux belongs in /sbin, not in /usr/sbin, since it is typically
8a725e
# a system bootloader, and may be necessary for system recovery.
8a725e
%define _sbindir /sbin
8a725e
8a725e
%description
8a725e
SYSLINUX is a suite of bootloaders, currently supporting DOS FAT
8a725e
filesystems, Linux ext2/ext3 filesystems (EXTLINUX), PXE network boots
8a725e
(PXELINUX), or ISO 9660 CD-ROMs (ISOLINUX).  It also includes a tool,
8a725e
MEMDISK, which loads legacy operating systems from these media.
8a725e
8a725e
%package perl
8a725e
Summary: Syslinux tools written in perl
8a725e
Group: Applications/System
8a725e
8a725e
%description perl
8a725e
Syslinux tools written in perl
8a725e
8a725e
%package devel
8a725e
Summary: Headers and libraries for syslinux development.
8a725e
Group: Development/Libraries
8a725e
Provides: %{name}-static = %{version}-%{release}
8a725e
8a725e
%description devel
8a725e
Headers and libraries for syslinux development.
8a725e
8a725e
%package extlinux
8a725e
Summary: The EXTLINUX bootloader, for booting the local system.
8a725e
Group: System/Boot
8a725e
Requires: syslinux
8a725e
Requires: syslinux-extlinux-nonlinux = %{version}-%{release}
8a725e
8a725e
%description extlinux
8a725e
The EXTLINUX bootloader, for booting the local system, as well as all
8a725e
the SYSLINUX/PXELINUX modules in /boot.
8a725e
8a725e
%ifarch %{ix86}
8a725e
%package tftpboot
8a725e
Summary: SYSLINUX modules in /tftpboot, available for network booting
8a725e
Group: Applications/Internet
8a725e
BuildArch: noarch
8a725e
ExclusiveArch: %{ix86} x86_64
8a725e
Requires: syslinux
8a725e
8a725e
%description tftpboot
8a725e
All the SYSLINUX/PXELINUX modules directly available for network
8a725e
booting in the /tftpboot directory.
8a725e
8a725e
%package extlinux-nonlinux
8a725e
Summary: The parts of the EXTLINUX bootloader which aren't run from linux.
8a725e
Group: System/Boot
8a725e
Requires: syslinux
8a725e
BuildArch: noarch
8a725e
ExclusiveArch: %{ix86} x86_64
8a725e
8a725e
%description extlinux-nonlinux
8a725e
All the EXTLINUX binaries that run from the firmware rather than
8a725e
from a linux host.
8a725e
8a725e
%package nonlinux
8a725e
Summary: SYSLINUX modules which aren't run from linux.
8a725e
Group: System/Boot
8a725e
Requires: syslinux
8a725e
BuildArch: noarch
8a725e
ExclusiveArch: %{ix86} x86_64
8a725e
8a725e
%description nonlinux
8a725e
All the SYSLINUX binaries that run from the firmware rather than from a
8a725e
linux host. It also includes a tool, MEMDISK, which loads legacy operating
8a725e
systems from media.
8a725e
%endif
8a725e
8a725e
%ifarch x86_64
8a725e
%package efi64
8a725e
Summary: SYSLINUX binaries and modules for 64-bit UEFI systems
8a725e
Group: System/Boot
8a725e
8a725e
%description efi64
8a725e
SYSLINUX binaries and modules for 64-bit UEFI systems
8a725e
%endif
8a725e
8a725e
%prep
8a725e
%autosetup -S git_am -n syslinux-%{tarball_version}
8a725e
8a725e
%build
8a725e
make bios clean all
8a725e
%ifarch x86_64
8a725e
make efi64 clean all
8a725e
%endif
8a725e
8a725e
%install
8a725e
rm -rf %{buildroot}
8a725e
8a725e
mkdir -p %{buildroot}%{_bindir}
8a725e
mkdir -p %{buildroot}%{_sbindir}
8a725e
mkdir -p %{buildroot}%{_prefix}/lib/syslinux
8a725e
mkdir -p %{buildroot}%{_includedir}
8a725e
make bios install-all \
8a725e
	INSTALLROOT=%{buildroot} BINDIR=%{_bindir} SBINDIR=%{_sbindir} \
8a725e
	LIBDIR=%{_prefix}/lib DATADIR=%{_datadir} \
8a725e
	MANDIR=%{_mandir} INCDIR=%{_includedir} \
8a725e
	TFTPBOOT=/tftpboot EXTLINUXDIR=/boot/extlinux \
8a725e
	LDLINUX=ldlinux.c32
8a725e
%ifarch x86_64
8a725e
make efi64 install netinstall \
8a725e
	INSTALLROOT=%{buildroot} BINDIR=%{_bindir} SBINDIR=%{_sbindir} \
8a725e
	LIBDIR=%{_prefix}/lib DATADIR=%{_datadir} \
8a725e
	MANDIR=%{_mandir} INCDIR=%{_includedir} \
8a725e
	TFTPBOOT=/tftpboot EXTLINUXDIR=/boot/extlinux \
8a725e
	LDLINUX=ldlinux.c32
8a725e
%endif
8a725e
8a725e
mkdir -p %{buildroot}%{_pkgdocdir}/sample
8a725e
install -m 644 sample/sample.* %{buildroot}%{_pkgdocdir}/sample/
8a725e
mkdir -p %{buildroot}/etc
8a725e
( cd %{buildroot}/etc && ln -s ../boot/extlinux/extlinux.conf . )
8a725e
8a725e
# don't ship libsyslinux, at least, not for now
8a725e
rm -f %{buildroot}%{_prefix}/lib/libsyslinux*
8a725e
rm -f %{buildroot}%{_includedir}/syslinux.h
8a725e
8a725e
%clean
8a725e
rm -rf %{buildroot}
8a725e
8a725e
%files
8a725e
%defattr(-,root,root)
8a725e
%{!?_licensedir:%global license %%doc}
8a725e
%license COPYING
8a725e
%doc NEWS README*
8a725e
%doc doc/* 
8a725e
%doc sample
8a725e
%{_mandir}/man1/gethostip*
8a725e
%{_mandir}/man1/syslinux*
8a725e
%{_mandir}/man1/extlinux*
8a725e
%{_mandir}/man1/isohybrid*
8a725e
%{_mandir}/man1/memdiskfind*
8a725e
%{_bindir}/gethostip
8a725e
%{_bindir}/isohybrid
8a725e
%{_bindir}/memdiskfind
8a725e
%{_bindir}/syslinux
8a725e
%dir %{_datadir}/syslinux
8a725e
%dir %{_datadir}/syslinux/dosutil
8a725e
%{_datadir}/syslinux/dosutil/*
8a725e
%dir %{_datadir}/syslinux/diag
8a725e
%{_datadir}/syslinux/diag/*
8a725e
%ifarch %{ix86}
8a725e
%{_datadir}/syslinux/syslinux.exe
8a725e
%else
8a725e
%{_datadir}/syslinux/syslinux64.exe
8a725e
%endif
8a725e
8a725e
%files perl
8a725e
%defattr(-,root,root)
8a725e
%{!?_licensedir:%global license %%doc}
8a725e
%license COPYING
8a725e
%{_mandir}/man1/lss16toppm*
8a725e
%{_mandir}/man1/ppmtolss16*
8a725e
%{_mandir}/man1/syslinux2ansi*
8a725e
%{_bindir}/keytab-lilo
8a725e
%{_bindir}/lss16toppm
8a725e
%{_bindir}/md5pass
8a725e
%{_bindir}/mkdiskimage
8a725e
%{_bindir}/ppmtolss16
8a725e
%{_bindir}/pxelinux-options
8a725e
%{_bindir}/sha1pass
8a725e
%{_bindir}/syslinux2ansi
8a725e
%{_bindir}/isohybrid.pl
8a725e
8a725e
%files devel
8a725e
%defattr(-,root,root)
8a725e
%{!?_licensedir:%global license %%doc}
8a725e
%license COPYING
8a725e
%dir %{_datadir}/syslinux/com32
8a725e
%{_datadir}/syslinux/com32/*
8a725e
8a725e
%files extlinux
8a725e
%{_sbindir}/extlinux
8a725e
%config /etc/extlinux.conf
8a725e
8a725e
%ifarch %{ix86}
8a725e
%files tftpboot
8a725e
/tftpboot
8a725e
8a725e
%files nonlinux
8a725e
%{_datadir}/syslinux/*.com
8a725e
%{_datadir}/syslinux/*.exe
8a725e
%{_datadir}/syslinux/*.c32
8a725e
%{_datadir}/syslinux/*.bin
8a725e
%{_datadir}/syslinux/*.0
8a725e
%{_datadir}/syslinux/memdisk
8a725e
8a725e
%files extlinux-nonlinux
8a725e
/boot/extlinux
8a725e
8a725e
%else
8a725e
%exclude %{_datadir}/syslinux/memdisk
8a725e
%exclude %{_datadir}/syslinux/*.com
8a725e
%exclude %{_datadir}/syslinux/*.exe
8a725e
%exclude %{_datadir}/syslinux/*.c32
8a725e
%exclude %{_datadir}/syslinux/*.bin
8a725e
%exclude %{_datadir}/syslinux/*.0
8a725e
%exclude /boot/extlinux
8a725e
%exclude /tftpboot
8a725e
%endif
8a725e
8a725e
%ifarch x86_64
8a725e
%files efi64
8a725e
%{!?_licensedir:%global license %%doc}
8a725e
%license COPYING
8a725e
%dir %{_datadir}/syslinux/efi64
8a725e
%{_datadir}/syslinux/efi64
8a725e
%endif
8a725e
8a725e
%post extlinux
8a725e
# If we have a /boot/extlinux.conf file, assume extlinux is our bootloader
8a725e
# and update it.
8a725e
if [ -f /boot/extlinux/extlinux.conf ]; then \
8a725e
	extlinux --update /boot/extlinux ; \
8a725e
elif [ -f /boot/extlinux.conf ]; then \
8a725e
	mkdir -p /boot/extlinux && \
8a725e
	mv /boot/extlinux.conf /boot/extlinux/extlinux.conf && \
8a725e
	extlinux --update /boot/extlinux ; \
8a725e
fi
8a725e
8a725e
%changelog
8a725e
* Fri Aug 10 2018 Peter Jones <pjones@redhat.com> - 6.04-1
8a725e
- extlinux: fix missing include for major()/minor()
8a725e
  Resolves: rhbz#1611751
8a725e
8a725e
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.04-0.8
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8a725e
8a725e
* Sun Nov 26 2017 Robert Scheck <robert@fedoraproject.org> - 6.04-0.7
8a725e
- Add upstream patch for ext4 64bit feature (#1369934)
8a725e
8a725e
* Mon Nov 20 2017 Robert Scheck <robert@fedoraproject.org> - 6.04-0.6
8a725e
- Correct non-existent macro %%{x86_64} to x86_64 (#1312748)
8a725e
8a725e
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.04-0.5
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
8a725e
8a725e
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.04-0.4
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8a725e
8a725e
* Sat Mar 25 2017 Robert Scheck <robert@fedoraproject.org> - 6.04-0.3
8a725e
- Own %%{_datadir}/syslinux/diag directory (#894529)
8a725e
- Allow rebuilding on RHEL/CentOS 6 and 7 (#1291428)
8a725e
8a725e
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.04-0.2
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8a725e
8a725e
* Wed May 04 2016 Peter Jones <pjones@redhat.com> - - 6.04-0.1
8a725e
- Update to 6.04-pre1
8a725e
  Resolves: rhbz#1135793
8a725e
8a725e
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.03-7
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8a725e
8a725e
* Thu Oct 15 2015 Adam Williamson <awilliam@redhat.com> - 6.03-6
8a725e
- backport GCC 5 fixes from upstream ML: RHBZ #1263988, #1264012
8a725e
8a725e
* Fri Jul 03 2015 Adam Williamson <awilliam@redhat.com> - 6.03-5
8a725e
- backport a commit from git master which appears to fix RHBZ #1234653
8a725e
8a725e
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.03-4
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8a725e
8a725e
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 6.03-3
8a725e
- Rebuilt for Fedora 23 Change
8a725e
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
8a725e
8a725e
* Sat Jan 10 2015 Michael Schwendt <mschwendt@fedoraproject.org> - 6.03-2
8a725e
- Add -static Provides to -devel package to meet Fedora's
8a725e
  Packaging Static Libraries guidelines (rhbz #609617)
8a725e
8a725e
* Wed Oct 08 2014 Peter Jones <pjones@redhat.com> - 6.03-1
8a725e
- Update to 6.03
8a725e
8a725e
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.02-7
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
8a725e
8a725e
* Tue Aug  5 2014 Tom Callaway <spot@fedoraproject.org> - 6.02-6
8a725e
- fix license handling
8a725e
8a725e
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.02-5
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8a725e
8a725e
* Tue Apr 15 2014 Peter Jones <pjones@redhat.com> - 6.02-4
8a725e
- Do our firmware/nonlinux packages as .noarch + ExclusiveArch
8a725e
  Related: rhbz#1086446
8a725e
8a725e
* Tue Apr 15 2014 Peter Jones <pjones@redhat.com> - 6.02-3
8a725e
- -2 was entirely the wrong thing to do.
8a725e
8a725e
* Tue Apr 15 2014 Kevin Kofler <Kevin@tigcc.ticalc.org> - 6.02-2
8a725e
- Undo packaging changes that break live image composes (#1086446)
8a725e
8a725e
* Tue Apr 08 2014 Peter Jones <pjones@redhat.com> - 6.02-1
8a725e
- Update this to 6.02
8a725e
8a725e
* Mon Aug 05 2013 Peter Jones <pjones@redhat.com> - 4.05-7
8a725e
- Fixing %%doc path.
8a725e
8a725e
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.05-7
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
8a725e
8a725e
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 4.05-6
8a725e
- Perl 5.18 rebuild
8a725e
8a725e
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.05-5
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8a725e
8a725e
* Mon Aug 06 2012 Peter Jones <pjones@redhat.com> - 4.05-4
8a725e
- Fix build problem from kernel-headers' removeal of ext2_fs.h
8a725e
  (fix backported from as-yet-unreleased upstream version.)
8a725e
8a725e
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.05-3
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8a725e
8a725e
* Wed Apr 18 2012 Michael Schwendt <mschwendt@fedoraproject.org> - 4.05-2
8a725e
- Remove old Obsoletes/Provides for syslinux-devel as such a subpkg
8a725e
  was introduced with 3.83-2 (#756733).
8a725e
8a725e
* Wed Feb 15 2012 Matthew Garrett <mjg@redhat.com> - 4.05-1
8a725e
- New upstream release
8a725e
- syslinux-isohybrid-fix-mbr.patch: generate a full MBR for UEFI images
8a725e
8a725e
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.02-6
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8a725e
8a725e
* Wed Aug 24 2011 Matthew Garrett <mjg@redhat.com> - 4.02-5
8a725e
- Add support for building Mac and GPT bootable hybrid images
8a725e
8a725e
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.02-4
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8a725e
8a725e
* Fri Aug 20 2010 Matt Domsch <mdomsch@fedoraproject.org> - 4.02-2
8a725e
- add perl subpackage, move perl apps there
8a725e
8a725e
* Fri Aug 06 2010 Peter Jones <pjones@redhat.com> - 4.02-2
8a725e
- Split out extlinux and tftpboot.
8a725e
- remove duplicate syslinux/com32/ left in base package after 3.83-2
8a725e
8a725e
* Thu Aug 05 2010 Peter Jones <pjones@redhat.com> - 4.02-1
8a725e
- Update to 4.02
8a725e
8a725e
* Mon Jan 11 2010 Peter Jones <pjones@redhat.com> - 3.84-1
8a725e
- Update to 3.84
8a725e
8a725e
* Thu Dec 17 2009 Peter Jones <pjones@redhat.com> - 3.83-2
8a725e
- Split out -devel
8a725e
8a725e
* Thu Oct 29 2009 Peter Jones <pjones@redhat.com> - 3.83-1
8a725e
- update to 3.83
8a725e
8a725e
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.75-4
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8a725e
8a725e
* Tue Apr 28 2009 Jeremy Katz <katzj@redhat.com> - 3.75-3
8a725e
- Stop suppressing requirements of the package (#465299)
8a725e
8a725e
* Tue Apr 28 2009 Jeremy Katz <katzj@redhat.com> - 3.75-2
8a725e
- Don't strip binaries to fix debuginfo (#249970)
8a725e
8a725e
* Thu Apr 16 2009 Jeremy Katz <katzj@redhat.com> - 3.75-1
8a725e
- update to 3.75
8a725e
8a725e
* Fri Apr 10 2009 Jeremy Katz <katzj@redhat.com> - 3.74-1
8a725e
- update to 3.74
8a725e
8a725e
* Fri Feb 27 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 3.73-2
8a725e
- fix arch issues 
8a725e
8a725e
* Fri Feb 27 2009 Jeremy Katz <katzj@redhat.com> - 3.73-1
8a725e
- Update to 3.73
8a725e
8a725e
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.61-4
8a725e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8a725e
8a725e
* Sat Sep  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.61-3
8a725e
- fix license tag
8a725e
8a725e
* Mon Feb 25 2008 Peter Jones <pjones@redhat.com> - 3.61-2
8a725e
- Remove 16bpp patch, hpa says that's there to cover a bug that's fixed.
8a725e
- Remove x86_64 patch; building without it works now.
8a725e
8a725e
* Thu Feb 21 2008 Peter Jones <pjones@redhat.com> - 3.61-1
8a725e
- Update to 3.61 .
8a725e
8a725e
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.36-9
8a725e
- Autorebuild for GCC 4.3
8a725e
8a725e
* Wed Jan 09 2008 Florian La Roche <laroche@redhat.com> - 3.36-8
8a725e
- spec in utf-8
8a725e
- add URL tag
8a725e
- own /usr/share/syslinux (rhbz#427816)
8a725e
8a725e
* Wed Oct 17 2007 Peter Jones <pjones@redhat.com> - 3.36-7
8a725e
- Add necessary files for makebootfat to make usb images (patch from
8a725e
  Joel Granados <jgranado@redhat.com>)
8a725e
8a725e
* Wed Oct  3 2007 Jeremy Katz <katzj@redhat.com> - 3.36-6
8a725e
- fix menu system memory corruption (#239585)
8a725e
8a725e
* Tue Aug 14 2007 Jeremy Katz <katzj@redhat.com> - 3.36-5
8a725e
- backport "menu hidden" support from upstream git
8a725e
8a725e
* Fri May  4 2007 Jeremy Katz <katzj@redhat.com> - 3.36-4
8a725e
- switch to preferring 16bpp for graphical menu; this fixes the display for 
8a725e
  qemu, kvm, etc
8a725e
8a725e
* Tue May  1 2007 Jeremy Katz <katzj@redhat.com> - 3.36-3
8a725e
- fix countdown on boot images (#229491)
8a725e
8a725e
* Tue Apr 03 2007 Florian La Roche <laroche@redhat.com> - 3.36-2
8a725e
- add upstream patch from 3.3x branch
8a725e
8a725e
* Mon Feb 12 2007 Florian La Roche <laroche@redhat.com> - 3.36-1
8a725e
- update to 3.36
8a725e
8a725e
* Thu Feb 08 2007 Florian La Roche <laroche@redhat.com> - 3.35-1
8a725e
- update to 3.35
8a725e
8a725e
* Thu Jan 18 2007 Jesse Keating <jkeating@redhat.com> - 3.31-2
8a725e
- Make syslinux own /usr/lib/syslinux.
8a725e
8a725e
* Wed Jan 17 2007 Jeremy Katz <katzj@redhat.com> - 3.31-1
8a725e
- update to 3.31
8a725e
8a725e
* Tue Aug 22 2006 Jesse Keating <jkeating@redhat.com> - 3.11-4
8a725e
- Obsolete syslinux-devel.
8a725e
- Couple cleanups for packaging guidelines
8a725e
8a725e
* Fri Jul 14 2006 David Cantrell <dcantrell@redhat.com> - 3.11-3
8a725e
- Remove com32/include/time.h and com32/include/sys/times.h
8a725e
- Replace CLK_TCK macros with CLOCKS_PER_SEC
8a725e
8a725e
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.11-2.1
8a725e
- rebuild
8a725e
8a725e
* Mon Jun 12 2006 Peter Jones <pjones@redhat.com> - 3.11-2
8a725e
- Fold -devel subpackage into "syslinux"
8a725e
8a725e
* Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> - 3.10-5
8a725e
- Use the actual file as a BuildRequire
8a725e
8a725e
* Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> - 3.10-4
8a725e
- Changed glibc-devel to glibc32 to get the 32bit package in
8a725e
8a725e
* Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> - 3.10-3
8a725e
- Added missing glibc-devel BuildRequires
8a725e
8a725e
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.10-2.2
8a725e
- rebuilt for new gcc4.1 snapshot and glibc changes
8a725e
8a725e
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
8a725e
- rebuilt
8a725e
8a725e
* Mon Aug 22 2005 Peter Jones <pjones@redhat.com> - 3.10-2
8a725e
- Update to 3.10
8a725e
- Don't do "make clean", so we actually ship the bins hpa gives us
8a725e
8a725e
* Sat Jul  9 2005 Peter Jones <pjones@redhat.com> - 3.09-2
8a725e
- Update to 3.09
8a725e
8a725e
* Thu Jun 16 2005 Peter Jones <pjones@redhat.com> - 3.08.92-1
8a725e
- Update to 3.09-pre2, to fix the i915 .bss overflow bug
8a725e
8a725e
* Thu May 19 2005 Peter Jones <pjones@redhat.com> - 3.08-3
8a725e
- Fix filespec for samples in -devel
8a725e
8a725e
* Thu May 19 2005 Peter Jones <pjones@redhat.com> - 3.08-2
8a725e
- update to 3.08
8a725e
8a725e
* Wed Mar 16 2005 Peter Jones <pjones@redhat.com> - 3.07-2
8a725e
- gcc4 update
8a725e
8a725e
* Thu Jan 13 2005 Peter Jones <pjones@redhat.com> - 3.07-1
8a725e
- update to 3.07
8a725e
8a725e
* Tue Jan 11 2005 Peter Jones <pjones@redhat.com> - 3.06-1
8a725e
- update to 3.06 , which should fix the directory parsing bug that wedges it
8a725e
  with diskboot.img
8a725e
- change README to README* in doc, to include README.menu and README.usbkey
8a725e
8a725e
* Tue Jan  4 2005 Peter Jones <pjones@redhat.com> - 3.02-2
8a725e
- Beehive doesn't let you build in scratch and then build someplace else,
8a725e
  arrrrgh.
8a725e
8a725e
* Tue Jan  4 2005 Peter Jones <pjones@redhat.com> - 3.02-1
8a725e
- 3.02
8a725e
- Make the spec a little closer to hpa's.
8a725e
8a725e
* Mon Jan  3 2005 Peter Jones <pjones@redhat.com> - 3.00-2
8a725e
- make tag says the tag is there, make build says it's not.
8a725e
  Bump release, try again.
8a725e
8a725e
* Mon Jan  3 2005 Peter Jones <pjones@redhat.com> - 3.00-1
8a725e
- 3.00
8a725e
8a725e
* Mon Aug 16 2004 Jeremy Katz <katzj@redhat.com> - 2.11-1
8a725e
- 2.11
8a725e
8a725e
* Fri Jul 30 2004 Jeremy Katz <katzj@redhat.com> - 2.10-1
8a725e
- update to 2.10
8a725e
8a725e
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
8a725e
- rebuilt
8a725e
8a725e
* Sat Apr 17 2004 Jeremy Katz <katzj@redhat.com> 2.0.8-3
8a725e
- add syslinux-nomtools binary to be used for creating some installer images
8a725e
8a725e
* Tue Feb 17 2004 Jeremy Katz <katzj@redhat.com> 
8a725e
- add netpbm-progs BuildRequires (#110255)
8a725e
8a725e
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
8a725e
- rebuilt
8a725e
8a725e
* Sun Dec 14 2003 Jeremy Katz <katzj@redhat.com> 2.08-1
8a725e
- 2.08
8a725e
8a725e
* Fri Aug 22 2003 Jeremy Katz <katzj@redhat.com> 2.06-1
8a725e
- 2.06
8a725e
8a725e
* Thu Aug 14 2003 Jeremy Katz <katzj@redhat.com> 2.05-1
8a725e
- update to 2.05
8a725e
8a725e
* Mon Apr 21 2003 Jeremy Katz <katzj@redhat.com> 2.04-2
8a725e
- add patch for samples to build on x86_64
8a725e
- integrate some changes from upstream specfile (#88593)
8a725e
8a725e
* Fri Apr 18 2003 Jeremy Katz <katzj@redhat.com> 2.04-1
8a725e
- update to 2.04
8a725e
8a725e
* Mon Feb  3 2003 Jeremy Katz <katzj@redhat.com> 2.01-1
8a725e
- update to 2.01
8a725e
8a725e
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
8a725e
- rebuilt
8a725e
8a725e
* Tue Jan 14 2003 Jeremy Katz <katzj@redhat.com> 2.00-3
8a725e
- fix deps for x86_64
8a725e
8a725e
* Wed Nov 27 2002 Tim Powers <timp@redhat.com> 2.00-2
8a725e
- build on both x86_64 and i386
8a725e
8a725e
* Fri Nov  1 2002 Jeremy Katz <katzj@redhat.com>
8a725e
- update to 2.00
8a725e
- add additional files as requested by hpa (#68073)
8a725e
8a725e
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
8a725e
- automated rebuild
8a725e
8a725e
* Tue Jun 18 2002 Jeremy Katz <katzj@redhat.com>
8a725e
- lss16toppm and ppmtolss16 are both perl scripts... turn off find-requires
8a725e
  so we don't suck in perl as a dependency for syslinux
8a725e
8a725e
* Mon Jun 17 2002 Jeremy Katz <katzj@redhat.com>
8a725e
- update to 1.75
8a725e
- include tools to create graphical image format needed by syslinux
8a725e
- include isolinux 
8a725e
- include pxelinux (#64942)
8a725e
8a725e
* Fri Jun 14 2002 Preston Brown <pbrown@redhat.com>
8a725e
- upgrade to latest version w/graphical screen support
8a725e
8a725e
* Thu May 23 2002 Tim Powers <timp@redhat.com>
8a725e
- automated rebuild
8a725e
8a725e
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
8a725e
- automated rebuild
8a725e
8a725e
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
8a725e
- Bump release + rebuild.
8a725e
8a725e
* Sat Feb 10 2001 Matt Wilson <msw@redhat.com>
8a725e
- 1.52
8a725e
8a725e
* Wed Jan 24 2001 Matt Wilson <msw@redhat.com>
8a725e
- 1.51pre7
8a725e
8a725e
* Mon Jan 22 2001 Matt Wilson <msw@redhat.com>
8a725e
- 1.51pre5
8a725e
8a725e
* Fri Jan 19 2001 Matt Wilson <msw@redhat.com>
8a725e
- 1.51pre3, with e820 detection
8a725e
8a725e
* Tue Dec 12 2000 Than Ngo <than@redhat.com>
8a725e
- rebuilt with fixed fileutils
8a725e
8a725e
* Thu Nov 9 2000 Than Ngo <than@redhat.com>
8a725e
- update to 1.49
8a725e
- update ftp site
8a725e
- clean up specfile
8a725e
- add some useful documents
8a725e
8a725e
* Tue Jul 18 2000 Nalin Dahyabhai <nalin@redhat.com>
8a725e
- add %%defattr (release 4)
8a725e
8a725e
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
8a725e
- automatic rebuild
8a725e
8a725e
* Thu Jul 06 2000 Trond Eivind Glomsrød <teg@redhat.com>
8a725e
- use %%{_tmppath}
8a725e
- change application group (Applications/Internet doesn't seem
8a725e
  right to me)
8a725e
- added BuildRequires
8a725e
8a725e
* Tue Apr 04 2000 Erik Troan <ewt@redhat.com>
8a725e
- initial packaging