33 lines
1 KiB
Bash
Executable file
33 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
cat <<EOF >/storage/.config/profile.d/001-deviceconfig
|
|
# Device Features
|
|
DEVICE_VOLUMECTL=true
|
|
DEVICE_POWER_LED=false
|
|
DEVICE_PLAYBACK_PATH_SPK="HP"
|
|
DEVICE_PLAYBACK_PATH_HP="SPK"
|
|
DEVICE_PLAYBACK_PATH="Playback"
|
|
DEVICE_BRIGHTNESS="128"
|
|
DEVICE_PIPEWIRE_PROFILE="pro-audio"
|
|
DEVICE_BATTERY_LED_STATUS=true
|
|
UI_SERVICE="weston.service"
|
|
|
|
# GPIOS
|
|
DEVICE_TEMP_SENSOR=("/sys/devices/virtual/thermal/thermal_zone0/temp" "/sys/devices/virtual/thermal/thermal_zone3/temp" "/sys/devices/virtual/thermal/thermal_zone2/temp")
|
|
|
|
# FREQ Governors
|
|
CPU_FREQ=("/sys/devices/system/cpu/cpufreq/policy0" "/sys/devices/system/cpu/cpufreq/policy2")
|
|
GPU_FREQ=("/sys/devices/platform/soc/ffe40000.gpu/devfreq/ffe40000.gpu")
|
|
|
|
# Affinity
|
|
SLOW_CORES="taskset -c 0-1"
|
|
FAST_CORES="taskset -c 2-5"
|
|
|
|
# Volume Keys
|
|
DEVICE_KEY_VOLUMEDOWN=114
|
|
DEVICE_KEY_VOLUMEUP=115
|
|
DEVICE_FUNC_KEYA_MODIFIER="BTN_TRIGGER_HAPPY2"
|
|
DEVICE_FUNC_KEYB_MODIFIER="BTN_TRIGGER_HAPPY5"
|
|
EOF
|