1Summary: make an elf network bootable image for linux 2Name: mkelfImage 3Version: 4Release: 0 5Copyright: GPL 6Group: Development/Tools 7Source0:%{name}-%{version}.tar.gz 8Packager: Andrew Ip <aip@cwlinux.com> 9BuildRoot: %{_tmppath}/%{name} 10 11%description 12mkelfImage is a program that makes a elf boot image for linux kernel images. 13The image should work with any i386 multiboot compliant boot loader, an ELF boot 14loader that passes no options, a loader compliant with the linuxBIOS elf booting 15spec or with the linux kexec kernel patch. A key feature here is that nothing 16relies upon BIOS calls, but they are made when necessary. This is useful for 17systems running linuxbios. 18 19%prep 20%setup -q -n %{name}-%{version} 21 22%build 23%configure 24make 25 26%install 27make install DESTDIR=${RPM_BUILD_ROOT} 28 29%files 30%defattr(-,root,root) 31%{_sbindir}/mkelfImage 32%doc News 33%doc COPYING 34%doc AUTHORS 35%{_mandir}/man8/mkelfImage.8.gz 36 37%changelog 38* Mon Jan 13 2003 Eric Biederman <ebiederman@lnxi.com> 39- Move the man page into section 8 as mkelfImage lives in sbin 40 41* Mon Aug 26 2002 Joshua Aune <luken@linuxnetworx.com> 1.15-1 42- New version 43- Merge distro and Eric's spec file 44 45* Fri Aug 23 2002 Eric Biederman <ebiederman@lnxi.com> 46- Simplified and incorporated into mkelfImage 47 48* Sat Aug 10 2002 Andrew Ip <aip@cwlinux.com> 49- Initial release 50 51

