The DVDs have ISO images in them. How can I view the contents of the DVDs?
Please follow the below procedure:
Windows Users: Extract the iso using winrar application. Winrar can be downloaded from http://www.rarlab.com/download.htm
Linux Users: Mount the iso file using the following commands
- Create a mount point: Use the command:
mkdir -p /mnt/disk
- Use mount command as follows to mount iso file called disk1.iso:
mount -o loop dvd1.iso /mnt/
- To view the contents of the directory follow the below commands:
cd /mnt/disk
ls -l
|
| |
What is the weight and dimensions of the TMDSEVM3530 product box ?
The Box Size is : 42.5cm X 29cm X 12cm and the weight is about 2.10kgs (approx)
Is there a Diagnostic utility to test the peripherals on the OMAPEVM?
Yes. There is a u-boot called the itbok.bin(ITBOK stands for Is the Board OK) with the diagnostic routine built in it. Download the itbok.bin Copy the itbok.bin file to the tftp server directory and execute the below commands:
OMAP3_EVM# setenv serverip <serverip where the tftp is running>
OMAP3_EVM#setenv ipaddr <ipaddress for the OMAPEVM>
OMAP3_EVM#tftp 0x80000000 itbok.bin
OMAP3_EVM#go 0x80000000
OMAP3_EVM#itbok |
For more information on the ITBOK, refer to the following link
http://processors.wiki.ti.com/index.php/ITBOK#Integrating_ITBOK_with_U-Boot
|