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