by raumzeit » Mon Oct 17, 2011 9:44 pm
I obtained a pandaboard some days ago and could not get any login via serial console
$this->bbcode_second_pass_quote('kmihelich', 'L')ooks like the wrong files got into the rootfs somehow.
You need to change instances of ttyS0 to ttyO2 (capital letter o, 2) in /etc/inittab and /etc/securetty
In /etc/inittab change:
s0:12345:respawn:/sbin/agetty -8 -s 115200 ttyS0 linux
to:
s0:12345:respawn:/sbin/agetty -8 -s 115200 ttyO2 linux
In /etc/securetty change:
ttyS0
to:
ttyO2
This made my day

Thanx...
I was able to login via ssh before but these wrong tty devices seem to be still in the rootfs.
What should also be mentioned somewhere is that on the pandaboard (and I guess on the beagle as well) the vfat partition should be mounted as /boot in /etc/fstab
Otherwise an upgrade of the kernel results in a new kernel image in the second partition (rootfs) only while the kernel that gets loaded by uboot is not updated at all.
Something like
$this->bbcode_second_pass_code('', '/dev/disk/by-label/boot /boot vfat umask=0000,flush 0 0')
should do the trick, although a permission warning will appear when installing/updating the kernel
Or does someone have a better idea how to deal with that?
Also, I did not find any thread about a step-by-step installation for the pandaboard? Maybe one (or I) should start one???
greets from a new archlinuxarm user