Blame SPECS/syslinux.spec

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