Hi,<br>I am newbie to linux kernel,doing kernel porting on a arm926ej-s 
FPGA board (only timer &amp; uart hardware is available in the board)<br><br>I&#39;m using busybox for rootfs(busy box binary is built with &quot;static&quot; option enabled)<br>
<br>After file system is mounted,I can see the below message, <br>&quot;VFS: Mounted root (cramfs filesystem) readonly on device 1:0.&quot;<br>&quot;Freeing init memory: 80K&quot;<br><br>I am expecting to get to shell prompt and give some commands (ls,clear) after file system gets mounted. <br>


<br><b>I am ending up in the shell prompt with the message as below:</b><br>&quot;entered linuxrc script&quot;<br>&quot;/bin/sh: can&#39;t access tty; job control turned off<br>/ $&quot;<br><br>I am getting no response from terminal for any commands entered in the shel lafter this.<br>


<br>I went through this FAQ in<a href="http://www.busybox.net/FAQ.html#job_control" target="_blank"> http://www.busybox.net/FAQ.html#job_control</a><br>I could not follow this exactly.<br><br>my kernel commad line is <br>

&quot;mem=32M console=ttySAC0,115200 root=/dev/ram0 init=/linuxrc initrd=0x80800000,8M user_debug=31&quot;<br>
<br><br><b>I could see 2 issues here:</b><br>1. I am using shell on /dev/console which is not correct  as mentioned in busybox FAQ<br>2. linuxrc and /etc/inittab files may not be correct.<br><br>I  think the problem could be in both above 2 cases.<br>


<br><br>Below are my /linuxrc and /etc/inittab file contents<br><b>linuxrc:<br><br></b>#!/bin/sh<br>/bin/echo &quot;entered linuxrc script&quot;<br>/bin/sh<br>exec /sbin/init<br><br><b><br>/etc/inittab:</b><br><br>id:3:initdefault:<br>


# System initialization.<br>si::sysinit:/etc/rc.d/rc.<div>sysinit<br>l0:0:wait:/etc/rc.d/rc 0<br>l1:1:wait:/etc/rc.d/rc 1<br>l2:2:wait:/etc/rc.d/rc 2<br>l3:3:wait:/etc/rc.d/rc 3<br>l4:4:wait:/etc/rc.d/rc 4<br>l5:5:wait:/etc/rc.d/rc 5<br>


l6:6:wait:/etc/rc.d/rc 6<br><br># Trap CTRL-ALT-DELETE<br>ca::ctrlaltdel:/sbin/shutdown -t3 -r now<br><br># When our UPS tells us power has failed, assume we have a few minutes<br># of power left.  Schedule a shutdown for 2 minutes from now.<br>


# This does, of course, assume you have powerd installed and your<br># UPS connected and working correctly.  <br>pf::powerfail:/sbin/shutdown -f -h +2 &quot;Power Failure; System Shutting Down&quot;<br><br># If power was restored before the shutdown kicked in, cancel it.<br>


pr:12345:powerokwait:/sbin/shutdown -c &quot;Power Restored; Shutdown Cancelled&quot;<br><br># Run gettys in standard runlevels<br>3:2345:respawn:/sbin/getty 115200 ttySAC0<br><br><br><br>Can some experts suggest how to fix this two problems and get a shell prompt working?</div>