Selecting RETROPI SETTINGS causes Black screen
-
I'm getting less enthused to help now...
-
@markyh444 I so sorry for the late response had a work issue to deal with...when you initiate the RETROPIE SETTINGS to get to the RETROPIE SETUP SCRIPT menu the screen goes black and nothing pops up. I am connected via HDMI but I can SSH to this menu from another laptop and I am very new to Linux. Sorry once again for the late response...
-
@arealdushbag Have you even read the link I replied with mate? Seriously!!!!
-
Here it is again, copied and pasted, right here...
herb_fargus ADMINISTRATORS March 23, 2016
Before posting on the forum you need to do three things:Read the forum rules: http://retropie.org.uk/forum/topic/2/forum-rules
Search the official RetroPie Wiki for an answer to your problem: https://github.com/retropie/retropie-setup/wiki
Search this forum to see if your question has already been answered.
If you have done the above steps please add the following relevant information so that we can help narrow down the cause of your issue:
Pi Model: (B, B+, 2 B etc..)
RetroPie Version Used: (3.6, 3.8.1, 4.01 etc..)
Built From: (Pre made SD Image on RetroPie website, Berryboot, or on top of existing OS etc..)
USB Devices connected:
Controller used:
Error messages received:
Log found in /dev/shm/runcommand.log (if relevant):
Guide used: (Mention if you followed a guide)
File: (File with issue - with FULL path)
Emulator: (Name of emulator - if applicable)
Attachment of config files: (PLEASE USE PASTEBIN.COM FOR LARGE LOGS)
How to replicate the problem:Use markdown to format your posts - see http://commonmark.org/help/ - and put large logs on a pastebin type site like http://paste.ubuntu.com/ http://pastebin.com/ or similar.
Please wait patiently for a response - you are asking people to help you in their free time, and due to timezones, someone with an answer may not currently be around. Do not bump posts.
Also when posting PLEASE use tags so that it is easier for other users to search this forum for answers to their problems.
-
@markyh444 Welcome to my world :) Frustrating eh.
-
@BuZz incomprehensively so...
-
Thank you for you help you have been more than helpful I'm just too new to Linux to properly explain this issue..I checked online before submitting to this forum. No more help is needed.
-
@arealdushbag Dude, we just want you to answer the questions in the post. There's bullet points. You dont need to know squat about Linux to answer some questions. If you don't know how to find something out, just put that you don't know how to find it out and we'll help.
-
@arealdushbag if you aren't familiar with Linux terminology or what each retropie setting is (retropie has a lot of settings) you can always just post a video or screenshots of the steps you are taking as well.
-
I think this is related to a kernel update. I have the problem on one of my machines (noticed half hour ago) so I will be looking into it.
-
@herb_fargus @markyh444 @BuZz
So the problem was that when I exited Kodi back into emulation station and try to enter into the RetroPI setup script I would not see the menu. I originally configured my retropie to boot to Kodi automatically(first mistake). So I eventually found one of
@markyh444 old forums post about a similar problem. The fix I found from that post was not to auto boot to KODI and boot to emulation station instead. That fixed the problem. I did not mention that I was exiting KODI then trying to launch RetroPI setup SCRIPT. I thought Kodi wouldnt affect me trying to launch that window. -
I've never had Kodi on any of my RetroPie builds, so I dunno how you've found an old post by me about this.
-
I also go to es from kodi. I suspect now a kodi script change or something in tvservice. I'll debug this though.
Also why giving as much information as possible helps, as it gives me a pointer as to how to reproduce and fix it.
-
There wasn't any change in Kodi from some time now, the last one was from some days after the 16.1 release. Although I didn't test the RetroPie 4.X versions yet, I suspect this is because of the old "black screen on exit bug" in Kodi which was never fixed but it has a workaround, which is changing virtual terminals on exit. Can you try to edit /usr/bin/kodi and in the end, change the line
sudo chvt 2
to
sudo chvt 3
-
@Rascas Thanks. I guess some firmware / kernel change has brought it back again - I will test above, and also rolling back kernel/firmware.
I will also test doing
fbset -depth 8; fbset -depth 16
which is what we use in retropie to reset the framebuffer. -
I thought the black screen on exit was a Kodi 15 bug which was fixed in 16 ?
Another thing - your line
tvservice -p
can be problematic on composite set-ups (a user reported it here) - Better would be to save the mode before launching kodi viatvservice -s
and restore the mode afterwards.The
fbset -depth 8
/fbset -depth 16
might work better than switching vts btw as it will work even if already on VT 2. Also no sudo needed.I would also add a 1 second delay after switching mode with tvservice.
-
It wasn't really fixed in the program or firmware, but workarounded in /usr/bin/kodi.
Can you give me an example on how to save and restore with tvservice, in a way that works for any kind of TV / setup ?
I don't remember exactly in what but I think the change of VT is needed because of black screen after exiting Kodi. I think
fbset -depth 8/fbset -depth 16
isn't enough. I will try to test it but only on Monday now, can you please test it also ? -
@Rascas Have done some testing.
Actually it was enough to add a
sleep 1
right after tvservice to fix the problem. I also tested with fbset which works - so I think this would be safer (and reduces the need for a check)sudo tvservice -p >/dev/null 2>&1 sleep 1 fbset -depth 8 fbset -depth 16
but I would also remove the tvservice line altogether - unless you are actually saving the previous mode and restoring it - are we certain Kodi doesn't restore the video mode on exit anyway. Works here to just include the
fbset
lines. -
sudo tvservice -p >/dev/null 2>&1
This is only needed to fix a bug in which, if one uses a different resolution in Kodi than the default TV resolution (or the defined in config.txt), when you exit Kodi, ES stays in the same resolution of the one set in Kodi. -
I put this together based on runcommand code (converted from bash to generic shell) - only had limited testing but should work on composite (as tvservice -p does not work right when using composite out)
#!/bin/sh save_mode() { local status="$(tvservice -s)" if echo "$status" | grep -qE "(PAL|NTSC)"; then MODE_TYPE=$(echo "$status" | grep -oE "(PAL|NTSC)") MODE_INFO=$(echo "$status" | grep -oE "([0-9]+\:[0-9]+)") else MODE_TYPE=$(echo "$status" | grep -oE "(CEA|DMT)") MODE_INFO=$(echo "$status" | grep -oE "\([0-9]+\)" | tr -d '()') fi } restore_mode() { if [ "$MODE_TYPE" = "PAL" ] || [ "$MODE_TYPE" = "NTSC" ]; then tvservice -c "$MODE_TYPE $MODE_INFO" >/dev/null else tvservice -e "$MODE_TYPE $MODE_INFO" >/dev/null fi sleep 1 fbset -depth 8 fbset -depth 16 } save_mode # launch kodi restore_mode
Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.
Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.