Open main menu

DAVE Developer's Wiki β

Changes

Software Manual (Diva)

2,043 bytes added, 12:45, 17 May 2013
m
DIVELK components
For further information on EZSDK, please refer to [http://processors.wiki.ti.com/index.php/Sitara_SDK_5.06.00_Release_Notes Sitara SDK release notes].
 
=== DIVELK Updates ===
 
==== Updating git repositories ====
 
In DIVELK, the following source trees are clones of DAVE's public git repositories:
 
 
{| class="wikitable"
|-
!| Component
!GIT Remote
!DIVELK Installation Directory
|-
|Linux
|git@git.dave.eu:dave/diva/linux-am33x.git
|/home/dvdk/delk/linux-am33x.git
|-
|U-Boot
|git@git.dave.eu:dave/diva/u-boot-am33x.git
|/home/dvdk/delk/u-boot-am33x.git
|-
|}
 
 
This means that these components can be kept in sync and up to date with DAVE's repositories.
 
==== RSA key generation ====
 
Please follow the procedure reported below to generate the RSA ssh key:
 
* select your username (ad es. username@myhost.com)
* start the DVDK and login into the virtual machine
* start a shell session
* enter the .ssh subdirectory into your home directory: <code>cd ~/.ssh/</code>
* launch the following command: <br><pre>ssh-keygen -t rsa -C "username@myhost.com"</pre>
* this command creates the files <code>~/.ssh/username@myhost.com</code> ('''private key''') and <code>~/.ssh/username@myhost.com.pub</code> ('''public key''')
* edit your <code>~/.ssh/config</code> adding the following lines:
 
<pre>
Host git.dave.eu
User git
Hostname git.dave.eu
PreferredAuthentications publickey
IdentityFile ~/.ssh/username@myhost.com.pub
</pre>
 
Please send the public key file to one of the following email support addresses (depending on which SOM is included in your kit version)
 
* [mailto:support-diva@dave.eu support-diva@dave.eu]
 
with the request for the creation of a new public git account associated to your username. The support team will enable the account and send you a confirmation as soon as possible.
 
==== Synchronizing the repository ====
 
When the account is enabled, you can synchronize a source tree entering the repository directory and launching the <code>git fetch</code> command, like in the following example:
 
<pre class="workstation-terminal">
dvdk@dvdk-vm:~$ cd /home/dvdk/delk/linux-am33x.git/
dvdk@dvdk-vm:/home/dvdk/delk/linux-am33x.git$ git fetch origin
</pre>
== Release notes ==