2

I recently learned about the raspi-config noint parameter from here. This is perfect for my needs but now I need to figure out which parameters to send.

I'm trying to change two things: the resolution and the keyboard layout. Where can I learn what parameters I need to type in?

GFL
  • 129
  • 2

2 Answers2

3

AFAIK this is not documented.

cat /usr/bin/raspi-config | grep  "do_"

will show the possible functions.

Milliways
  • 62,573
  • 32
  • 113
  • 225
0

All options are now listed on the Raspberry Pi config for rpi-config:

https://www.raspberrypi.com/documentation/computers/configuration.html#raspi-config-cli-commands

Current list:

  • do_audio
  • do_audioconf
  • do_blanking
  • do_boot_behaviour
  • do_boot_order
  • do_boot_rom
  • do_boot_splash
  • do_boot_wait
  • do_browser
  • do_change_locale
  • do_change_pass
  • do_change_timezone
  • do_composite
  • do_configure_keyboard
  • do_expand_rootfs
  • do_fan
  • do_hostname
  • do_i2c
  • do_leds
  • do_memory_split
  • do_net_names
  • do_onewire
  • do_overclock
  • do_overlayfs
  • do_overscan_kms
  • do_pi4video
  • do_proxy
  • do_rgpio
  • do_serial_cons
  • do_serial_hw
  • do_spi
  • do_ssh
  • do_update
  • do_vnc
  • do_vnc_resolution
  • do_wayland
  • do_wifi_country
  • do_wifi_ssid_passphrase

Created with

curl https://www.raspberrypi.com/documentation/computers/configuration.html | egrep -o "do_[^ ]*" | sort | uniq
guerda
  • 101