DESK-MP1-L/Development/Synchronizing git repositories

From DAVE Developer's Wiki
Jump to: navigation, search
History
Issue Date Notes

2023/08/09

DESK-MP1-L-1.0.0 release
2023/08/31 DESK-MP1-L-1.0.1 release



Synchronizing the git repositories[edit | edit source]

In DESK-MP1-L the following source trees are clones of the correspondent DAVE Embedded Systems git repositories: stm32cubemx.git

Component GIT Remote
STM32CubeMX Configuration file (.ioc) https://git.dave.eu/git/desk-mp1-l/stm32cubemx.git
ATF https://git.dave.eu/git/desk-mp1-l/arm-trusted-firmware.git
U-Boot https://git.dave.eu/git/desk-mp1-l/u-boot.git
Linux kernel https://git.dave.eu/git/desk-mp1-l/linux.git
Boot Image https://git.dave.eu/git/desk-mp1-l/desk-mp1-boot-image.git
Yocto BSP https://git.dave.eu/git/desk-mp1-l/desk-mp1-l-bsp.git
Yocto meta DESK https://git.dave.eu/git/desk-mp1-l/meta-desk-mp1.git

For more information about the access to these repositories, please refer to this link.

Access to DAVE Embedded Systems' git repositories is granted to development kit's owners only. Please refer to this page for detailed instructions on how to get access.

Instructions[edit | edit source]

The components listed in the table above can be kept in sync and up to date with DAVE Embedded Systems' repositories.

Once the git account has been enabled, the developer can:

  • clone the repository with the git clone <git_remote_repository> command
  • synchronize a source tree entering the repository directory and launching the git fetch origin command.

Please note that git fetch doesn't merge the commits on the current branch. To do that, the developer should run the git merge command or replace the fetch-merge process with a single git pull command. Please note that the recommended method is the fetch-merge process. For further information on Git, please refer to the official Git Documentation