Skip to content

raspiconfig

daniel edited this page May 14, 2021 · 15 revisions

/bootstrap-plugins/raspiconfig - run raspi-config noninteractively

Config parameters

Name Description Default Value
RPI_RASPICONFIG_NONINT list of /usr/bin/raspi-config functions + parameters to run

Distfiles

none

Examples

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

localization -> locale & timezone settings

RPI_RASPICONFIG_NONINT=(
"do_change_locale de_DE.UTF-8"
"do_change_timezone Europe/Berlin"
)

interface options -> disable serial, onewire, i2c, spi and camera

RPI_RASPICONFIG_NONINT=(
"do_serial 1"
"do_onewire 1"
"do_i2c 1"
"do_spi 1"
"do_camera 1"
)

Tests

n/a

Clone this wiki locally