mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00
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>
This commit is contained in:
parent
8124f87175
commit
9bf918014b
|
@ -186,3 +186,19 @@ RaspberryPi3 will have to explicitely set in local.conf:
|
||||||
Ref.:
|
Ref.:
|
||||||
* <https://github.com/raspberrypi/firmware/issues/553>
|
* <https://github.com/raspberrypi/firmware/issues/553>
|
||||||
* <https://github.com/RPi-Distro/repo/issues/22>
|
* <https://github.com/RPi-Distro/repo/issues/22>
|
||||||
|
|
||||||
|
## Manual additions to config.txt
|
||||||
|
|
||||||
|
The `RPI_EXTRA_CONFIG` variable can be used to manually add additional lines to
|
||||||
|
the `config.txt` file if there is not a specific option above for the
|
||||||
|
configuration you need. To add multiple lines you must include `\n` separators.
|
||||||
|
If double-quotes are needed in the lines you are adding you can use single
|
||||||
|
quotes around the whole string.
|
||||||
|
|
||||||
|
For example, to add a comment containing a double-quote and a configuration
|
||||||
|
option:
|
||||||
|
|
||||||
|
RPI_EXTRA_CONFIG = ' \n \
|
||||||
|
# Raspberry Pi 7\" display/touch screen \n \
|
||||||
|
lcd_rotate=2 \n \
|
||||||
|
'
|
||||||
|
|
|
@ -127,6 +127,9 @@ do_deploy() {
|
||||||
echo "hdmi_cvt 1024 600 60 6 0 0 0" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt
|
echo "hdmi_cvt 1024 600 60 6 0 0 0" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt
|
||||||
echo "hdmi_drive=1" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt
|
echo "hdmi_drive=1" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Append extra config if the user has provided any
|
||||||
|
echo "${RPI_EXTRA_CONFIG}" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt
|
||||||
}
|
}
|
||||||
|
|
||||||
do_deploy_append_raspberrypi3-64() {
|
do_deploy_append_raspberrypi3-64() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user