Skip to content

raspiconfig

Daniel Hiepler edited this page Aug 31, 2023 · 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
RPI_RASPICONFIG_ON run on first "login" or "boot" login

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

TODO

Clone this wiki locally