summaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* docs: Remove reference to deprecated imagespbarker/docsPaul Barker2018-03-231-7/+5
| | | | Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* docs: Do not force alabaster themePaul Barker2017-12-181-1/+1
| | | | | | | | | | Sphinx will use the 'alabaster' theme by default when building locally. However, Read the Docs will use their own theme by default which suits their site better. By not specifying html_theme we allow both targets to use the appropriate default theme. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* rpi-config: Add RPI_EXTRA_CONFIG optionPaul Barker2017-12-181-0/+16
| | | | | | | The variable RPI_EXTRA_CONFIG can be set in local.conf to append text to the Raspberry Pi config.txt file as described in the documentation. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* docs: Drop comment on broken raspberrypi3-64 HDMI outputPaul Barker2017-10-121-6/+0
| | | | | | Graphical output on raspberrypi3-64 should now be fixed. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* Support using u-boot with Image format for raspberrypi3-64Paul Barker2017-09-241-3/+5
| | | | | | | | For raspberrypi3-64 we need to use the Image or Image.gz format with u-boot instead of the legacy uImage format. We also need to issue the 'booti' command to boot the kernel instead of 'bootm'. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* extra-apps.md: Document limitations of raspberrypi3-64Khem Raj2017-09-081-0/+6
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* linux-raspberrypi: Add option for disabling rpi boot logo.Zdzisław Krajewski2017-09-011-0/+6
| | | | Signed-off-by Zdzisław Krajewski <zdzichucb@gmail.com>
* docs: Format all links correctlyPaul Barker2017-05-261-5/+5
| | | | Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* docs: small editorial fixMirza Krak2017-05-261-1/+1
| | | | Signed-off-by: Mirza Krak <mirza.krak@endian.se>
* docs: drop "Device tree support" sectionMirza Krak2017-05-261-13/+0
| | | | | | | We no longer provide any Linux kernel which do not have device-tree support and all machines setup KERNEL_DEVICETREE correctly. Signed-off-by: Mirza Krak <mirza.krak@endian.se>
* docs: fix alignment of "code blocks"Mirza Krak2017-05-263-30/+42
| | | | | | | | | | | | | | | | | | | | | We provide a lot of variable examples as code blocks in the following format: some text: `Variable` or some test: `Variable` Which is not as pretty as (when converted to html/pdf): some text: Variable Converted all and hoppefully this will improve readability a bit. Signed-off-by: Mirza Krak <mirza.krak@endian.se>
* docs: Remove incompatible table formatPaul Barker2017-05-261-10/+11
| | | | | | | Sadly sphinx doesn't support pipe tables in markdown at the minute. Let's use a bullet-point list instead. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* docs: Include readme in sphinx documentationPaul Barker2017-05-262-0/+2
| | | | | | | This allows us to avoid having to duplicate any information in the readme into another documentation file. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* docs: Initial sphinx configurationPaul Barker2017-05-263-0/+593
| | | | | | | | | | This allows us to create documentation by running 'make html' or 'make latexpdf' in the docs directory. It depends on sphinx and the recommonmark python module (for parsing markdown files in sphinx). Creation of the PDF document requires a full LaTeX toolchain to be installed. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
* docs: Initial split of README into docs directoryPaul Barker2017-05-264-0/+251
The top-level README document has got pretty unwieldy and so we need to switch to add some more structure to our documentation. The first step is to split out sub-sections of the README document into separate files in a new 'docs' directory. Whilst splitting up the README, we can also take the opportunity to tidy things up and fix a couple of typos. Signed-off-by: Paul Barker <pbarker@toganlabs.com>