Compare commits

..

12 commits

Author SHA1 Message Date
Fedora Release Engineering
b43165416e dist-git conversion 2010-07-28 08:45:20 +00:00
Bill Nottingham
e057ef936e Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:37:57 +00:00
Chris Weyl
4be41866a4 die die die 2007-11-18 19:52:34 +00:00
Chris Weyl
e27e1b05e0 details, details... :) 2007-11-14 16:58:00 +00:00
Chris Weyl
91c16a76f1 - incorporate patch from bz #331411 2007-11-14 05:11:17 +00:00
Chris Weyl
a14e276ca8 release bump 2007-08-21 21:36:41 +00:00
Chris Weyl
6fdc0f2611 - add 'ppc64' to list of arches excluded from builds; no rebuild at this
time
2007-05-18 17:22:31 +00:00
Chris Weyl
5aa6c85012 update to 0.5.3 2007-04-30 21:27:18 +00:00
Chris Weyl
2b8dc74f0b bump, commit additional files 2007-03-02 05:05:01 +00:00
Chris Weyl
219f1128b1 resync branches; apply changes for BZ#219236 to all current branches 2007-03-02 04:11:59 +00:00
Chris Weyl
ef0931725b update for BZ#219236 2007-02-19 18:26:43 +00:00
Chris Weyl
30302e50da resurrect, per RH#218339 2006-12-07 02:52:13 +00:00
3 changed files with 64 additions and 1 deletions

View file

@ -1,6 +1,6 @@
Name: 915resolution
Version: 0.5.3
Release: 1%{?dist}
Release: 3%{?dist}
Summary: Intel video BIOS hack to support certain resolutions
Group: User Interface/X Hardware Support
@ -10,6 +10,7 @@ Source0: http://www.geocities.com/stomljen/%{name}-%{version}.tar.gz
Source1: %{name}-init
Source2: %{name}-config
Source3: %{name}-pm-hook
Patch0: 965GM.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# this doesn't make much sense on ppc. That, and it fails to build :)
@ -41,6 +42,7 @@ differs substantially. 915resolution's code base is much simpler.
%prep
%setup -q
%patch0 -p1
# keep rpmlint from complaining....
chmod -x dump_bios
@ -98,6 +100,12 @@ fi
%changelog
* Tue Nov 13 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.5.3-3
- incorporate patch from bz #331411
* Tue Aug 21 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.5.3-2
- bump
* Fri May 18 2007 Chris Weyl <cweyl@alumni.drew.edu>
- add 'ppc64' to list of arches excluded from builds; no rebuild at this time

54
965GM.patch Normal file
View file

@ -0,0 +1,54 @@
--- 915resolution-0.5.3/915resolution.c.lr 2007-10-14 19:35:46.000000000 +0200
+++ 915resolution-0.5.3/915resolution.c 2007-10-14 19:38:49.000000000 +0200
@@ -56,12 +56,12 @@
typedef enum {
CT_UNKWN, CT_830, CT_845G, CT_855GM, CT_865G, CT_915G, CT_915GM, CT_945G, CT_945GM,
- CT_946GZ, CT_G965, CT_Q965
+ CT_946GZ, CT_G965, CT_965GM, CT_Q965
} chipset_type;
char * chipset_type_names[] = {
"UNKNOWN", "830", "845G", "855GM", "865G", "915G", "915GM", "945G", "945GM",
- "946GZ", "G965", "Q965"
+ "946GZ", "G965", "965GM", "Q965"
};
typedef enum {
@@ -221,6 +221,10 @@
type = CT_G965;
break;
+ case 0x2a008086:
+ type = CT_965GM;
+ break;
+
case 0x29908086:
type = CT_Q965;
break;
@@ -510,6 +514,7 @@
case CT_945GM:
case CT_946GZ:
case CT_G965:
+ case CT_965GM:
case CT_Q965:
outl(0x80000090, 0xcf8);
map->b1 = inb(0xcfd);
@@ -550,6 +555,7 @@
case CT_945GM:
case CT_946GZ:
case CT_G965:
+ case CT_965GM:
case CT_Q965:
outl(0x80000090, 0xcf8);
outb(map->b1, 0xcfd);
@@ -809,6 +815,9 @@
else if (!strcmp(argv[index], "G965")) {
*forced_chipset = CT_G965;
}
+ else if (!strcmp(argv[index], "965GM")) {
+ *forced_chipset = CT_965GM;
+ }
else if (!strcmp(argv[index], "Q965")) {
*forced_chipset = CT_Q965;
}

1
dead.package Normal file
View file

@ -0,0 +1 @@
i810 driver not present in devel/f9+ :)