From: Frank Haverkamp <f.haverkamp@web.de>
To: linuxppc-embedded@lists.linuxppc.org, "OliverAmft" <oam@oamx.net>
Subject: Re: initial shell respawning too fast
Date: Fri, 22 Mar 2002 09:53:37 +0100 [thread overview]
Message-ID: <200203220853.g2M8rbv23457@mailgate5.cinetic.de> (raw)
Hi,
I have seen that behaviour when I used a kernel without math
emulation on a filesystem which had binaries not compiled with
-mcpu=403 having floating point instructions in them.
The missbehavior was caused because sh/bash crashed due an invalid
instruction and init was trying to respawn it of course without
success.
#! /bin/bash
#
# Here's a useful little one-liner that lets you find out if there are any
# floating point instructions in an object file.
#
OBJDUMP=/opt/fsp/i586-pc-linux-gnu/local/bin/powerpc-linux-objdump
function usage()
{
echo "Here's a useful little one-liner that lets you find out if there"
echo "are any floating point instructions in an object file."
echo
echo "Usage: $(basename $0) ppc-objfile"
}
if [ -z $1 ]; then
usage
exit
else
$OBJDUMP -S $1 | egrep \
'mtfsf|lfd|lfs|stfd|stflwx|stfs|:[ \t]*(fc|fd|fe|ff|ec|ed|ee|ef) ';
fi
exit 0
I found this script which finds out if there are any floating point
instructions in you binaries/libraries. I copied it somewhere and
hope that the one you originally wrote it is ok with seeing this
published ;-)
Frank
Oliver Amft <oam@oamx.net> schrieb am 20.03.02:
> I am trying to boot Linux (linuxppc_2_4_devel 2.4.19-pre1) from a
> Walnut,
> 405GP Rev D board - All works fine till INIT starts (see screen
> printout below). The root fs (nfs boot) is an older version of the
> HardHat filesystem. bash crashes somehow, but unforunatly it prints no
> report. An old HHL 2.4.0-test2 kernel still works with this root fs.
>
> INIT: version 2.77 booting
> INIT: Entering runlevel: 3
> INIT: Id "sh" respawning too fast: disabled for 5 minutes
> INIT: no more processes left in this runlevel
> INIT: Id "sh" respawning too fast: disabled for 5 minutes
> INIT: Id "sh" respawning too fast: disabled for 5 minutes
> INIT: Id "sh" respawning too fast: disabled for 5 minutes
> INIT: Id "sh" respawning too fast: disabled for 5 minutes
>
>
> Probably I am missing some trivial thing - any ideas welcome!
>
> Oliver
>
>
--
Frank Haverkamp
f.haverkamp@web.de
______________________________________________________________________________
Die Nummer, die sich jeder merkt: Ihre 01212 Wunschrufnummer von WEB.DE!
Jetzt sichern: http://freemail.web.de/?mc=990001
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
next reply other threads:[~2002-03-22 8:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-03-22 8:53 Frank Haverkamp [this message]
-- strict thread matches above, loose matches on Subject: below --
2002-03-22 13:04 initial shell respawning too fast Oliver Amft
2002-03-20 18:02 Oliver Amft
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200203220853.g2M8rbv23457@mailgate5.cinetic.de \
--to=f.haverkamp@web.de \
--cc=linuxppc-embedded@lists.linuxppc.org \
--cc=oam@oamx.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).