Compare commits
14 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c44d6ad8a5 | ||
|
|
6ec13e9a36 | ||
|
|
32d04cf0be | ||
|
|
683c826120 | ||
|
|
ddfd4f91a7 | ||
|
|
f26eee73c4 | ||
|
|
dea080b07e | ||
|
|
d77b14aaca | ||
|
|
0b973fde71 | ||
|
|
de93281311 | ||
|
|
62aaa2f3a4 | ||
|
|
1fc71ed702 | ||
|
|
f8d7609ce2 | ||
|
|
853e47f0ea |
7 changed files with 1 additions and 157 deletions
|
|
@ -1 +0,0 @@
|
|||
vgabios-0.6b.tgz
|
||||
21
Makefile
21
Makefile
|
|
@ -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
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Obsoleted by seabios provided seavgabios
|
||||
|
|
@ -1 +0,0 @@
|
|||
vgabios-0_6-0_5_b_fc11:HEAD:vgabios-0.6-0.5.b.fc11.src.rpm:1236045633
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
36399621c4d6753e83a3cec3009c7183 vgabios-0.6b.tgz
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
From c3885286784174680811be037a8cef83c43c47c2 Mon Sep 17 00:00:00 2001
|
||||
From: Glauber Costa <glommer@redhat.com>
|
||||
Date: Thu, 18 Jun 2009 18:26:00 -0400
|
||||
Subject: [PATCH] provide high res resolutions to non-cirrus devices.
|
||||
|
||||
Add widescreen modes to vbetables-gen.c , and increase device memory.
|
||||
|
||||
Signed-off-by: Glauber Costa <glommer@redhat.com>
|
||||
---
|
||||
vbetables-gen.c | 23 ++++++++++++++++++++++-
|
||||
1 files changed, 22 insertions(+), 1 deletions(-)
|
||||
|
||||
diff --git a/vbetables-gen.c b/vbetables-gen.c
|
||||
index 7014a16..96ac85a 100644
|
||||
--- a/vbetables-gen.c
|
||||
+++ b/vbetables-gen.c
|
||||
@@ -2,7 +2,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
-#define VBE_DISPI_TOTAL_VIDEO_MEMORY_MB 8
|
||||
+#define VBE_DISPI_TOTAL_VIDEO_MEMORY_MB 16
|
||||
|
||||
typedef struct {
|
||||
int width;
|
||||
@@ -55,6 +55,27 @@ ModeInfo modes[] = {
|
||||
{ 1152, 864, 16 , 0x14a},
|
||||
{ 1152, 864, 24 , 0x14b},
|
||||
{ 1152, 864, 32 , 0x14c},
|
||||
+{ 1280, 800, 16 , 0x178},
|
||||
+{ 1280, 800, 24 , 0x179},
|
||||
+{ 1280, 800, 32 , 0x17a},
|
||||
+{ 1280, 960, 16 , 0x17b},
|
||||
+{ 1280, 960, 24 , 0x17c},
|
||||
+{ 1280, 960, 32 , 0x17d},
|
||||
+{ 1440, 900, 16 , 0x17e},
|
||||
+{ 1440, 900, 24 , 0x17f},
|
||||
+{ 1440, 900, 32 , 0x180},
|
||||
+{ 1400, 1050, 16 , 0x181},
|
||||
+{ 1400, 1050, 24 , 0x182},
|
||||
+{ 1400, 1050, 32 , 0x183},
|
||||
+{ 1680, 1050, 16 , 0x184},
|
||||
+{ 1680, 1050, 24 , 0x185},
|
||||
+{ 1680, 1050, 32 , 0x186},
|
||||
+{ 1920, 1200, 16 , 0x187},
|
||||
+{ 1920, 1200, 24 , 0x188},
|
||||
+{ 1920, 1200, 32 , 0x189},
|
||||
+{ 2560, 1600, 16 , 0x18a},
|
||||
+{ 2560, 1600, 24 , 0x18b},
|
||||
+{ 2560, 1600, 32 , 0x18c},
|
||||
{ 0, },
|
||||
};
|
||||
|
||||
--
|
||||
1.6.2.2
|
||||
|
||||
77
vgabios.spec
77
vgabios.spec
|
|
@ -1,77 +0,0 @@
|
|||
Name: vgabios
|
||||
Version: 0.6b
|
||||
Release: 3%{?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}.tgz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: dev86
|
||||
BuildArch: noarch
|
||||
Patch1: %{name}-provide-high-res.patch
|
||||
|
||||
%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}
|
||||
%patch1 -p1
|
||||
|
||||
%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
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6b-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2009 Glauber Costa <glommer@redhat.com> - 0.6b-2
|
||||
- properly add the patch
|
||||
|
||||
* Fri Jun 19 2009 Glauber Costa <glommer@redhat.com> - 0.6b-1
|
||||
- applied vgabios-provide-high-res.patch, that should fix #499060
|
||||
- Changed versioning naming, since the "b" in 0.6b does not stand for beta.
|
||||
|
||||
* 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue