mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-16 09:08:59 +00:00
8149aa0138
Signed-off-by: Matthias Reichl <hias@horus.com>
119 lines
2.7 KiB
Bash
Executable File
119 lines
2.7 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
cat_data() {
|
|
echo "========== ${1} =========="
|
|
cat
|
|
}
|
|
|
|
cat_file() {
|
|
if [ -f "${1}" ]; then
|
|
cat "${1}" | cat_data "${2:-${1}}"
|
|
fi
|
|
}
|
|
|
|
ls_dir() {
|
|
if [ -d "${1}" ]; then
|
|
ls -lA "${1}" | cat_data "${1}"
|
|
fi
|
|
}
|
|
|
|
ls_dir_recursive() {
|
|
if [ -d "${1}" ]; then
|
|
ls -lAR "${1}" | cat_data "${1}"
|
|
fi
|
|
}
|
|
|
|
usage() {
|
|
[ -n "${1}" ] && echo "Unknown argument: ${1}"
|
|
cat <<EOF
|
|
Usage: $0 [-c] [-h]
|
|
|
|
-c send output to stdout not via /usr/bin/pastebinit
|
|
-h this help message
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
OUTPUT="/usr/bin/pastebinit"
|
|
|
|
while getopts ":hc" opt; do
|
|
case ${opt} in
|
|
c) OUTPUT="cat";;
|
|
?) usage "${OPTARG}";;
|
|
h) usage;;
|
|
esac
|
|
done
|
|
|
|
source /etc/os-release
|
|
SYSTEM_ARCH="${LIBREELEC_ARCH#*.}"
|
|
|
|
# If running in SAFE mode, send FAILED logs
|
|
if [ "$(cat "/storage/.config/boot.status" 2>/dev/null)" = "SAFE" ]; then
|
|
KODI_ROOT="/storage/.kodi.FAILED/temp"
|
|
else
|
|
KODI_ROOT="/storage/.kodi/temp"
|
|
fi
|
|
|
|
if [ "$(basename $0)" = "pastekodi" ]; then
|
|
LOG_TYPE="System"
|
|
LOG_FILE="${KODI_ROOT}/kodi.log"
|
|
else
|
|
LOG_TYPE="Crash"
|
|
LOG_FILE="${KODI_ROOT}/kodi_crash.log"
|
|
fi
|
|
|
|
(
|
|
echo "${LOG_TYPE} log output for: $(lsb_release)"
|
|
|
|
if [ "${SYSTEM_ARCH}" = "x86_64" ]; then
|
|
if [ -d "/sys/firmware/efi" ]; then
|
|
echo "Firmware Boot Mode: EFI"
|
|
else
|
|
echo "Firmware Boot Mode: BIOS"
|
|
fi
|
|
fi
|
|
if [ "${LIBREELEC_PROJECT}" = "RPi" ]; then
|
|
echo "RPi Hardware Revision: $(vcgencmd otp_dump | grep 30: | cut -d: -f2)"
|
|
echo "RPi $(vcgencmd get_throttled)"
|
|
fi
|
|
|
|
cat_file "${LOG_FILE}"
|
|
|
|
journalctl -a -b -0 -o short-precise | cat_data "journalctl -a -b -0"
|
|
|
|
kmsprint | cat_data "kmsprint"
|
|
|
|
if [ "${LIBREELEC_PROJECT}" = "RPi" ]; then
|
|
vcgencmd bootloader_version | cat_data "Bootloader version"
|
|
fi
|
|
|
|
cat_file "/flash/config.txt" # RPi
|
|
cat_file "/flash/distroconfig.txt" # RPi
|
|
cat_file "/flash/cmdline.txt" # RPi
|
|
|
|
cat_file "/flash/syslinux.cfg" # x86 BIOS
|
|
cat_file "/flash/EFI/BOOT/syslinux.cfg" # x86 EFI
|
|
cat_file "/flash/extlinux.conf" # x86 legacy
|
|
|
|
cat_file "/flash/extlinux/extlinux.conf" # u-boot
|
|
|
|
cat_file "${KODI_ROOT}/.smb/smb.conf"
|
|
cat_file "${KODI_ROOT}/.smb/user.conf"
|
|
cat_file "/run/samba/smb.conf"
|
|
|
|
ls_dir /storage/.config
|
|
ls_dir_recursive /storage/.config/system.d
|
|
ls_dir /storage/.config/udev.rules.d
|
|
|
|
pem_sys="$(sha256sum /etc/ssl/cacert.pem.system | cut -d' ' -f1)"
|
|
pem_run="$(sha256sum /run/libreelec/cacert.pem | cut -d' ' -f1)"
|
|
if [ "${pem_sys}" = "${pem_run}" ]; then
|
|
cat_data "/run/libreelec/cacert.pem is default" </dev/null
|
|
else
|
|
cat_file /run/libreelec/cacert.pem "/run/libreelec/cacert.pem (modified)"
|
|
fi
|
|
) | ${OUTPUT} 2>/dev/null
|