Raspberry Pi/boot folder settings: Difference between revisions

From Wiki
mNo edit summary
mNo edit summary
 
Line 24: Line 24:


* disable bluetooth and wifi
* disable bluetooth and wifi
<blockquote>
<pre>
<pre>
/boot/config.txt:
/boot/config.txt:
Line 29: Line 30:
dtoverlay=disable-wifi
dtoverlay=disable-wifi
</pre>
</pre>
 
</blockquote>


== graphics ==
== graphics ==

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