Merge pull request #4433 from lrusak/imx-update

various iMX6 updates
This commit is contained in:
Matthias Reichl 2020-06-19 21:22:55 +02:00 committed by GitHub
commit 66bab50e14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 561 additions and 325 deletions

View File

@ -6,9 +6,11 @@ if [ -z "$1" ]; then
exit 1 exit 1
fi fi
sleep 5
VOLUME="$1%" VOLUME="$1%"
amixer -q sset 'TPA6130A2 Headphone',0 $VOLUME amixer -q sset 'Headphone',0 $VOLUME
amixer -q sset 'Speaker',0 on amixer -q sset 'Speaker',0 on
amixer -q sset 'Speaker Analog',0 $VOLUME amixer -q sset 'Speaker Analog',0 $VOLUME
amixer -q sset 'Speaker Driver',0 $VOLUME amixer -q sset 'Speaker Driver',0 $VOLUME

View File

@ -26,7 +26,7 @@ function logerr
case "${MODEL}" in case "${MODEL}" in
"ZII RDU2+ Board" | "ZII RDU2 Board") "ZII RDU2+ Board" | "ZII RDU2 Board")
log "Loading RDU2 networking setup..." log "Loading RDU2 networking setup..."
IP_IFACE="enp1s0" IP_IFACE="eth1"
BR_NAME="br0" BR_NAME="br0"
BR_IFACES="netaux netleft netright gigabit_proc" BR_IFACES="netaux netleft netright gigabit_proc"
ALL_IFACES="eth0 ${IP_IFACE} ${BR_IFACES} ${BR_NAME}" ALL_IFACES="eth0 ${IP_IFACE} ${BR_IFACES} ${BR_NAME}"

View File

@ -5,7 +5,7 @@ ConditionPathExistsGlob=/flash/imx6*-zii-rdu2.dtb
[Service] [Service]
Type=oneshot Type=oneshot
ExecStart=/usr/bin/rdu-audio 80 ExecStart=/usr/bin/rdu-audio 70
RemainAfterExit=true RemainAfterExit=true
[Install] [Install]

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<settings version="1">
<section id="player">
<category id="videoplayer">
<group id="3">
<setting id="videoplayer.useprimerenderer">
<visible>false</visible>
<default>1</default>
</setting>
</group>
</category>
</section>
</settings>

File diff suppressed because it is too large Load Diff

View File

@ -21,3 +21,7 @@
# debug tty path # debug tty path
DEBUG_TTY="/dev/ttymxc0" DEBUG_TTY="/dev/ttymxc0"
# set the addon project
ADDON_PROJECT="ARMv7"

View File

@ -68,5 +68,5 @@
# build with installer (yes / no) # build with installer (yes / no)
INSTALLER_SUPPORT="no" INSTALLER_SUPPORT="no"
# set the addon project # use the kernel CEC framework for libcec (yes / no)
ADDON_PROJECT="ARMv7" CEC_FRAMEWORK_SUPPORT="yes"