mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Title underlines should match the length of the title. Unfortunately docutils only catches underlines that are too short. Add some missing empty lines after titles. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			602 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			602 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
Obtaining the source
 | 
						|
====================
 | 
						|
 | 
						|
The source of the U-Boot project is maintained in a Git repository.
 | 
						|
 | 
						|
You can download the source via
 | 
						|
 | 
						|
.. code-block:: bash
 | 
						|
 | 
						|
    git clone https://source.denx.de/u-boot/u-boot.git
 | 
						|
 | 
						|
A mirror of the source is maintained on Github
 | 
						|
 | 
						|
.. code-block:: bash
 | 
						|
 | 
						|
    git clone https://github.com/u-boot/u-boot
 | 
						|
 | 
						|
The released versions are available as tags which use the naming scheme::
 | 
						|
 | 
						|
    v<year>.<month>
 | 
						|
 | 
						|
Release candidates are named::
 | 
						|
 | 
						|
    v<year>.<month>-rc<number>
 | 
						|
 | 
						|
To checkout the October 2020 release you would use:
 | 
						|
 | 
						|
.. code-block:: bash
 | 
						|
 | 
						|
    git checkout v2020.10
 |