* [Bug 78748] New: Nouveau fails initializing KMS on Geforce2 Go (NV11M)
@ 2014-05-15 16:13 bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
0 siblings, 1 reply; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 16:13 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 1058 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
Priority: medium
Bug ID: 78748
Assignee: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Summary: Nouveau fails initializing KMS on Geforce2 Go (NV11M)
QA Contact: xorg-team-go0+a7rfsptAfugRpC6u6w@public.gmane.org
Severity: blocker
Classification: Unclassified
OS: Linux (All)
Reporter: isma.casti-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Hardware: x86 (IA32)
Status: NEW
Version: unspecified
Component: Driver/nouveau
Product: xorg
Created attachment 99105
--> https://bugs.freedesktop.org/attachment.cgi?id=99105&action=edit
Video bios (10de:0112 NVIDIA Corporation NV11M [GeForce2 Go] (rev b2))
Nouveau kernel module crashes at boot, trying to enable outputs.
It can not detect any modes.
All the outputs are turned off when the bug happens, so the system is unusable.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 2584 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
@ 2014-05-15 16:15 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 17:00 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
` (9 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 16:15 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 320 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
--- Comment #1 from Ismael <isma.casti-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> ---
Created attachment 99106
--> https://bugs.freedesktop.org/attachment.cgi?id=99106&action=edit
debug dmesg
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1179 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
2014-05-15 16:15 ` [Bug 78748] " bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-05-15 17:00 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 17:01 ` [Bug 78748] [NV11] " bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
` (8 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 17:00 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 1165 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
--- Comment #2 from Ilia Mirkin <imirkin-FrUbXkNCsVf2fBVCVOL8/A@public.gmane.org> ---
My investigation of this led to mode being null. I guess I would have expected
bios->fp_no_ddc to be set, but it wasn't. Will look at the attached vbios.
A workaround for now would be to change
drivers/gpu/drm/nouveau/nouveau_connector.c:nouveau_connector_detect_depth
/* LVDS: panel straps */
if (bios->fp_no_ddc) {
if (bios->fp.if_is_24bit)
connector->display_info.bpc = 8;
return;
}
to be
/* LVDS: panel straps */
if (1 || bios->fp_no_ddc) {
if (bios->fp.if_is_24bit)
connector->display_info.bpc = 8;
return;
}
Which will force it down this path. Alternatively you could change
duallink = mode->clock >= bios->fp.duallink_transition_clk;
to be
duallink = mode && mode->clock >=
bios->fp.duallink_transition_clk;
Which would also avoid the crash.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1966 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
2014-05-15 16:15 ` [Bug 78748] " bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 17:00 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-05-15 17:01 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 17:12 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
` (7 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 17:01 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 540 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
Ilia Mirkin <imirkin-FrUbXkNCsVf2fBVCVOL8/A@public.gmane.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Nouveau fails initializing |[NV11] Nouveau fails
|KMS on Geforce2 Go (NV11M) |initializing KMS on
| |Geforce2 Go (NV11M)
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1150 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
` (2 preceding siblings ...)
2014-05-15 17:01 ` [Bug 78748] [NV11] " bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-05-15 17:12 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 18:37 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
` (6 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 17:12 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 725 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
--- Comment #3 from Ilia Mirkin <imirkin-FrUbXkNCsVf2fBVCVOL8/A@public.gmane.org> ---
DCB table at 0xd537 version 1.5
DCB 0: type 0 [ANALOG] I2C 0 heads 0 conntag 0 LOCAL OR 0 maxfreq 350000kHz
DCB 1: type 4 [???] I2C 1 heads 1 unk00_4 1 conntag 1 LOCAL OR 1
DCB 2: type 1 [TV] I2C 1 heads 0 unk00_4 1 conntag 2 EXT 0 OR 0
Well that's a little odd... I suspect that throws off some of the logic. Type 4
is "reserved". Yet, somehow it still detects that there's a LVDS...
nvbios doesn't print the other stuff, so it'll take some more decoding to work
out what's what... might look at that later.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1503 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
` (3 preceding siblings ...)
2014-05-15 17:12 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-05-15 18:37 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 18:38 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
` (5 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 18:37 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 375 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
--- Comment #4 from Ismael <isma.casti-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> ---
Created attachment 99115
--> https://bugs.freedesktop.org/attachment.cgi?id=99115&action=edit
dmesg after first patch (it's a different userland than first log)
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1358 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
` (4 preceding siblings ...)
2014-05-15 18:37 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-05-15 18:38 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 18:39 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
` (4 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 18:38 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 317 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
--- Comment #5 from Ismael <isma.casti-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> ---
Created attachment 99116
--> https://bugs.freedesktop.org/attachment.cgi?id=99116&action=edit
patch #1
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1268 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
` (5 preceding siblings ...)
2014-05-15 18:38 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-05-15 18:39 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 19:09 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
` (3 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 18:39 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 340 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
--- Comment #6 from Ismael <isma.casti-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> ---
Created attachment 99117
--> https://bugs.freedesktop.org/attachment.cgi?id=99117&action=edit
X.org log with patch #1 applied
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1253 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
` (6 preceding siblings ...)
2014-05-15 18:39 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-05-15 19:09 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-08-21 19:34 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
` (2 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-05-15 19:09 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 667 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
Ismael <isma.casti-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #99117|0 |1
is obsolete| |
--- Comment #7 from Ismael <isma.casti-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> ---
Created attachment 99122
--> https://bugs.freedesktop.org/attachment.cgi?id=99122&action=edit
X.org log with patch #1 applied and xf86-video-nouveau
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 2110 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
` (7 preceding siblings ...)
2014-05-15 19:09 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-08-21 19:34 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-08-21 19:43 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2019-12-04 8:45 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-08-21 19:34 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 300 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
--- Comment #8 from Ilia Mirkin <imirkin-FrUbXkNCsVf2fBVCVOL8/A@public.gmane.org> ---
Can you confirm that things work fine with the hack I suggested (i.e. your
patch #1)?
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1068 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
` (8 preceding siblings ...)
2014-08-21 19:34 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2014-08-21 19:43 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2019-12-04 8:45 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2014-08-21 19:43 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 661 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
--- Comment #9 from Ismael <isma.casti-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> ---
(In reply to comment #8)
> Can you confirm that things work fine with the hack I suggested (i.e. your
> patch #1)?
No, it didn't work. Nouveau does not crash anymore, but the screen just flashes
and shows black and white garbage.
Sadly I do not have access to the hardware anymore, it was a customer's
hardware and he took it away. I suppose you can close this bug.
Sorry for not closing this down before, and thanks a lot for your help and
time.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 1494 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
* [Bug 78748] [NV11] Nouveau fails initializing KMS on Geforce2 Go (NV11M)
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
` (9 preceding siblings ...)
2014-08-21 19:43 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
@ 2019-12-04 8:45 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ @ 2019-12-04 8:45 UTC (permalink / raw)
To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
[-- Attachment #1.1: Type: text/plain, Size: 871 bytes --]
https://bugs.freedesktop.org/show_bug.cgi?id=78748
Martin Peres <martin.peres-GANU6spQydw@public.gmane.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |MOVED
--- Comment #10 from Martin Peres <martin.peres-GANU6spQydw@public.gmane.org> ---
-- GitLab Migration Automatic Message --
This bug has been migrated to freedesktop.org's GitLab instance and has been
closed from further activity.
You can subscribe and participate further through the new bug through this link
to our GitLab instance:
https://gitlab.freedesktop.org/xorg/driver/xf86-video-nouveau/issues/108.
--
You are receiving this mail because:
You are the assignee for the bug.
[-- Attachment #1.2: Type: text/html, Size: 2448 bytes --]
[-- Attachment #2: Type: text/plain, Size: 153 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/nouveau
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2019-12-04 8:45 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-15 16:13 [Bug 78748] New: Nouveau fails initializing KMS on Geforce2 Go (NV11M) bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
[not found] ` <bug-78748-8800-V0hAGp6uBxMKqLRl/0Ahz6D7qz1kEfGD2LY78lusg7I@public.gmane.org/>
2014-05-15 16:15 ` [Bug 78748] " bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 17:00 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 17:01 ` [Bug 78748] [NV11] " bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 17:12 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 18:37 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 18:38 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 18:39 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-05-15 19:09 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-08-21 19:34 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2014-08-21 19:43 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
2019-12-04 8:45 ` bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.