LinuxQuestions.org
View the Most Wanted LQ Wiki articles.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 02-03-2012, 04:41 PM   #1
andrew.46
Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 480

Rep: Reputation: 63
Booting blind with slackware -current....


I returned to -current with the new raft of upgrades + kernel 3.2.2 and have faced a small problem: I get a black screen halfway through boot-up and have to login blind. Graphics:

Code:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
Passing 'nomodeset' to the kernel allows clear bootup but of course X will not start. Am I alone with this?
 
Old 02-03-2012, 05:42 PM   #2
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-C ML
Posts: 766

Rep: Reputation: 59
No your not alone.
My laptop w/intel dose it also.
It has a large hard drive and I have no way of telling when it's doing a file system check.

edit:
I get the KDM login screen but it's just plain black half way through boot.
After playing with it awhile I found that it boots normally "sometimes".
Otherwise it's a very good system after the upgrade.
My boxes with Nvidia cards have no issues.

Last edited by slackass; 02-03-2012 at 07:00 PM.
 
1 members found this post helpful.
Old 02-03-2012, 07:14 PM   #3
andrew.46
Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 480

Original Poster
Rep: Reputation: 63
Glad it is not just me then, my next computer will not have either intel graphics or broadcom wireless .
 
Old 02-03-2012, 07:29 PM   #4
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 1,376

Rep: Reputation: 128Reputation: 128
my laptop also has Intel graphics, but it boots fine on -Current (32 bit)
 
Old 02-03-2012, 07:46 PM   #5
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-C ML
Posts: 766

Rep: Reputation: 59
Quote:
Originally Posted by willysr View Post
my laptop also has Intel graphics, but it boots fine on -Current (32 bit)
Ok that's different than what I have.

Mine is 86_64 -Current with upgraded multi-libs
 
Old 02-03-2012, 07:48 PM   #6
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 241Reputation: 241Reputation: 241
Maybe downgrade to previous kernel version :/
 
Old 02-03-2012, 07:56 PM   #7
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-C ML
Posts: 766

Rep: Reputation: 59
Quote:
Originally Posted by Cedrik View Post
Maybe downgrade to previous kernel version :/
That would probably fix it but I'm betting that it will get fixed in the next few upgrades.
 
Old 02-03-2012, 08:12 PM   #8
andrew.46
Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 480

Original Poster
Rep: Reputation: 63
Google seems to think this is a known problem (this time around!), some discussion here may be relevant:

http://lists.freedesktop.org/archive...ry/014316.html

which talks about this patch:

Code:
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 2a3f707..51e7b58 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -5808,12 +5808,15 @@ static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
 	if (is_lvds) {
 		temp = I915_READ(PCH_LVDS);
 		temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
-		if (HAS_PCH_CPT(dev))
+		if (HAS_PCH_CPT(dev)){
+			temp &= ~PORT_TRANS_SEL_MASK;
 			temp |= PORT_TRANS_SEL_CPT(pipe);
-		else if (pipe == 1)
-			temp |= LVDS_PIPEB_SELECT;
-		else
-			temp &= ~LVDS_PIPEB_SELECT;
+		} else {
+			if (pipe == 1)
+				temp |= LVDS_PIPEB_SELECT;
+			else
+				temp &= ~LVDS_PIPEB_SELECT;
+		}
 
 		/* set the corresponsding LVDS_BORDER bit */
 		temp |= dev_priv->lvds_border_bits;
All looks a little bit in flux at the moment though . I shall test the patch after family BBQ and hopefully with this delay somebody else has already tested it .

BTW my system is 32bit...

Edit: More discussion here and here.

Last edited by andrew.46; 02-03-2012 at 09:04 PM.
 
Old 02-03-2012, 09:30 PM   #9
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-C ML
Posts: 766

Rep: Reputation: 59
Thanks andrew.46!
 
Old 02-03-2012, 11:32 PM   #10
andrew.46
Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 480

Original Poster
Rep: Reputation: 63
Unfortunately when I patched 3.2.4 the problem remained .
 
Old 02-04-2012, 05:23 AM   #11
andrew.46
Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 480

Original Poster
Rep: Reputation: 63
Well, after booting and rebooting more times than I would care to mention I seem to solved this problem on my own setup although black screen and intel appears to be a multi-faceted problem and for some like Willysr not a problem at all! For reasons that I do not fully understand disabling S-Video output, which I never use, allows me to now see the full bootup with kernel 3.2.2. I have booted successfully half a dozen time with no mishap. Accomplished this by adding the following to the append section of lilo.conf:

Code:
video=SVIDEO-1:d
It seems to murkiest of hacks but it works well enough on my system so I am happy with this .

Edit: dmesg shows the S-Video being turned off:

Code:
[    9.822072] [drm] forcing SVIDEO-1 connector OFF

Last edited by andrew.46; 02-04-2012 at 05:38 AM.
 
Old 02-04-2012, 08:14 PM   #12
allend
Senior Member
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware-current
Posts: 2,183

Rep: Reputation: 378Reputation: 378Reputation: 378Reputation: 378
Quote:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
No problems for me with a similar chipset but no S-Video.
 
Old 02-04-2012, 08:39 PM   #13
andrew.46
Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 480

Original Poster
Rep: Reputation: 63
Quote:
Originally Posted by allend View Post
No problems for me with a similar chipset but no S-Video.
And in fact no problems with exactly the same machine running 13.37 with 2.6.37.6 although I had to run an xorg.conf with:

Code:
Section "Device"
Identifier "Card0"
Driver "intel"
Option "Shadow" "false"
Option "DRI" "false"
BoardName "Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)"
BusID "PCI:0:2:0"
EndSection
To prevent freezes and blank screens with video and some screensavers. I have sometimes considered the possibility that the graphics chip might actually be possessed .
 
Old 02-09-2012, 03:28 PM   #14
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-C ML
Posts: 766

Rep: Reputation: 59
This last upgrade seems to have fixed mine.
 
Old 02-10-2012, 01:39 AM   #15
andrew.46
Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 480

Original Poster
Rep: Reputation: 63
Quote:
Originally Posted by slackass View Post
This last upgrade seems to have fixed mine.
Good news for you . But the problem and fix remain on my system although I seem to be alone with this. Interesting to see if Slackware -next_release brings a few more people with the same problem, the fix is 100% effective here.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Script to build always a current ISO image of Slackware (slackware-current) robertjinx Slackware 2 12-09-2010 02:00 AM
slackware current question on the current kernels davimint Slackware 3 06-03-2007 07:39 AM
DISCUSSION: Upgrade to Slackware -current without a -current CD truthfatal LinuxAnswers Discussion 0 09-19-2006 01:42 PM
Need help installing Slackware with SpeakUp for blind person mettahu Linux - Software 5 02-01-2005 12:50 PM
Blind leading the Blind allforcarrie LinuxQuestions.org Member Intro 2 09-15-2004 01:50 AM


All times are GMT -5. The time now is 09:35 AM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration