Compare commits

...
This repository has been archived on 2026-09-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.

17 commits

Author SHA1 Message Date
Cole Robinson
c44d6ad8a5 Obsoleted by seabios provided seavgabios 2013-05-20 16:39:26 -04:00
Paolo Bonzini
6ec13e9a36 Merge branch 'f18'
Conflicts:
	vgabios.spec
2013-03-08 09:56:46 +01:00
Paolo Bonzini
32d04cf0be Regenerate patch 8 2013-03-08 09:51:11 +01:00
Paolo Bonzini
683c826120 Merge branch 'f18'
Conflicts:
	vgabios.spec
2013-03-08 09:27:15 +01:00
Paolo Bonzini
ddfd4f91a7 Ensure PCIR is aligned to 4 bytes 2013-03-08 09:25:20 +01:00
Dennis Gilmore
f26eee73c4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild 2013-02-14 20:45:25 -06:00
Paolo Bonzini
dea080b07e Complete implementation for int 10h AH=11h 2013-01-10 12:40:18 +01:00
Dennis Gilmore
d77b14aaca - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-21 21:39:07 -05:00
Dennis Gilmore
0b973fde71 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild 2012-01-14 01:52:54 -06:00
Dennis Gilmore
de93281311 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-07 19:22:55 -06:00
Justin M. Forbes
62aaa2f3a4 Patches from freedesktop.org to support newer qemu. 2010-08-10 10:14:56 -05:00
Fedora Release Engineering
1fc71ed702 dist-git conversion 2010-07-29 14:57:59 +00:00
Matthew Garrett
f8d7609ce2 - Update to newer upstream to permit S3 under Windows XP 2010-05-14 16:28:40 +00:00
Bill Nottingham
853e47f0ea Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:43:21 +00:00
Jesse Keating
650fbb3ba8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 06:50:43 +00:00
Glauber Costa
46a997701f applied vgabios-provide-high-res.patch, that should fix #499060 Changed
versioning naming, since the "b" in 0.6b does not stand for beta.
copied from f-11
2009-06-19 17:25:14 +00:00
Glauber Costa
758ccb5e63 updated to 0.6.c 2009-05-19 01:13:29 +00:00
6 changed files with 1 additions and 91 deletions

View file

@ -1 +0,0 @@
vgabios-0.6b.tgz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: vgabios
# $Id$
NAME := vgabios
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

1
dead.package Normal file
View file

@ -0,0 +1 @@
Obsoleted by seabios provided seavgabios

View file

@ -1 +0,0 @@
vgabios-0_6-0_5_b_fc11:HEAD:vgabios-0.6-0.5.b.fc11.src.rpm:1236045633

View file

@ -1 +0,0 @@
36399621c4d6753e83a3cec3009c7183 vgabios-0.6b.tgz

View file

@ -1,67 +0,0 @@
Name: vgabios
Version: 0.6
Release: 0.5.b%{?dist}
Summary: LGPL implementation of a vga video bios
Group: Applications/Emulators
License: LGPLv2
URL: http://www.nongnu.org/vgabios/
Source0: http://savannah.gnu.org/download/%{name}/%{name}-%{version}b.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: dev86
BuildArch: noarch
%description
vgabios is an LPGL implementation of a bios for a video card.
It is tied to plex86/bochs, althoug it will likely work on other
emulators. It is not intended for use in real cards.
%prep
%setup -q -n %{name}-%{version}b
%build
make clean
make biossums %{?_smp_mflags}
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_datadir}/vgabios
install -m 0644 VGABIOS-lgpl-*.bin $RPM_BUILD_ROOT%{_datadir}/vgabios
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%dir %{_datadir}/vgabios/
%doc README COPYING
%{_datadir}/vgabios/VGABIOS-lgpl-latest.bin
%{_datadir}/vgabios/VGABIOS-lgpl-latest.cirrus.bin
%{_datadir}/vgabios/VGABIOS-lgpl-latest.cirrus.debug.bin
%{_datadir}/vgabios/VGABIOS-lgpl-latest.debug.bin
%changelog
* Mon Mar 02 2009 Glauber Costa <glommer@redhat.com> - 0.6.0.5.b
- fixed naming to comply with guidelines.
* Tue Feb 17 2009 Glauber Costa <glommer@redhat.com> - 0.6.0.4beta
- removed leftovers and fixed rpmlint errors.
* Mon Feb 16 2009 Glauber Costa <glommer@redhat.com> - 0.6.0.3beta
- using dev86 to build directly on all arches, made package noarch.
No more binaries \o/
* Fri Feb 13 2009 Glauber Costa <glommer@redhat.com> - 0.6.0.2beta
- Addressing BZ 485418: added doc section, clean build root before
we proceed, own vgabios directory
* Fri Feb 13 2009 Glauber Costa <glommer@redhat.com> - 0.6.0.1beta
- Created initial package