Difference between revisions of "ECE497 Notes on Creating the ICASSP Image"

From eLinux.org
Jump to: navigation, search
(GStreamer)
(bash)
Line 36: Line 36:
 
$ opkg update
 
$ opkg update
 
$ opkg install synergy
 
$ opkg install synergy
 +
</pre>
 +
 +
== Make bash the default shell ==
 +
 +
<pre>
 +
chsh -s bash root
 
</pre>
 
</pre>

Revision as of 14:47, 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.

Removed TI proxy

In the browser, under Edit menu, Preferences, then the network tab.

/home/root

I'm populating /home/root with things. I'll zip it up and send a copy when it is done.

GStreamer

I'm not presenting GStreamer, but I'd like to have the demos. Lots of media at /usr/share/gst-media

opkg

I've installed the following via opkg

$ opkg update
$ opkg install synergy

Make bash the default shell

chsh -s bash root