Raspberry Pi/boot folder settings: Difference between revisions

From Wiki
No edit summary
mNo edit summary
 
(10 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"
     psk="YOUR_PASSWORD"
     psk="YOUR_PASSWORD"
    key_mgmt=WPA-PSK
}
}
</pre>
</pre>
Line 15: Line 19:
<pre>
<pre>
touch ssh
touch ssh
</pre>
</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)
<blockquote>
<pre>
add "logo.nologo"
</pre>
</blockquote>
* disable splash screen
** with raspi-config
* disable console screen blanking (/boot/cmdline.txt)
<blockquote>
<pre>
add "consoleblank=0"
</pre>
</blockquote>
* 5" 800x480 HDMI display (/boot/config.txt)
<blockquote>
<pre>
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
</pre>
</pre>
</blockquote>
</blockquote>

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