diff options
author | Paul Barker <pbarker@toganlabs.com> | 2017-12-11 19:50:40 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2017-12-18 19:20:43 +0000 |
commit | 9bf918014bbf1df7b2f4844cc5e70532a625f887 (patch) | |
tree | dee5cb894874fce5cf9720a65e9663513e7810b5 /docs/extra-build-config.md | |
parent | 8124f871753fb874e927c222d574ace1c4dfc2c1 (diff) | |
download | meta-raspberrypi-9bf918014bbf1df7b2f4844cc5e70532a625f887.tar.gz |
rpi-config: Add RPI_EXTRA_CONFIG option
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>
Diffstat (limited to 'docs/extra-build-config.md')
-rw-r--r-- | docs/extra-build-config.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/extra-build-config.md b/docs/extra-build-config.md index 380d969..d162abc 100644 --- a/docs/extra-build-config.md +++ b/docs/extra-build-config.md | |||
@@ -186,3 +186,19 @@ RaspberryPi3 will have to explicitely set in local.conf: | |||
186 | Ref.: | 186 | Ref.: |
187 | * <https://github.com/raspberrypi/firmware/issues/553> | 187 | * <https://github.com/raspberrypi/firmware/issues/553> |
188 | * <https://github.com/RPi-Distro/repo/issues/22> | 188 | * <https://github.com/RPi-Distro/repo/issues/22> |
189 | |||
190 | ## Manual additions to config.txt | ||
191 | |||
192 | The `RPI_EXTRA_CONFIG` variable can be used to manually add additional lines to | ||
193 | the `config.txt` file if there is not a specific option above for the | ||
194 | configuration you need. To add multiple lines you must include `\n` separators. | ||
195 | If double-quotes are needed in the lines you are adding you can use single | ||
196 | quotes around the whole string. | ||
197 | |||
198 | For example, to add a comment containing a double-quote and a configuration | ||
199 | option: | ||
200 | |||
201 | RPI_EXTRA_CONFIG = ' \n \ | ||
202 | # Raspberry Pi 7\" display/touch screen \n \ | ||
203 | lcd_rotate=2 \n \ | ||
204 | ' | ||