mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 14:56:18 +00:00
31 lines
931 B
Makefile
31 lines
931 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="u-boot-tools"
|
|
PKG_VERSION="$(get_pkg_version u-boot)"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://www.denx.de/wiki/U-Boot"
|
|
PKG_URL=""
|
|
PKG_DEPENDS_HOST="ccache:host bison:host flex:host openssl:host pkg-config:host"
|
|
PKG_LONGDESC="Das U-Boot is a cross-platform bootloader for embedded systems."
|
|
PKG_DEPENDS_UNPACK+=" u-boot"
|
|
|
|
unpack() {
|
|
mkdir -p ${PKG_BUILD}
|
|
tar --strip-components=1 -xf ${SOURCES}/u-boot/u-boot-${PKG_VERSION}.tar.bz2 -C ${PKG_BUILD}
|
|
}
|
|
|
|
make_host() {
|
|
make qemu-x86_64_defconfig HOSTCC="${HOST_CC}" HOSTCFLAGS="-I${TOOLCHAIN}/include" HOSTLDFLAGS="${HOST_LDFLAGS}"
|
|
make tools-only HOSTCC="${HOST_CC}" HOSTCFLAGS="-I${TOOLCHAIN}/include" HOSTLDFLAGS="${HOST_LDFLAGS}"
|
|
}
|
|
|
|
make_target() {
|
|
: # host-only package
|
|
}
|
|
|
|
makeinstall_host() {
|
|
mkdir -p ${TOOLCHAIN}/bin
|
|
cp tools/mkimage ${TOOLCHAIN}/bin
|
|
}
|