auto-import changelog data from gnu-efi-2.5-3.src.rpm
Tue Jun 05 2001 Bill Nottingham <notting@redhat.com> - add fix for invocations from the boot manager menu (#42222) Tue May 22 2001 Bill Nottingham <notting@redhat.com> - add bugfix for efibootmgr (<schwab@suse.de>) Mon May 21 2001 Bill Nottingham <notting@redhat.com> - update to 2.5 - add in efibootmgr from Dell (<Matt_Domsch@dell.com>) Thu May 03 2001 Bill Nottingham <notting@redhat.com> - fix booting of kernels with extra arguments (#37711) Wed Apr 25 2001 Bill Nottingham <notting@redhat.com> - take out Stephane's initrd patch Fri Apr 20 2001 Bill Nottingham <notting@redhat.com> - fix the verbosity patch to not break passing arguments to images Wed Apr 18 2001 Bill Nottingham <notting@redhat.com> - update to 2.0, build elilo, obsolete eli
This commit is contained in:
parent
2d1a145d90
commit
48a0809636
@ -1 +1,2 @@
|
|||||||
gnu-efi-1.1.tgz
|
efibootmgr-0.3.1.tar.gz
|
||||||
|
gnu-efi-2.5.tar.gz
|
||||||
|
70
gnu-efi.spec
70
gnu-efi.spec
@ -1,26 +1,42 @@
|
|||||||
Summary: Development Libraries and headers for EFI
|
Summary: Development Libraries and headers for EFI
|
||||||
Name: gnu-efi
|
Name: gnu-efi
|
||||||
Version: 1.1
|
Version: 2.5
|
||||||
Release: 1
|
Release: 3
|
||||||
Group: Development/System
|
Group: Development/System
|
||||||
License: GPL
|
License: GPL
|
||||||
Source: ftp://ftp.hpl.hp.com/pub/linux-ia64/gnu-efi-%{version}.tgz
|
Source: ftp://ftp.hpl.hp.com/pub/linux-ia64/gnu-efi-%{version}.tar.gz
|
||||||
Patch: gnu-efi-1.1-build.patch
|
Patch: gnu-efi-2.5-makefile.patch
|
||||||
Patch2: gnu-efi-1.1-netshut.patch
|
Patch2: efibootmgr-0.3.1-remove-from-bootorder.patch
|
||||||
BuildRoot: /var/tmp/efi-root
|
Patch3: elilo-2.5-prompt.patch
|
||||||
|
Source1: http://domsch.com/linux/ia64/efibootmgr-0.3.1.tar.gz
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
ExclusiveArch: ia64
|
ExclusiveArch: ia64
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package contains development headers and libraries for developing
|
This package contains development headers and libraries for developing
|
||||||
applications that run under EFI (Extensible Firmware Interface).
|
applications that run under EFI (Extensible Firmware Interface).
|
||||||
|
|
||||||
|
%package -n elilo
|
||||||
|
Summary: ELILO linux boot loader for EFI-based systems
|
||||||
|
Group: System Environment/Base
|
||||||
|
Obsoletes: eli
|
||||||
|
|
||||||
|
%description -n elilo
|
||||||
|
ELILO is a linux boot loader for EFI-based systems, such as IA-64.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup
|
%setup -a 1
|
||||||
%patch -p1
|
%patch -p1
|
||||||
%patch2 -p1
|
%patch2 -p0
|
||||||
|
%patch3 -p0
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make CFLAGS="$RPM_OPT_FLAGS"
|
make CFLAGS="$RPM_OPT_FLAGS"
|
||||||
|
cd efibootmgr-0.3.1
|
||||||
|
make
|
||||||
|
cp COPYING INSTALL README doc
|
||||||
|
mv doc efibootmgr-doc
|
||||||
|
cd ..
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -42,16 +58,52 @@ install -m644 lib/libefi.a $RPM_BUILD_ROOT/usr/lib
|
|||||||
install -m644 gnuefi/crt0-efi-%{_arch}.o $RPM_BUILD_ROOT/usr/lib/gnuefi
|
install -m644 gnuefi/crt0-efi-%{_arch}.o $RPM_BUILD_ROOT/usr/lib/gnuefi
|
||||||
install -m644 gnuefi/elf_%{_arch}_efi.lds $RPM_BUILD_ROOT/usr/lib/gnuefi
|
install -m644 gnuefi/elf_%{_arch}_efi.lds $RPM_BUILD_ROOT/usr/lib/gnuefi
|
||||||
|
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/boot/efi/efi/boot
|
||||||
|
install -m 755 elilo/elilo.efi $RPM_BUILD_ROOT/boot/efi/elilo.efi
|
||||||
|
install -m 755 elilo/elilo.efi $RPM_BUILD_ROOT/boot/efi/efi/boot/bootia64.efi
|
||||||
|
|
||||||
|
mkdir -p $RPM_BUILD_ROOT/usr/sbin
|
||||||
|
install -m 755 efibootmgr-0.3.1/src/efibootmgr/efibootmgr $RPM_BUILD_ROOT/usr/sbin
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc README apps
|
%doc README README.efilib ChangeLog apps
|
||||||
/usr/include/efi
|
/usr/include/efi
|
||||||
/usr/lib/*
|
/usr/lib/*
|
||||||
|
|
||||||
|
%files -n elilo
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc elilo/README elilo/TODO elilo/elilo.txt efibootmgr-0.3.1/efibootmgr-doc
|
||||||
|
/boot/efi/elilo.efi
|
||||||
|
/boot/efi/efi/boot/bootia64.efi
|
||||||
|
/usr/sbin/efibootmgr
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 5 2001 Bill Nottingham <notting@redhat.com>
|
||||||
|
- add fix for invocations from the boot manager menu (#42222)
|
||||||
|
|
||||||
|
* Tue May 22 2001 Bill Nottingham <notting@redhat.com>
|
||||||
|
- add bugfix for efibootmgr (<schwab@suse.de>)
|
||||||
|
|
||||||
|
* Mon May 21 2001 Bill Nottingham <notting@redhat.com>
|
||||||
|
- update to 2.5
|
||||||
|
- add in efibootmgr from Dell (<Matt_Domsch@dell.com>)
|
||||||
|
|
||||||
|
* Thu May 3 2001 Bill Nottingham <notting@redhat.com>
|
||||||
|
- fix booting of kernels with extra arguments (#37711)
|
||||||
|
|
||||||
|
* Wed Apr 25 2001 Bill Nottingham <notting@redhat.com>
|
||||||
|
- take out Stephane's initrd patch
|
||||||
|
|
||||||
|
* Fri Apr 20 2001 Bill Nottingham <notting@redhat.com>
|
||||||
|
- fix the verbosity patch to not break passing arguments to images
|
||||||
|
|
||||||
|
* Wed Apr 18 2001 Bill Nottingham <notting@redhat.com>
|
||||||
|
- update to 2.0, build elilo, obsolete eli
|
||||||
|
|
||||||
* Tue Dec 5 2000 Bill Nottingham <notting@redhat.com>
|
* Tue Dec 5 2000 Bill Nottingham <notting@redhat.com>
|
||||||
- update to 1.1
|
- update to 1.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user