mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-04 20:54:45 +02:00
x11-common: Fix unusable serial console
The serial console port is basicly unusable in images containing X. Login works fine, but at the shell prompt only one out of N input characters (N usually between 2 and 10) gets through to the shell. dbus-launch (running as "dbus-launch --sh-syntax --exit-with-session") is also reading from /dev/console and "eating" the missing characters. As soon as I stop the Xserver ("sh /etc/init.d/xserver-nodm stop") the serial console starts wroking fine (because dbus-launch is not running any more). This patch addresses the problem. Signed-off-by: Wolfgang Denk <wd@denx.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
753f79806b
commit
0d3591db9c
|
@ -2,7 +2,7 @@
|
|||
|
||||
if [ -x /usr/bin/dbus-launch ]; then
|
||||
# As this is the X session script, always start a new DBus session.
|
||||
eval `dbus-launch --sh-syntax --exit-with-session`
|
||||
eval `dbus-launch --sh-syntax --exit-with-session </dev/null`
|
||||
echo "D-BUS per-session daemon address is: $DBUS_SESSION_BUS_ADDRESS"
|
||||
fi
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ DESCRIPTION = "Common X11 scripts"
|
|||
LICENSE = "GPLv2"
|
||||
SECTION = "x11"
|
||||
RDEPENDS_${PN} = "xmodmap xdpyinfo xtscal xinit formfactor"
|
||||
PR = "r38"
|
||||
PR = "r39"
|
||||
|
||||
SRC_URI = "file://etc"
|
||||
S = ${WORKDIR}
|
||||
|
|
Loading…
Reference in New Issue
Block a user