Blame SPECS/syslinux.spec

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