From 37ca0f7ab398e2e5bc61bd163b0bc16df535160f Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Thu, 10 Aug 2017 20:24:09 +0200 Subject: Fix build with YP pyro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mainly fix the u-boot build by: - changing u-boot-mkenvimage to use $(CC) instead of cc - adding bc-native to u-boot-socfpga due to RS-sysroot in YP Signed-off-by: Jan-Simon Möller --- ...1-Fix-native-build-by-using-env-variables.patch | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch (limited to 'recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch') diff --git a/recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch b/recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch new file mode 100644 index 0000000..5443bce --- /dev/null +++ b/recipes-bsp/u-boot/files/0001-Fix-native-build-by-using-env-variables.patch @@ -0,0 +1,31 @@ +From 5aa1e2d99a26f1cab1774fa1e94b53de42897d1c Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Jan-Simon=20M=C3=B6ller?= +Date: Thu, 10 Aug 2017 19:36:21 +0200 +Subject: [PATCH] Fix native build by using env variables +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Signed-off-by: Jan-Simon Möller +--- + Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile b/Makefile +index 8ca1db5..fef1059 100644 +--- a/Makefile ++++ b/Makefile +@@ -254,8 +254,8 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ + else if [ -x /bin/bash ]; then echo /bin/bash; \ + else echo sh; fi ; fi) + +-HOSTCC = cc +-HOSTCXX = c++ ++HOSTCC = $(CC) ++HOSTCXX = $(CXX) + HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \ + $(if $(CONFIG_TOOLS_DEBUG),-g) + HOSTCXXFLAGS = -O2 +-- +2.1.4 + -- cgit v1.2.3-54-g00ecf