Skip to content
daniel edited this page May 16, 2021 · 13 revisions

/bootstrap-plugins/config - modify /boot/config.txt

Config parameters

Name Description Default Value
RPI_CONFIG_ADD "key=value" pairs to append to config.txt
RPI_CONFIG_REMOVE "key=value" pairs to delete from config.txt

Distfiles

  • /boot/config.txt

Examples

RPI_BOOTSTRAP_PLUGINS+=("config") to append the plugin or RPI_BOOTSTRAP_PLUGINS=( ... "config" ... ) to place at some position in the current list.

turn off audio

RPI_CONFIG_ADD="dtparam=audio=off"

turn off i2c and spi

RPI_CONFIG_ADD=( "dtparam=i2c_arm=off" "dtparam=spi=off" )

Tests

TODO

Clone this wiki locally