Our repositories have been moved to github
As of 17th April,2015 the repositories hosted on rocketboards.org will no longer be updated. The latest bug fixes and improvements will be made available from github. The GIT server of RocketBoards.org will be kept up and running until Nov 2015, it will be brought down afterwards. Please follow the instructions below to use the new repositories immediately.
Repository update table
Note: the upstream repository for meta-altera is
http://github.com/kraj/meta-altera, we are upstreaming the contents of the meta-altera repository to
the upstream.
Managing the move to github
GIT supports the concept of ‘remote’ (that is, a server) and several remotes can be added to your local clone.Here are instructions to update your clone for github (example of the Linux kernel repository)
cd /path/to/clone/linux-socfpga
git remote add github https://github.com/altera-opensource/linux-socfpga
git fetch github
git checkout –b github_some_branch github/some_branch
# assuming your clone’s rocketboards’s remote name was origin
git remote remove origin # optional
git remote rename github origin # optional