2007-07-12 18:35:42 +02:00
|
|
|
##
|
2008-01-25 16:08:37 +01:00
|
|
|
# $Id$
|
2007-07-12 18:35:42 +02:00
|
|
|
##
|
|
|
|
|
|
|
|
Name: lxbios
|
|
|
|
Version: 2.0.1
|
|
|
|
Release: 0
|
|
|
|
|
2008-01-18 16:33:49 +01:00
|
|
|
Summary: coreboot utility program
|
2007-07-12 18:35:42 +02:00
|
|
|
Group: System Environment/Base
|
|
|
|
License: GPL
|
|
|
|
Provides: lxbios
|
|
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}
|
|
|
|
|
|
|
|
Source0: %{name}-%{version}.tgz
|
|
|
|
|
|
|
|
%description
|
2008-01-18 16:33:49 +01:00
|
|
|
lxbios is a utility for reading/writing coreboot parameters and displaying
|
|
|
|
information from the coreboot table.
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2008-01-18 16:33:49 +01:00
|
|
|
At boot time, coreboot places a table (known as the coreboot table) in low
|
2007-07-12 18:35:42 +02:00
|
|
|
physical memory. The contents of this table are preserved even after
|
2008-01-18 16:33:49 +01:00
|
|
|
coreboot transfers control to the kernel and the kernel initializes itself.
|
|
|
|
The coreboot table contains various system information such as the type of
|
2007-07-12 18:35:42 +02:00
|
|
|
mainboard in use. It also specifies locations in the CMOS (nonvolatile RAM)
|
2008-01-18 16:33:49 +01:00
|
|
|
where the coreboot parameters are stored.
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
%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
|