distribution/packages/hardware/quirks/devices/Orange Pi 5/002-audio

21 lines
431 B
Text
Raw Normal View History

2023-01-09 22:26:15 +00:00
#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2023-present Brooksytech (https://github.com/brooksytech)
. /etc/profile
if [ ! -d "/storage/.config/modprobe.d/" ]
then
mkdir -p /storage/.config/modprobe.d
fi
MYDEVICE=$(get_setting system.audiodevice)
if [ -z "${MYDEVICE}" ]
2023-01-09 22:26:15 +00:00
then
touch /storage/.config/modprobe.d/alsa-base.conf
2023-01-10 23:39:16 +00:00
set-audio set "ROCKCHIP-HDMI0 (1:0)"
set-audio esset "PCM"
2023-01-09 22:26:15 +00:00
reboot
fi