2023-07-01 18:46:51 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2023-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
2023-07-23 13:47:19 +00:00
|
|
|
(
|
|
|
|
if [ -d "/usr/lib/autostart/quirks/${QUIRK_DEVICE}/config" ] && \
|
|
|
|
[ ! -f ".quirkconfigs" ]
|
|
|
|
then
|
|
|
|
tocon "Applying ${QUIRK_DEVICE} specific configuration..."
|
|
|
|
rsync -a --exclude={es_features.cfg,es_systems.cfg} /usr/lib/autostart/quirks/"${QUIRK_DEVICE}"/config/* /storage/.config/ 2>/dev/null
|
|
|
|
touch /storage/.quirkconfigs
|
|
|
|
fi
|
|
|
|
) &
|