2004-09-09 12:52:57 +00:00
|
|
|
|
Summary: Simple kernel loader which boots from a FAT filesystem
|
|
|
|
|
Name: syslinux
|
2004-09-09 12:55:28 +00:00
|
|
|
|
Version: 2.08
|
2004-09-09 12:56:26 +00:00
|
|
|
|
Release: 4
|
2004-09-09 12:54:48 +00:00
|
|
|
|
License: GPL
|
2004-09-09 12:52:57 +00:00
|
|
|
|
Group: Applications/System
|
2004-09-09 12:54:31 +00:00
|
|
|
|
Source0: ftp://ftp.kernel.org/pub/linux/utils/boot/syslinux/%{name}-%{version}.tar.bz2
|
2004-09-09 12:55:28 +00:00
|
|
|
|
Patch0: syslinux-2.08-x86_64.patch
|
2004-09-09 12:54:31 +00:00
|
|
|
|
ExclusiveArch: i386 x86_64
|
2004-09-09 12:52:57 +00:00
|
|
|
|
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
2004-09-09 12:56:17 +00:00
|
|
|
|
BuildPrereq: nasm, perl, netpbm-progs
|
2004-09-09 12:54:31 +00:00
|
|
|
|
%ifarch i386
|
2004-09-09 12:53:46 +00:00
|
|
|
|
Autoreq: 0
|
|
|
|
|
Requires: libc.so.6
|
2004-09-09 12:54:48 +00:00
|
|
|
|
Requires: mtools
|
2004-09-09 12:54:31 +00:00
|
|
|
|
%endif
|
|
|
|
|
%ifarch x86_64
|
|
|
|
|
Autoreq: 0
|
|
|
|
|
Requires: libc.so.6()(64bit)
|
2004-09-09 12:54:48 +00:00
|
|
|
|
Requires: mtools
|
2004-09-09 12:54:31 +00:00
|
|
|
|
%endif
|
2004-09-09 12:52:57 +00:00
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Syslinux is a simple kernel loader. It normally loads the kernel (and an
|
|
|
|
|
optional initrd image) from a FAT filesystem. It can also be used as a
|
|
|
|
|
PXE bootloader during network boots.
|
|
|
|
|
|
|
|
|
|
%prep
|
2004-09-09 12:53:02 +00:00
|
|
|
|
%setup -q -n syslinux-%{version}
|
2004-09-09 12:54:48 +00:00
|
|
|
|
%patch0 -p1 -b .x86_64
|
2004-09-09 12:52:57 +00:00
|
|
|
|
|
|
|
|
|
%build
|
2004-09-09 12:53:46 +00:00
|
|
|
|
make clean
|
|
|
|
|
make installer
|
2004-09-09 12:52:57 +00:00
|
|
|
|
|
|
|
|
|
%install
|
2004-09-09 12:53:46 +00:00
|
|
|
|
rm -rf %{buildroot}
|
2004-09-09 12:53:02 +00:00
|
|
|
|
|
2004-09-09 12:54:48 +00:00
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/syslinux
|
|
|
|
|
mkdir -p %{buildroot}%{_includedir}
|
|
|
|
|
make INSTALLROOT=%{buildroot} install install-lib \
|
|
|
|
|
INSTALLROOT=%{buildroot} BINDIR=%{_bindir} \
|
|
|
|
|
LIBDIR=%{_prefix}/lib INCDIR=%{_includedir}
|
|
|
|
|
cp mkdiskimage sys2ansi.pl keytab-lilo.pl %{buildroot}%{_prefix}/lib/syslinux
|
2004-09-09 12:56:17 +00:00
|
|
|
|
install -m 755 syslinux-nomtools %{buildroot}%{_prefix}/lib/syslinux
|
2004-09-09 12:52:57 +00:00
|
|
|
|
|
2004-09-09 12:54:31 +00:00
|
|
|
|
mkdir -p %{buildroot}/%{_docdir}/%{name}-%{version}/sample
|
|
|
|
|
install -m 644 sample/sample.* %{buildroot}/%{_docdir}/%{name}-%{version}/sample/
|
|
|
|
|
|
2004-09-09 12:54:48 +00:00
|
|
|
|
# don't ship libsyslinux, at least, not for now
|
|
|
|
|
rm -f %{buildroot}%{_prefix}/lib/libsyslinux*
|
|
|
|
|
rm -f %{buildroot}%{_includedir}/syslinux.h
|
|
|
|
|
|
2004-09-09 12:52:57 +00:00
|
|
|
|
%clean
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
2004-09-09 12:53:46 +00:00
|
|
|
|
%doc NEWS README TODO COPYING
|
2004-09-09 12:54:31 +00:00
|
|
|
|
%doc distrib.doc isolinux.doc pxelinux.doc syslinux.doc memdisk/memdisk.doc
|
2004-09-09 12:53:46 +00:00
|
|
|
|
%{_bindir}/lss16toppm
|
|
|
|
|
%{_bindir}/ppmtolss16
|
|
|
|
|
%{_bindir}/syslinux
|
2004-09-09 12:54:31 +00:00
|
|
|
|
%{_prefix}/lib/syslinux
|
|
|
|
|
%{_bindir}/gethostip
|
2004-09-09 12:52:57 +00:00
|
|
|
|
|
|
|
|
|
%changelog
|
2004-09-09 12:56:26 +00:00
|
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
2004-09-09 12:56:17 +00:00
|
|
|
|
* Sat Apr 17 2004 Jeremy Katz <katzj@redhat.com> 2.0.8-3
|
|
|
|
|
- add syslinux-nomtools binary to be used for creating some installer images
|
|
|
|
|
|
|
|
|
|
* Tue Feb 17 2004 Jeremy Katz <katzj@redhat.com>
|
|
|
|
|
- add netpbm-progs BuildRequires (#110255)
|
|
|
|
|
|
2004-09-09 12:56:00 +00:00
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
2004-09-09 12:55:28 +00:00
|
|
|
|
* Sun Dec 14 2003 Jeremy Katz <katzj@redhat.com> 2.08-1
|
|
|
|
|
- 2.08
|
|
|
|
|
|
2004-09-09 12:54:48 +00:00
|
|
|
|
* Fri Aug 22 2003 Jeremy Katz <katzj@redhat.com> 2.06-1
|
|
|
|
|
- 2.06
|
|
|
|
|
|
|
|
|
|
* Thu Aug 14 2003 Jeremy Katz <katzj@redhat.com> 2.05-1
|
|
|
|
|
- update to 2.05
|
|
|
|
|
|
|
|
|
|
* Mon Apr 21 2003 Jeremy Katz <katzj@redhat.com> 2.04-2
|
|
|
|
|
- add patch for samples to build on x86_64
|
|
|
|
|
- integrate some changes from upstream specfile (#88593)
|
|
|
|
|
|
|
|
|
|
* Fri Apr 18 2003 Jeremy Katz <katzj@redhat.com> 2.04-1
|
|
|
|
|
- update to 2.04
|
|
|
|
|
|
|
|
|
|
* Mon Feb 3 2003 Jeremy Katz <katzj@redhat.com> 2.01-1
|
|
|
|
|
- update to 2.01
|
|
|
|
|
|
2004-09-09 12:54:31 +00:00
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
|
|
* Tue Jan 14 2003 Jeremy Katz <katzj@redhat.com> 2.00-3
|
|
|
|
|
- fix deps for x86_64
|
|
|
|
|
|
|
|
|
|
* Wed Nov 27 2002 Tim Powers <timp@redhat.com> 2.00-2
|
|
|
|
|
- build on both x86_64 and i386
|
|
|
|
|
|
|
|
|
|
* Fri Nov 1 2002 Jeremy Katz <katzj@redhat.com>
|
|
|
|
|
- update to 2.00
|
|
|
|
|
- add additional files as requested by hpa (#68073)
|
|
|
|
|
|
2004-09-09 12:54:11 +00:00
|
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
|
- automated rebuild
|
|
|
|
|
|
2004-09-09 12:53:46 +00:00
|
|
|
|
* Tue Jun 18 2002 Jeremy Katz <katzj@redhat.com>
|
|
|
|
|
- lss16toppm and ppmtolss16 are both perl scripts... turn off find-requires
|
|
|
|
|
so we don't suck in perl as a dependency for syslinux
|
|
|
|
|
|
|
|
|
|
* Mon Jun 17 2002 Jeremy Katz <katzj@redhat.com>
|
|
|
|
|
- update to 1.75
|
|
|
|
|
- include tools to create graphical image format needed by syslinux
|
|
|
|
|
- include isolinux
|
|
|
|
|
- include pxelinux (#64942)
|
|
|
|
|
|
|
|
|
|
* Fri Jun 14 2002 Preston Brown <pbrown@redhat.com>
|
|
|
|
|
- upgrade to latest version w/graphical screen support
|
|
|
|
|
|
|
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
|
- automated rebuild
|
|
|
|
|
|
2004-09-09 12:53:08 +00:00
|
|
|
|
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
|
|
- Bump release + rebuild.
|
|
|
|
|
|
2004-09-09 12:53:02 +00:00
|
|
|
|
* Sat Feb 10 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
|
- 1.52
|
|
|
|
|
|
|
|
|
|
* Wed Jan 24 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
|
- 1.51pre7
|
|
|
|
|
|
|
|
|
|
* Mon Jan 22 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
|
- 1.51pre5
|
|
|
|
|
|
|
|
|
|
* Fri Jan 19 2001 Matt Wilson <msw@redhat.com>
|
|
|
|
|
- 1.51pre3, with e820 detection
|
|
|
|
|
|
|
|
|
|
* Tue Dec 12 2000 Than Ngo <than@redhat.com>
|
|
|
|
|
- rebuilt with fixed fileutils
|
|
|
|
|
|
|
|
|
|
* Thu Nov 9 2000 Than Ngo <than@redhat.com>
|
|
|
|
|
- update to 1.49
|
|
|
|
|
- update ftp site
|
|
|
|
|
- clean up specfile
|
|
|
|
|
- add some useful documents
|
|
|
|
|
|
2004-09-09 12:52:57 +00:00
|
|
|
|
* Tue Jul 18 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
|
|
- add %%defattr (release 4)
|
|
|
|
|
|
|
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jul 06 2000 Trond Eivind Glomsr<EFBFBD>d <teg@redhat.com>
|
|
|
|
|
- use %%{_tmppath}
|
|
|
|
|
- change application group (Applications/Internet doesn't seem
|
|
|
|
|
right to me)
|
|
|
|
|
- added BuildRequires
|
|
|
|
|
|
|
|
|
|
* Tue Apr 04 2000 Erik Troan <ewt@redhat.com>
|
|
|
|
|
- initial packaging
|