* ysvinit-inittab: fix hang issue of series consoles check
@ 2012-09-26 7:18 b19537
2012-09-27 15:52 ` Saul Wold
0 siblings, 1 reply; 2+ messages in thread
From: b19537 @ 2012-09-26 7:18 UTC (permalink / raw)
To: openembedded-core; +Cc: msm
From: Zhenhua Luo <b19537@freescale.com>
the kernel boot process hangs when /proc/consoles doesn't exists, 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
Signed-off-by: Zhenhua Luo <b19537@freescale.com>
---
.../sysvinit/sysvinit-inittab_2.88dsf.bb | 4 ++--
1 file 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 5b79caf..b289853 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"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
-PR = "r8"
+PR = "r9"
SRC_URI = "file://inittab"
@@ -54,7 +54,7 @@ EOF
pkg_postinst_${PN} () {
# run this on the target
-if [ "x$D" = "x" ]; then
+if [ "x$D" = "x" ] && [ -e /proc/consoles ]; then
tmp="${SERIAL_CONSOLES_CHECK}"
for i in $tmp
do
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: ysvinit-inittab: fix hang issue of series consoles check
2012-09-26 7:18 ysvinit-inittab: fix hang issue of series consoles check b19537
@ 2012-09-27 15:52 ` Saul Wold
0 siblings, 0 replies; 2+ messages in thread
From: Saul Wold @ 2012-09-27 15:52 UTC (permalink / raw)
To: b19537; +Cc: msm, openembedded-core
On 09/26/2012 12:18 AM, b19537@freescale.com wrote:
> From: Zhenhua Luo <b19537@freescale.com>
>
> the kernel boot process hangs when /proc/consoles doesn't exists, 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
>
> Signed-off-by: Zhenhua Luo <b19537@freescale.com>
> ---
> .../sysvinit/sysvinit-inittab_2.88dsf.bb | 4 ++--
> 1 file 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 5b79caf..b289853 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"
> LICENSE = "GPLv2"
> LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
>
> -PR = "r8"
> +PR = "r9"
>
> SRC_URI = "file://inittab"
>
> @@ -54,7 +54,7 @@ EOF
>
> pkg_postinst_${PN} () {
> # run this on the target
> -if [ "x$D" = "x" ]; then
> +if [ "x$D" = "x" ] && [ -e /proc/consoles ]; then
> tmp="${SERIAL_CONSOLES_CHECK}"
> for i in $tmp
> do
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-09-27 16:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-26 7:18 ysvinit-inittab: fix hang issue of series consoles check b19537
2012-09-27 15:52 ` Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox