Remove u-boot-rockchip

Removes the u-boot-rockchip recipe. Upstream oe-core has dropped support
for Python2, which is required to build this recipe. It appears that no
machines are actually using it anymore, so it can be removed.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
This commit is contained in:
Joshua Watt 2020-01-23 09:49:08 -06:00 committed by Trevor Woerner
parent 5e96349999
commit 143227b5d4
3 changed files with 0 additions and 53 deletions

View File

@ -1,27 +0,0 @@
# Copyright (C) 2017 Fuzhou Rockchip Electronics Co., Ltd
# Copyright (C) 2017 Trevor Woerner <twoerner@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)
require recipes-bsp/u-boot/u-boot.inc
DESCRIPTION = "Rockchip next-dev U-Boot"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://Licenses/README;md5=a2c678cfd4a4d97135585cad908541c6"
COMPATIBLE_MACHINE = "(rk3036|rk3066|rk3188|rk3288|rk3328|rk3399)"
DEPENDS = "dtc-native bc-native swig-native"
# u-boot will build native python module
inherit pythonnative
do_compile_prepend () {
export STAGING_INCDIR=${STAGING_INCDIR_NATIVE};
export STAGING_LIBDIR=${STAGING_LIBDIR_NATIVE};
}
do_compile_append () {
# copy to default search path
if [ ${SPL_BINARY} ]; then
cp ${B}/spl/${SPL_BINARY} ${B}/
fi
}

View File

@ -1,13 +0,0 @@
Index: git/arch/arm/config.mk
===================================================================
--- git.orig/arch/arm/config.mk
+++ git/arch/arm/config.mk
@@ -89,7 +89,7 @@ PLATFORM_LIBS := arch/arm/lib/eabi_compa
endif
# needed for relocation
-LDFLAGS_u-boot += -pie
+LDFLAGS_u-boot += -N -pie
#
# FIXME: binutils versions < 2.22 have a bug in the assembler where

View File

@ -1,13 +0,0 @@
# Copyright (C) 2017 Fuzhou Rockchip Electronics Co., Ltd
# Released under the MIT license (see COPYING.MIT for the terms)
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
include u-boot-rockchip.inc
TAG = "release-${PV}"
SRC_URI = " \
git://github.com/rockchip-linux/u-boot.git;tag=${TAG};nobranch=1; \
file://binutils-2.28-ld-fix.patch \
"
S = "${WORKDIR}/git"