# SPDX-License-Identifier: GPL-2.0 # Copyright (C) 2017-2020 Team LibreELEC (https://libreelec.tv) # Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS) source ${PROJECT_DIR}/${PROJECT}/devices/${DEVICE}/options case "${PKG_SOC}" in rk35*|rk3399) IDBSEEK="bs=512 seek=64" ;; *) IDBSEEK="bs=32k seek=1" ;; esac if [ -f "${RELEASE_DIR}/3rdparty/bootloader/idbloader.img" ]; then echo "image: burn idbloader.img to image... (${PKG_SOC},${IDBSEEK})" dd if="${RELEASE_DIR}/3rdparty/bootloader/idbloader.img" of="$DISK" ${IDBSEEK} conv=sync,noerror,notrunc >"${SAVE_ERROR}" 2>&1 || show_error fi case "${PKG_SOC}" in rk35*) if [ -f "${RELEASE_DIR}/3rdparty/bootloader/u-boot.itb" ]; then echo "image: burn uboot.itb to image... (${PKG_SOC})" dd if="${RELEASE_DIR}/3rdparty/bootloader/u-boot.itb" of="${DISK}" bs=512 seek=16384 conv=sync,noerror,notrunc >"${SAVE_ERROR}" 2>&1 || show_error fi if [ -f "${RELEASE_DIR}/3rdparty/bootloader/trust.img" ]; then echo "image: burn trust.img to image..." dd if="${RELEASE_DIR}/3rdparty/bootloader/trust.img" of="${DISK}" bs=512 seek=24576 conv=sync,noerror,notrunc >"${SAVE_ERROR}" 2>&1 || show_error elif [ -f "${RELEASE_DIR}/3rdparty/bootloader/resource.img" ]; then echo "image: burn resource.img to image..." dd if="${RELEASE_DIR}/3rdparty/bootloader/resource.img" of="${DISK}" bs=512 seek=24576 conv=sync,noerror,notrunc >"${SAVE_ERROR}" 2>&1 || show_error fi ;; *) if [ -f "${RELEASE_DIR}/3rdparty/bootloader/uboot.img" ]; then echo "image: burn uboot.img to image..." dd if="${RELEASE_DIR}/3rdparty/bootloader/uboot.img" of="$DISK" bs=512 seek=16384 conv=sync,noerror,notrunc >"${SAVE_ERROR}" 2>&1 || show_error fi if [ -f "${RELEASE_DIR}/3rdparty/bootloader/trust.img" ]; then echo "image: burn trust.img to image..." dd if="${RELEASE_DIR}/3rdparty/bootloader/trust.img" of="$DISK" bs=512 seek=24576 conv=sync,noerror,notrunc >"${SAVE_ERROR}" 2>&1 || show_error fi ;; esac #Create boot.ini if [ "${BOOT_INI}" == true ] then echo "image: create boot.ini..." cat >"${LE_TMP}/boot.ini" < "${LE_TMP}/extlinux/extlinux.conf" LABEL ${DISTRO} LINUX /${KERNEL_NAME} ${FDTMODE} APPEND boot=UUID=${UUID_SYSTEM} disk=UUID=${UUID_STORAGE} ${EXTRA_CMDLINE} EOF mcopy -so "${LE_TMP}/extlinux" :: fi