2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2024-11-21 17:11:45 +00:00
xcat-dep/grub2-xcat/grub2-xcat.spec
immarvin e9870f3ca7 update versin&release since the elf.mod has been updated to support ppc64le
Former-commit-id: f97369f6b6d762ee320b42acbb8cd3a942a99a44
2014-11-13 23:57:00 -08:00

75 lines
1.3 KiB
RPMSpec

Summary: grub2 resources generated by grub2-mknetdir
Name: grub2-xcat
Version: 1.0
#Release: snap%(date +"%Y%m%d%H%M")
Release: 2
License: GPLv3+
Group: Applications/System
Vendor: IBM Corp.
Packager: IBM Corp.
#Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
Prefix: /tftpboot/boot/grub2
BuildRoot: /var/tmp/%{name}-root
BuildArch: noarch
Source1: grub2-res.tar.gz
Provides: grub2-xcat
Requires:/bin/sh
%description
grub2-xcat provides some grub2 resources generated by grub2-mknetdir,including grub2 modules and grub2 image.
%define _binaries_in_noarch_packages_terminate_build 0
%prep
#cp ./grub2-res.tar.gz /root/rpmbuild/SOURCES/
#%ifos linux
#tar zxf %{SOURCE1}
#%else
#rm -rf tftpboot
#cp %{SOURCE1} /opt/freeware/src/packages/BUILD
#gunzip -f grub2-res.tar.gz
#tar -xf grub2-res.tar
#%endif
%build
%pre
%install
mkdir -p $RPM_BUILD_ROOT/%{prefix}/
cd $RPM_BUILD_ROOT/%{prefix}/
%ifos linux
tar zxf %{SOURCE1}
%else
cp %{SOURCE1} $RPM_BUILD_ROOT/%{prefix}/
gunzip -f grub2-res.tar.gz
tar -xf grub2-res.tar
%endif
%post
rm -f %{prefix}/grub2.ppc
cp %{prefix}/powerpc-ieee1275/core.elf %{prefix}/grub2.ppc
exit 0
%clean
%files
#%{prefix}
# one for sles, one for rhel. yes, it's ugly...
%{prefix}/powerpc-ieee1275/
%defattr(-,root,root)
%postun
if [ "$1" = "0" ]; then
rm %{prefix}/grub2.ppc
fi
true