2023-07-31 13:06:42 +00:00
|
|
|
#!/bin/bash
|
2023-07-31 13:08:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2023-10-24 16:00:57 +00:00
|
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
2023-07-31 13:06:42 +00:00
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
|
|
|
NATIVE_ROTATION="$(awk 'match ($0, /fbcon=rotate:[0-3]/) {print substr($0, RSTART + 13, 1)}' /flash/extlinux/extlinux.conf)"
|
|
|
|
|
|
|
|
if [[ "$(cat ${HDMI_PROP})" =~ ${HDMI_PATTERN} ]]
|
|
|
|
then
|
|
|
|
echo 0 >/sys/devices/virtual/graphics/fbcon/rotate
|
|
|
|
else
|
|
|
|
echo ${NATIVE_ROTATION} >/sys/devices/virtual/graphics/fbcon/rotate
|
|
|
|
fi
|