25 lines
944 B
Bash
Executable file
25 lines
944 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
. /etc/os-release
|
|
|
|
# Remove those sample files that we manage
|
|
for sample in $(find /storage/.config -name '*.sample' 2>/dev/null); do
|
|
[ -f /usr/config/${sample:16} ] && rm -f ${sample}
|
|
done
|
|
|
|
if [ ! -e "/storage/.configured" ]
|
|
then
|
|
# Copy config files, but don't overwrite. Only run if /storage is fresh
|
|
## cp -iRp /usr/config/* /storage/.config/ &>/dev/null
|
|
## ignore es_systems.cfg and switch to rsync
|
|
rsync -a --ignore-existing --exclude=es_systems.cfg /usr/config/* /storage/.config/
|
|
mkdir -p /storage/.config/emulationstation/themes
|
|
ln -s /usr/share/themes/es-theme-art-book-next /storage/.config/emulationstation/themes/system-theme
|
|
if [ "${HW_DEVICE}" == "RG552" ]; then
|
|
cp -f /usr/config/splash/splash-1152.png /storage/.config/emulationstation/resources/logo.png
|
|
fi
|
|
touch /storage/.configured
|
|
fi
|