Raspberry Pi/boot folder settings: Difference between revisions
No edit summary |
mNo edit summary |
||
(7 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== network == | |||
* wifi: /boot/wpa_supplicant.conf | * wifi: /boot/wpa_supplicant.conf | ||
<blockquote> | <blockquote> | ||
<pre> | <pre> | ||
country=DE | |||
update_config=1 | |||
ctrl_interface=/var/run/wpa_supplicant GROUP=netdev | |||
network={ | network={ | ||
ssid="YOUR_SSID" | ssid="YOUR_SSID" | ||
Line 17: | Line 22: | ||
</blockquote> | </blockquote> | ||
* disable bluetooth and wifi | |||
<blockquote> | |||
<pre> | |||
/boot/config.txt: | |||
dtoverlay=disable-bt | |||
dtoverlay=disable-wifi | |||
</pre> | |||
</blockquote> | |||
== graphics == | |||
* disable raspberry logos on top during boot (/boot/cmdline.txt) | * disable raspberry logos on top during boot (/boot/cmdline.txt) | ||
Line 24: | Line 40: | ||
</pre> | </pre> | ||
</blockquote> | </blockquote> | ||
* disable splash screen | * disable splash screen | ||
** with raspi-config | ** with raspi-config | ||
* disable console screen blanking (/boot/cmdline.txt) | |||
<blockquote> | |||
<pre> | |||
add "consoleblank=0" | |||
</pre> | |||
</blockquote> | |||
* 5" 800x480 HDMI display (/boot/config.txt) | * 5" 800x480 HDMI display (/boot/config.txt) | ||
Line 35: | Line 62: | ||
hdmi_drive=1 | hdmi_drive=1 | ||
hdmi_group=2 | hdmi_group=2 | ||
hdmi_mode=87 | hdmi_mode=87 | ||
hdmi_cvt 800 480 60 6 0 0 0 | hdmi_cvt 800 480 60 6 0 0 0 |
Latest revision as of 11:55, 29 December 2021
network
- wifi: /boot/wpa_supplicant.conf
country=DE update_config=1 ctrl_interface=/var/run/wpa_supplicant GROUP=netdev network={ ssid="YOUR_SSID" psk="YOUR_PASSWORD" }
- enable ssh (/boot)
touch ssh
- disable bluetooth and wifi
/boot/config.txt: dtoverlay=disable-bt dtoverlay=disable-wifi
graphics
- disable raspberry logos on top during boot (/boot/cmdline.txt)
add "logo.nologo"
- disable splash screen
- with raspi-config
- disable console screen blanking (/boot/cmdline.txt)
add "consoleblank=0"
- 5" 800x480 HDMI display (/boot/config.txt)
hdmi_force_hotplug=1 max_usb_current=1 hdmi_drive=1 hdmi_group=2 hdmi_mode=87 hdmi_cvt 800 480 60 6 0 0 0 #display_rotate=2 disable_splash=1 #for touch input #dtoverlay=ads7846,cs=1,penirq=25,penirq_pull=2,speed=50000,keep_vref_on=0,swapxy=0,pmax=255,xohms=150,xmin=200,xmax=3900,ymin=200,ymax=3900