summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/imx-atf/imx-atf
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2018-07-26 13:13:01 -0500
committerOtavio Salvador <otavio@ossystems.com.br>2018-12-13 07:26:04 -0200
commita77be07199b5ead5c9a77f5876c10d8638921806 (patch)
tree5069b0220750a2f944cc267635485852ce46ffe0 /recipes-bsp/imx-atf/imx-atf
parent57f7fc23354953a96cc3996518f6dfe5a4bfb132 (diff)
downloadmeta-freescale-a77be07199b5ead5c9a77f5876c10d8638921806.tar.gz
imx-atf: Add new package ARM Trusted Firmware
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-bsp/imx-atf/imx-atf')
-rw-r--r--recipes-bsp/imx-atf/imx-atf/0001-Allow-BUILD_STRING-to-be-set-in-.revision-file.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-bsp/imx-atf/imx-atf/0001-Allow-BUILD_STRING-to-be-set-in-.revision-file.patch b/recipes-bsp/imx-atf/imx-atf/0001-Allow-BUILD_STRING-to-be-set-in-.revision-file.patch
new file mode 100644
index 00000000..be747789
--- /dev/null
+++ b/recipes-bsp/imx-atf/imx-atf/0001-Allow-BUILD_STRING-to-be-set-in-.revision-file.patch
@@ -0,0 +1,29 @@
1From 4123893a8a4d93362a0a36f72134f75436fee457 Mon Sep 17 00:00:00 2001
2From: Tom Hochstein <tom.hochstein@nxp.com>
3Date: Thu, 18 Oct 2018 18:03:46 -0500
4Subject: [PATCH] Allow BUILD_STRING to be set in .revision file.
5
6Upstream-Status: Pending
7
8Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
9---
10 Makefile | 3 +++
11 1 file changed, 3 insertions(+)
12
13diff --git a/Makefile b/Makefile
14index 57c4a90..ec49397 100644
15--- a/Makefile
16+++ b/Makefile
17@@ -97,6 +97,9 @@ endif
18
19 # Default build string (git branch and commit)
20 ifeq (${BUILD_STRING},)
21+ BUILD_STRING := $(shell cat .revision 2> /dev/null)
22+endif
23+ifeq (${BUILD_STRING},)
24 BUILD_STRING := $(shell git describe --long --always --dirty --tags 2> /dev/null)
25 endif
26 VERSION_STRING := v${VERSION_MAJOR}.${VERSION_MINOR}(${BUILD_TYPE}):${BUILD_STRING}
27--
282.7.4
29