1a6177b720
- Update website URL to http://coreboot.org/Lxbios. - Use svn:keywords property to actually expand the $Id$ entries. - Update COPYING to the latest version from http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3075 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
50 lines
1.1 KiB
RPMSpec
50 lines
1.1 KiB
RPMSpec
##
|
|
# $Id$
|
|
##
|
|
|
|
Name: lxbios
|
|
Version: 2.0.1
|
|
Release: 0
|
|
|
|
Summary: coreboot utility program
|
|
Group: System Environment/Base
|
|
License: GPL
|
|
Provides: lxbios
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}
|
|
|
|
Source0: %{name}-%{version}.tgz
|
|
|
|
%description
|
|
lxbios is a utility for reading/writing coreboot parameters and displaying
|
|
information from the coreboot table.
|
|
|
|
At boot time, coreboot places a table (known as the coreboot table) in low
|
|
physical memory. The contents of this table are preserved even after
|
|
coreboot transfers control to the kernel and the kernel initializes itself.
|
|
The coreboot table contains various system information such as the type of
|
|
mainboard in use. It also specifies locations in the CMOS (nonvolatile RAM)
|
|
where the coreboot parameters are stored.
|
|
|
|
%prep
|
|
%setup -n %{name}-%{version}
|
|
|
|
%build
|
|
make
|
|
|
|
%install
|
|
rm -rf "$RPM_BUILD_ROOT"
|
|
mkdir -p "$RPM_BUILD_ROOT/usr/bin"
|
|
mkdir -p "$RPM_BUILD_ROOT/usr/man/man1"
|
|
cp lxbios "$RPM_BUILD_ROOT/usr/bin"
|
|
cp lxbios.1.gz $RPM_BUILD_ROOT/usr/man/man1
|
|
|
|
%clean
|
|
rm -rf "$RPM_BUILD_ROOT"
|
|
|
|
%files
|
|
%defattr(-,root,root,0755)
|
|
%doc ChangeLog README
|
|
%doc README
|
|
/usr/bin/lxbios
|
|
/usr/man/man1/lxbios.1.gz
|