This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see
Information about these releases can be found at ../docs/release.html. Documentation can be found at ../docs/index.html. A copy of /docs/ can also be found in the release archives.
Download the key:
$ gpg --recv-keys
You can verify the downloaded archives as follows:
$ for signature in $(ls *.sig); do gpg --verify $signature; done
These releases are more rigorously tested. However, they might be out of date compared to the current development snapshots.
These archives are not updated very often, and will not receive any further changes.
Download from one of these mirrors.
The latest release has a version number of , and was released on .
Create a directory in your web server document root (e.g. /), and add one of these to your crontab:
0) { ?>$ rsync -avxP --delete --stats /path/to/docroot//
1) { ?>
$ rsync -avxP --delete --stats /path/to/docroot//
No mirrors available yet.
Are you running a mirror? Contact the project (details are on the home page), and the link will be added here.
The git repositories are intended for developing . For a list of current tasks in , see ../docs/tasks.html.
Maintenance guides for can be found at ../docs/maintain/index.html and and ../docs/git/index.html.
Firmware (coreboot distribution):
$ git clone
You might not see a progress bar; it's still cloning, so just be patient.
Backup repositories can be found at #gitbackup.
The git documentation describes how to use git.
Make sure that you configured git so that your name and email
address appear in the commits that you create:
$ git config --global user.name "Your Name"
$ git config --global user.email your@emailaddress.com
The following is also useful:
$ git config --global core.editor nano
$ git config --global color.status auto
$ git config --global color.branch auto
$ git config --global color.interactive auto
$ git config --global color.diff auto
Clone the git repository, and make your desired changes. You can make one or several commits (as many as you like). Generally speaking, you should create separate commits on top of each other, for each kind of change.
Once you have made your change(s), you can use this to check the status:
$ git status
If you are modifying an existing file, make sure to update the copyright license header
in that file; in source files or scripts, this would usually be at the top, and for documentation
it is typically at the bottom of the document. It is good practise to use your real name in the
commit logs.
Example: Copyright (C) 20XX John Doe <john@doe.com>
Generally speaking, using the same license as the file that you are modifying is much simpler. If you are submitting new files, please make sure that they are under a free license (copyleft preferred). You can find a list on https://www.gnu.org/licenses/license-list.html.
The project will not accept documentation released under the GNU Free Documentation License, because we do not want to endorse or support the Invariant clauses that this license allows. Changes submitted under this license will be rejected, even if it contains no Invariant sections
The status command will show any untracked files that you have. Add them using git add path/to/file.
You should also add any other files that are listed as modified in the git status. If there are deleted
files in the git status, you can use git rm path/to/file. As long as you have added all the untracked
files, it is generally easier to use:
$ git commit -a
(instead of git commit)
If you need to make a change to the current commit, you can do so with:
$ git commit --amend
or:
$ git commit -a --amend
In your local git tree, you can use this to check your commits:
$ git log
Shortened git logs showing the short commit ID and the commit title, plus info about what branch
you are on, and where all your remotes/heads are:
$ git config --global --add alias.lol "log --graph --decorate --pretty=oneline --abbrev-commit --all"
From then on, you can use:
$ git lol
This is like git log, but on steroids.
One way of contribiting a patch for review is to host a repository containing your modified branch. Give the checkout details to the project, along with information on which commits in what branch contain your changes. Contact the project using the details on the home page.
Use this method (replace N with the number of commits that you made) and send the .patch files to the project, along with details on what branch and revision these were made on top of. Contact the project using the details on the home page.
Generally speaking, you should use the main repositories. These repositories are provided as backups, in case the main repositories are down.
$ git clone "; ?>
$ git clone "; ?>