72de789023
Bump imx-mkimage to the latest version to gain i.MX9 support. Patch 0001 and 0004 are merged upstream:ff23c4fd84
bce82912c8
Patch 0002 is no more needed, BUILD_LDFLAGS var is now available:8185a000a7
Renumber the remaining patch. Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
37 lines
1.0 KiB
Diff
37 lines
1.0 KiB
Diff
From 30e81d949d03f24de3b89d14cf98cb7decb2740c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= <nerv@dawncrow.de>
|
|
Date: Mon, 25 Feb 2019 22:15:55 +0100
|
|
Subject: [PATCH] Add unused fake version
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
The Makefile makes the assumption that the build process runs
|
|
from a Git clone of the source code.
|
|
We can safely add a fake version here, because the code to
|
|
print it is broken anyway.
|
|
|
|
Signed-off-by: André Hentschel <nerv@dawncrow.de>
|
|
---
|
|
Makefile | 4 +---
|
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 1c0b039..49639a5 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -41,9 +41,7 @@ $(MKIMG): src/build_info.h $(SRCS)
|
|
bin: $(MKIMG)
|
|
|
|
src/build_info.h:
|
|
- @echo -n '#define MKIMAGE_COMMIT 0x' > src/build_info.h
|
|
- @git rev-parse --short=8 HEAD >> src/build_info.h
|
|
- @echo '' >> src/build_info.h
|
|
+ @echo '#define MKIMAGE_COMMIT 0xdeadbeef' > src/build_info.h
|
|
|
|
help:
|
|
@echo $(CURR_DIR)
|
|
--
|
|
2.31.1
|
|
|