72 lines
1.6 KiB
RPMSpec
72 lines
1.6 KiB
RPMSpec
|
Summary: Tool to update x86/x86-64 CPU microcode.
|
||
|
Name: microcode_ctl
|
||
|
Version: 1.10
|
||
|
Release: %(R="$Revision$"; RR="${R##: }"; echo ${RR%%?})
|
||
|
Serial: 1
|
||
|
Group: System Environment/Base
|
||
|
License: GPL
|
||
|
Source0: microcode_ctl-1.10.tar.gz
|
||
|
Source1: microcode_ctl.init
|
||
|
Buildroot: %{_tmppath}/%{name}-%{version}-root
|
||
|
Prereq: /sbin/chkconfig /sbin/service
|
||
|
Requires: fileutils kudzu
|
||
|
Obsoletes: kernel-utils
|
||
|
ExclusiveArch: i386 x86_64
|
||
|
|
||
|
Patch1: microcode_ctl.patch
|
||
|
|
||
|
%description
|
||
|
microcode_ctl - updates the microcode on Intel x86/x86-64 CPU's
|
||
|
|
||
|
%prep
|
||
|
%setup -q -c
|
||
|
%patch1 -p0
|
||
|
|
||
|
%build
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
mkdir -p %{buildroot}/usr/sbin
|
||
|
mkdir -p %{buildroot}/usr/man
|
||
|
mkdir -p %{buildroot}/etc/rc.d/init.d
|
||
|
mkdir -p %{buildroot}/etc/sysconfig
|
||
|
|
||
|
cd microcode_ctl-1.10
|
||
|
make CFLAGS="$RPM_OPT_FLAGS"
|
||
|
cd ..
|
||
|
|
||
|
%install
|
||
|
mkdir -p %{buildroot}/usr/share/man/man{1,8}
|
||
|
|
||
|
cd microcode_ctl-1.10
|
||
|
|
||
|
make DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix} \
|
||
|
INSDIR=/sbin MANDIR=%{_mandir}/man8 RCDIR=/etc MICDIR=/etc/firmware install clean
|
||
|
|
||
|
install %{SOURCE1} %{buildroot}/etc/rc.d/init.d/microcode_ctl
|
||
|
rm %{buildroot}/etc/init.d/microcode_ctl
|
||
|
cd ..
|
||
|
|
||
|
chmod -R a-s %{buildroot}
|
||
|
%clean
|
||
|
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
/etc/rc.d/init.d/microcode_ctl
|
||
|
/etc/firmware/*
|
||
|
/sbin/microcode_ctl
|
||
|
%attr(0644,root,root) %{_mandir}/*/*
|
||
|
|
||
|
%preun
|
||
|
if [ "$1" = "0" ] ; then
|
||
|
/sbin/chkconfig --del microcode_ctl
|
||
|
fi
|
||
|
|
||
|
%post
|
||
|
/sbin/chkconfig --add microcode_ctl
|
||
|
|
||
|
%changelog
|
||
|
* Sat Dec 18 2004 Dave Jones <davej@redhat.com>
|
||
|
- Initial packaging, based upon kernel-utils.
|
||
|
|