2022-02-05 14:23:32 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
|
|
|
|
export XDG_RUNTIME_DIR=/var/run/0-runtime-dir
|
|
|
|
|
|
|
|
if [ ! -d "$XDG_RUNTIME_DIR" ]; then
|
|
|
|
mkdir "$XDG_RUNTIME_DIR"
|
|
|
|
chmod 0700 "$XDG_RUNTIME_DIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f /storage/.config/weston.ini ]; then
|
2022-09-03 13:04:14 +00:00
|
|
|
cp /usr/share/weston/kiosk.ini /storage/.config/weston.ini
|
2022-02-05 14:23:32 +00:00
|
|
|
fi
|