Files
Arch-R/projects/Rockchip/bootloader/release

21 lines
605 B
Plaintext
Raw Normal View History

# SPDX-License-Identifier: GPL-2.0
2018-07-16 20:45:36 +02:00
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
2017-11-01 22:57:41 +01:00
SRCDIR="${BUILD}/image/system/usr/share/bootloader"
DSTDIR="${RELEASE_DIR}/3rdparty/bootloader"
mkdir -p "${DSTDIR}"
if [ -n "${UBOOT_SYSTEM}" ]; then
if [ -f "${SRCDIR}/idbloader.img" ]; then
cp -a "${SRCDIR}/idbloader.img" "${DSTDIR}"
2017-11-01 22:57:41 +01:00
fi
if [ -f "${SRCDIR}/uboot.img" ]; then
cp -a "${SRCDIR}/uboot.img" "${DSTDIR}"
2017-11-01 22:57:41 +01:00
fi
if [ -f "${SRCDIR}/trust.img" ]; then
cp -a "${SRCDIR}/trust.img" "${DSTDIR}"
2017-11-01 22:57:41 +01:00
fi
fi
cp -a "${SRCDIR}"/${DEVICE,,}*.dtb "${DSTDIR}"