MityARM: Difference between revisions
Jump to navigation
Jump to search
m (→Ask1) |
|||
Line 32: | Line 32: | ||
I will start with the TI SDK for now and hope it is enough, but your information for the above two questions would be highly appreciated. Konstantin Olchanski olchansk@triumf.ca | I will start with the TI SDK for now and hope it is enough, but your information for the above two questions would be highly appreciated. Konstantin Olchanski olchansk@triumf.ca | ||
</pre> | </pre> | ||
= Create boot disk = | |||
* use 32GB "class 10" MicroSD card (use MicroSD->SD adapter for CL evaluation boards) | |||
* partition using "fdisk" like this: | |||
<pre> | |||
Device Boot Start End Blocks Id System | |||
sda1 * 1 9 72261 c W95 FAT32 (LBA) | |||
sda2 11 xxx xxxxxx 83 Linux | |||
</pre> | |||
* remember to mark partition 1 as active (boot flag, fdisk command "a") | |||
* mkfs.msdos /dev/sda1 | |||
* mke2fs -j /dev/sda2; tune2fs -c0 -i0 /dev/sda2 | |||
* mount /dev/sda1 /mnt/tmp | |||
* cd /mnt/tmp | |||
* tar xzvf /ladd/data0/olchansk/MityARM/kit/2GB-SDflash-3-29-12/sdd1-FAT32.tgz | |||
* umount /mnt/tmp | |||
* mount /dev/sda2 /mnt/tmp | |||
* cd /mnt/tmp | |||
* tar xzvf /ladd/data0/olchansk/MityARM/kit/2GB-SDflash-3-29-12/sdd2-Linux.tgz | |||
* umount /mnt/tmp | |||
* eject /dev/sda | |||
* try to boot from the new flash card |
Revision as of 21:03, 9 October 2013
CriticalLink MityARM
Links
- http://www.ti.com/lsds/ti/dsp/support/dev_tool/ccs_overview.page
- http://support.criticallink.com/redmine/projects/armc8-platforms/wiki
- http://support.criticallink.com/redmine/projects/armc8-platforms/wiki/Root_Filesystem
- http://arago-project.org/wiki/index.php/Main_Page
- http://support.criticallink.com/redmine/projects/armc8-platforms/wiki/Installing_Open_Embedded
- http://processors.wiki.ti.com/index.php/AM335x_release_download_page
- http://processors.wiki.ti.com/index.php/Sitara_SDK_5.05.00_Release_Notes
- http://downloads.ti.com/dsps/dsps_public_sw/am_bu/sdk/AM335xSDK/latest/exports/sitara-linuxsdk-sdg-05.05.00.00.pdf
- http://www.ti.com/tool/pinmuxtool
Useful links
- http://www.mitydsp.com/products-services/cpu-engines/mityarm-3359/
- http://www.mitydsp.com/products-services/base-boards/mityarm-335x-dev-kit/
- http://www.mitydsp.com/images/upload/File/MityARM-335X%20Development%20Kit.pdf
- http://software-dl.ti.com/dsps/dsps_public_sw/am_bu/sdk/AM335xSDK/latest/index_FDS.html
Ask 2012-oct-19
Hello! I just started with a MityARM-335x Development Kit and I am trying to make sense of the development environment. We hope to use the MityARM-3359 SoM in several research projects (we are a subatomic particle physics research lab in Canada) on custom-built base-boards. Personally, I have experience with embedded linux development for PowerPC CPUs in the VME and FPGA (Xilinx Virtex4) environements. Here is my questions: a) the USB flash drive that came with the dev kit contains some kind of virtual machine file with instructions to use some kind of Windows software to open it. We do our development exclusively on Linux - do you provide the development kit software in a linux-usable format? (I did find the TI SDK, but I do not know if it is the same as your SDK). b) on your wiki page, many links lead to your redmine site which requires a login, for example, at http://support.criticallink.com/redmine/projects/armc8-platforms/wiki this link requires a password the http://support.criticallink.com/redmine/projects/am335x-devkit/files are development kit customers like myself supposed to have access to these files? I will start with the TI SDK for now and hope it is enough, but your information for the above two questions would be highly appreciated. Konstantin Olchanski olchansk@triumf.ca
Create boot disk
- use 32GB "class 10" MicroSD card (use MicroSD->SD adapter for CL evaluation boards)
- partition using "fdisk" like this:
Device Boot Start End Blocks Id System sda1 * 1 9 72261 c W95 FAT32 (LBA) sda2 11 xxx xxxxxx 83 Linux
- remember to mark partition 1 as active (boot flag, fdisk command "a")
- mkfs.msdos /dev/sda1
- mke2fs -j /dev/sda2; tune2fs -c0 -i0 /dev/sda2
- mount /dev/sda1 /mnt/tmp
- cd /mnt/tmp
- tar xzvf /ladd/data0/olchansk/MityARM/kit/2GB-SDflash-3-29-12/sdd1-FAT32.tgz
- umount /mnt/tmp
- mount /dev/sda2 /mnt/tmp
- cd /mnt/tmp
- tar xzvf /ladd/data0/olchansk/MityARM/kit/2GB-SDflash-3-29-12/sdd2-Linux.tgz
- umount /mnt/tmp
- eject /dev/sda
- try to boot from the new flash card