December 2010
9 posts
2 tags
Rowboat
Download pre-built image:
http://software-dl.ti.com/dsps/dsps_public_sw/sdo_tii/TI_Android_DevKit/02_00_00/index_FDS.html
Instruction:
http://processors.wiki.ti.com/index.php/TI-Android-FroYo-DevKit-V2_UserGuide
1 tag
nfs share
tango3[/]# mkdir /rootfs
tango3[/]# mount -o nolock 192.168.1.90:/home/lixian/Eclair_r3 /rootfs
tango3[/]# cd rootfs
tango3[rootfs]# ls
Makefile development/ prebuilt/ android_rootfs.tgz external/ rootfs/ bionic/ frameworks/ sdk/ bootable/ hardware/ syncrootfs.bash* build/ out/ system/...
1 tag
DHCP
tango3[mnt]# udhcpc
udhcpc (v1.13.4) started
Sending discover…
Sending select for 192.168.1.161…
Lease of 192.168.1.161 obtained, lease time 3600
deleting routers
route: SIOCDELRT: No such process
adding dns 192.168.1.254
1 tag
mkfs.ext3
tango3[dev]# mkfs.ext3 -b 2048 /dev/sigmblockh
mke2fs 1.40.4 (31-Dec-2007)
Filesystem label=
OS type: Linux
Block size=2048 (log=1)
Fragment size=2048 (log=1) 12800 inodes, 25600 blocks
1280 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=26214400
2 block groups
16384 blocks per group, 16384...
1 tag
TCP/IP Protocol Layer
The application layer consists of a wide variety of applications, among which are the following.
* Hypertext Transfer Protocol (HTTP). Provides the World Wide Web (WWW) service.
* Telnet. Used for remote access to a computer.
* Domain Name System (DNS). Distributed service that translates between domain names and IP addresses.
* Simple Network...
1 tag
Talk to adapter
screen /dev/ttyUSB0 115200
1 tag
How to set up minicom?
Minicom is a text-based serial port communications program, similar to Cutecom. It is used to talk to external RS232 devices such as mobile phones, routers.
1 tag
How to install JDK5 under Ubuntu
Since the file is deleted, I have to spend some time to figure how to install it again. Gosh…
Make it executable and execute it:
chmod +x jdk-1_5_0_22.bin ./jdk-1_5_0_22.bin
Move the extracted folder to the place where you want to store the JDK, for example /usr/lib/jvm:
sudo mv jdk1.5.0_22 /usr/lib/jvm/java-5-sun-1.5.0.22
Create a symbolic link that will define the alias name for this...
2 tags
How to get git under Ubuntu
First we install the dependent packages, thus you wont have to install the packages yourself.
$ sudo aptitude build-dep git-core
Download latest stable GIT release from http://git-scm.com/
$ wget http://kernel.org/pub/software/scm/git/git-1.7.3.2.tar.gz
Extract the archive and change to the extracted directory
# tar xvzf git-1.7.3.2.tar.gz # cd...