aboutsummaryrefslogtreecommitdiff
path: root/lib/gdi/fb.cpp
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2011-03-03 16:09:07 +0100
committerAndreas Oberritter <obi@opendreambox.org>2011-03-03 16:09:07 +0100
commitd0380b44396cbcd497f42eb0047b58b309596007 (patch)
tree151ef6eac784a3fb26b1090daa93cd84d330917c /lib/gdi/fb.cpp
parent4a3df90cd255278dc238f6bf15040f02e0fec8f3 (diff)
parentebc557a0311087e573d497fb454e3a94d24cdbe0 (diff)
downloadenigma2-d0380b44396cbcd497f42eb0047b58b309596007.tar.gz
enigma2-d0380b44396cbcd497f42eb0047b58b309596007.zip
Merge branch 'obi/master'
Diffstat (limited to 'lib/gdi/fb.cpp')
-rw-r--r--lib/gdi/fb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gdi/fb.cpp b/lib/gdi/fb.cpp
index cde3e357..7ee555c1 100644
--- a/lib/gdi/fb.cpp
+++ b/lib/gdi/fb.cpp
@@ -83,12 +83,12 @@ nolfb:
int fbClass::showConsole(int state)
{
- int fd=open("/dev/vc/0", O_RDWR);
+ int fd=open("/dev/tty0", O_RDWR);
if(fd>=0)
{
if(ioctl(fd, KDSETMODE, state?KD_TEXT:KD_GRAPHICS)<0)
{
- eDebug("setting /dev/vc/0 status failed.");
+ eDebug("setting /dev/tty0 status failed.");
}
close(fd);
}