mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
21 lines
674 B
Bash
Executable File
21 lines
674 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
COMPATIBLE=$(cat /proc/device-tree/compatible 2>/dev/null | tr -d '\000' | sed -n -e 's/.*\(allwinner\|amlogic\|rockchip\).*/\1/p')
|
|
|
|
if [ -n "$COMPATIBLE" ]; then
|
|
if [ -e /flash/extlinux/extlinux.conf ]; then
|
|
DTFILE=$(grep FDT /flash/extlinux/extlinux.conf | sed 's, *FDT /,,g')
|
|
elif [ -e /flash/uEnv.ini ]; then
|
|
DTFILE=$(grep dtb_name /flash/uEnv.ini | sed 's,dtb_name=/dtb/,,g')
|
|
elif [ -e /flash/boot.ini ]; then
|
|
DTFILE=$(grep -m 1 dtb_name /flash/boot.ini | cut -d \" -f2 | sed 's,/dtb/,,g')
|
|
else
|
|
DTFILE=""
|
|
fi
|
|
fi
|
|
|
|
echo "$DTFILE"
|