mirror of
https://github.com/brain-hackers/brain-config.git
synced 2024-12-22 12:10:07 +09:00
First stab at switching between KMS and legacy video drivers
This commit is contained in:
parent
0ff1eacf70
commit
16d46d340b
56
raspi-config
56
raspi-config
@ -1796,6 +1796,59 @@ do_onewire() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_legacy() {
|
||||||
|
if sed -n '/\[pi4\]/,/\[/ !p' $CONFIG | grep -q '^dtoverlay=vc4-kms-v3d' ; then
|
||||||
|
echo 1
|
||||||
|
else
|
||||||
|
echo 0
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
do_legacy() {
|
||||||
|
DEFAULT=--defaultno
|
||||||
|
CURRENT=0
|
||||||
|
if [ $(get_legacy) -eq 0 ]; then
|
||||||
|
DEFAULT=
|
||||||
|
CURRENT=1
|
||||||
|
fi
|
||||||
|
if [ "$INTERACTIVE" = True ]; then
|
||||||
|
whiptail --yesno "Would you like to enable legacy camera support?" $DEFAULT 20 60 2
|
||||||
|
RET=$?
|
||||||
|
else
|
||||||
|
RET=$1
|
||||||
|
fi
|
||||||
|
if [ $RET -eq $CURRENT ]; then
|
||||||
|
ASK_TO_REBOOT=1
|
||||||
|
fi
|
||||||
|
if [ $RET -eq 0 ]; then
|
||||||
|
sed $CONFIG -i -e '/\[pi4\]/,/\[/ s/^#\?dtoverlay=vc4-f\?kms-v3d/dtoverlay=vc4-fkms-v3d/g'
|
||||||
|
sed $CONFIG -i -e '/\[pi4\]/,/\[/ !s/^dtoverlay=vc4-kms-v3d/#dtoverlay=vc4-kms-v3d/g'
|
||||||
|
sed $CONFIG -i -e '/\[pi4\]/,/\[/ !s/^dtoverlay=vc4-fkms-v3d/#dtoverlay=vc4-fkms-v3d/g'
|
||||||
|
if ! sed -n '/\[pi4\]/,/\[/ p' $CONFIG | grep -q '^dtoverlay=vc4-fkms-v3d' ; then
|
||||||
|
if grep -q '[pi4]' $CONFIG ; then
|
||||||
|
sed $CONFIG -i -e 's/\[pi4\]/\[pi4\]\ndtoverlay=vc4-fkms-v3d/'
|
||||||
|
else
|
||||||
|
printf "[pi4]\ndtoverlay=vc4-fkms-v3d\n" >> $CONFIG
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
STATUS="Legacy camera support is enabled.\n\nThis will disable various features in the video driver."
|
||||||
|
else
|
||||||
|
sed $CONFIG -i -e 's/^#\?dtoverlay=vc4-f\?kms-v3d/dtoverlay=vc4-kms-v3d/g'
|
||||||
|
sed $CONFIG -i -e '/\[pi4\]/,/\[/ {/dtoverlay=vc4-kms-v3d/d}'
|
||||||
|
if ! sed -n '/\[pi4\]/,/\[/ !p' $CONFIG | grep -q '^dtoverlay=vc4-kms-v3d' ; then
|
||||||
|
if grep -q '[all]' $CONFIG ; then
|
||||||
|
sed $CONFIG -i -e 's/\[all\]/\[all\]\ndtoverlay=vc4-kms-v3d/'
|
||||||
|
else
|
||||||
|
printf "[all]\ndtoverlay=vc4-kms-v3d\n" >> $CONFIG
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
STATUS="Legacy camera support is disabled."
|
||||||
|
fi
|
||||||
|
if [ "$INTERACTIVE" = True ]; then
|
||||||
|
whiptail --msgbox "$STATUS" 20 60 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
do_gldriver() {
|
do_gldriver() {
|
||||||
if [ ! -e /boot/overlays/vc4-kms-v3d.dtbo ]; then
|
if [ ! -e /boot/overlays/vc4-kms-v3d.dtbo ]; then
|
||||||
whiptail --msgbox "Driver and kernel not present on your system. Please update" 20 60 2
|
whiptail --msgbox "Driver and kernel not present on your system. Please update" 20 60 2
|
||||||
@ -2911,6 +2964,7 @@ do_advanced_menu() {
|
|||||||
"A6 Boot Order" "Choose network or USB device boot" \
|
"A6 Boot Order" "Choose network or USB device boot" \
|
||||||
"A7 Bootloader Version" "Select latest or default boot ROM software" \
|
"A7 Bootloader Version" "Select latest or default boot ROM software" \
|
||||||
"A8 HDMI / Composite" "Raspberry Pi 4 video output options" \
|
"A8 HDMI / Composite" "Raspberry Pi 4 video output options" \
|
||||||
|
"AB Legacy Camera" "Enable/disable legacy camera support" \
|
||||||
3>&1 1>&2 2>&3)
|
3>&1 1>&2 2>&3)
|
||||||
elif is_pi ; then
|
elif is_pi ; then
|
||||||
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Advanced Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
|
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Advanced Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
|
||||||
@ -2921,6 +2975,7 @@ do_advanced_menu() {
|
|||||||
"A5 Network Proxy Settings" "Configure network proxy settings" \
|
"A5 Network Proxy Settings" "Configure network proxy settings" \
|
||||||
"A9 Glamor" "Enable/disable glamor graphics acceleration" \
|
"A9 Glamor" "Enable/disable glamor graphics acceleration" \
|
||||||
"AA Composite" "Enable/disable composite video output" \
|
"AA Composite" "Enable/disable composite video output" \
|
||||||
|
"AB Legacy Camera" "Enable/disable legacy camera support" \
|
||||||
3>&1 1>&2 2>&3)
|
3>&1 1>&2 2>&3)
|
||||||
else
|
else
|
||||||
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Advanced Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
|
FUN=$(whiptail --title "Raspberry Pi Software Configuration Tool (raspi-config)" --menu "Advanced Options" $WT_HEIGHT $WT_WIDTH $WT_MENU_HEIGHT --cancel-button Back --ok-button Select \
|
||||||
@ -2943,6 +2998,7 @@ do_advanced_menu() {
|
|||||||
A8\ *) do_pi4video ;;
|
A8\ *) do_pi4video ;;
|
||||||
A9\ *) do_glamor ;;
|
A9\ *) do_glamor ;;
|
||||||
AA\ *) do_composite ;;
|
AA\ *) do_composite ;;
|
||||||
|
AB\ *) do_legacy ;;
|
||||||
*) whiptail --msgbox "Programmer error: unrecognized option" 20 60 1 ;;
|
*) whiptail --msgbox "Programmer error: unrecognized option" 20 60 1 ;;
|
||||||
esac || whiptail --msgbox "There was an error running option $FUN" 20 60 1
|
esac || whiptail --msgbox "There was an error running option $FUN" 20 60 1
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user