mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 04:36:19 +00:00
2fdec1adac
This script is sourced in u-boot's package.mk, 'exit 0' just makes building a no-op. Suppress errors from uboot_helper instead.
11 lines
460 B
Plaintext
11 lines
460 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
[ -n "$ATF_PLATFORM" ] && cp -av $(get_install_dir atf)/usr/share/bootloader/bl31.bin .
|
|
|
|
CRUST_CONFIG=$($ROOT/$SCRIPTS/uboot_helper $PROJECT $DEVICE $UBOOT_SYSTEM crust_config)
|
|
[ -n "$CRUST_CONFIG" ] && cp -av $(get_install_dir crust)/usr/share/bootloader/scp.bin .
|
|
|
|
# Suppress errors from uboot_helper so u-boot properly builds with and without crust
|
|
true
|