diff options
author | Zhenhua Luo <b19537@freescale.com> | 2012-09-26 15:18:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-26 15:02:26 +0100 |
commit | 074d49d2cc8bbc1a53a031d9ae0c828596017ed2 (patch) | |
tree | 43d4bb54cb08cc66446aff8b25c3817e1b107015 /meta/recipes-core | |
parent | fd464e0886a26b8a1d80b6f6277f62099dc61e69 (diff) | |
download | poky-074d49d2cc8bbc1a53a031d9ae0c828596017ed2.tar.gz |
sysvinit-inittab: fix hang issue of series consoles check
The kernel boot process hangs when /proc/consoles doesn't exists, therefore
check the existence of /proc/consoles before executing pkg_postinst script.
Following is the log when /proc/consoles doesn't exist:
Running postinst /etc/rpm-postinsts/102...
cat: /proc/consoles: No such file or directory
cat: /proc/consoles: No such file or directory
cat: /proc/consoles: No such file or directory
INIT: Entering runlevel: 5
Starting OpenBSD Secure Shell server: sshd
generating ssh RSA key...
generating ssh ECDSA key...
generating ssh DSA key...
done.
Starting network benchmark server: netserver.
Starting system log daemon...0
Starting kernel log daemon...0
Stopping Bootlog daemon: bootlogd.
INIT: no more processes left in this runlevel
(From OE-Core rev: 390e7f1f0b1b21d3c0787a6272583d5829561f95)
Signed-off-by: Zhenhua Luo <b19537@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb index 5b79caffc2..b28985314f 100644 --- a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb +++ b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "Inittab for sysvinit" | |||
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" |
4 | 4 | ||
5 | PR = "r8" | 5 | PR = "r9" |
6 | 6 | ||
7 | SRC_URI = "file://inittab" | 7 | SRC_URI = "file://inittab" |
8 | 8 | ||
@@ -54,7 +54,7 @@ EOF | |||
54 | 54 | ||
55 | pkg_postinst_${PN} () { | 55 | pkg_postinst_${PN} () { |
56 | # run this on the target | 56 | # run this on the target |
57 | if [ "x$D" = "x" ]; then | 57 | if [ "x$D" = "x" ] && [ -e /proc/consoles ]; then |
58 | tmp="${SERIAL_CONSOLES_CHECK}" | 58 | tmp="${SERIAL_CONSOLES_CHECK}" |
59 | for i in $tmp | 59 | for i in $tmp |
60 | do | 60 | do |