mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 06:56:19 +00:00
35 lines
661 B
Bash
35 lines
661 B
Bash
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
|
|
|
|
# parse command line arguments
|
|
for arg in $(cat /proc/cmdline); do
|
|
case $arg in
|
|
debugging)
|
|
export DEBUG=yes
|
|
;;
|
|
progress)
|
|
PROGRESS=yes
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ -e /storage/.cache/debug.libreelec ] ; then
|
|
export DEBUG=yes
|
|
fi
|
|
|
|
# functions
|
|
progress() {
|
|
if test "$PROGRESS" = yes; then
|
|
logger -s -t Boot "### $1 ###"
|
|
else
|
|
logger -t Boot "### $1 ###"
|
|
fi
|
|
}
|
|
|
|
# read config files
|
|
for config in /etc/profile.d/*; do
|
|
if [ -f "$config" ] ; then
|
|
. $config
|
|
fi
|
|
done
|