Difference between revisions of "ECE497 Notes on Creating the ICASSP Image"
From eLinux.org
m (Initial page) |
|||
| Line 1: | Line 1: | ||
[[Category:ECE497]] | [[Category:ECE497]] | ||
| + | |||
| + | Here's the changes I've made to the image Daniel sent me. | ||
| + | |||
| + | |||
| + | == Serial port garbage == | ||
| + | |||
| + | This fixed the problem. I'll keep testing to be sure it's really needed. | ||
| + | |||
| + | I have simply added the following two lines to root's <code>.profile</code>: | ||
| + | <pre> | ||
| + | stty -parenb -parodd cs8 -inpck -istrip | ||
| + | echo 0 > /sys/class/tty/ttyS2/device/sleep_timeout | ||
| + | </pre> | ||
| + | A better fix would probably be to just add the second line to a rc.d startup script somewhere. | ||
| + | |||
| + | This suggestion came from this [http://groups.google.com/group/beagleboard/browse_thread/thread/d23c15e3c9fcb8fc posting]. | ||
Revision as of 20:24, 13 May 2011
Here's the changes I've made to the image Daniel sent me.
Serial port garbage
This fixed the problem. I'll keep testing to be sure it's really needed.
I have simply added the following two lines to root's .profile:
stty -parenb -parodd cs8 -inpck -istrip echo 0 > /sys/class/tty/ttyS2/device/sleep_timeout
A better fix would probably be to just add the second line to a rc.d startup script somewhere.
This suggestion came from this posting.