Skip to content
Snippets Groups Projects

imx6: Re-add mmc aliases

Merged Detlev Casanova requested to merge wip/detlev/at9333-fix-imx6-aliases into apertis/v2024dev1
All threads resolved!
2 files
+ 34
0
Compare changes
  • Side-by-side
  • Inline
Files
2
From: Martyn Welch <martyn.welch@collabora.com>
Date: Wed, 16 Nov 2022 12:14:53 +0000
Subject: Remove openssl check
The k3 arch code performs a check to see if the openssl command is
available as it is used to sign firmware blobs. We are not assembling or
signing the firmware blobs until a later stage, so we don't need openssl
installed at this point.
Signed-off-by: Martyn Welch <martyn.welch@collabora.com>
---
arch/arm/mach-k3/config.mk | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-k3/config.mk b/arch/arm/mach-k3/config.mk
index 9306f26..f1c9991 100644
--- a/arch/arm/mach-k3/config.mk
+++ b/arch/arm/mach-k3/config.mk
@@ -7,9 +7,9 @@ ifdef CONFIG_SPL_BUILD
# Openssl is required to generate x509 certificate.
# Error out if openssl is not available.
-ifeq ($(shell which openssl),)
-$(error "No openssl in $(PATH), consider installing openssl")
-endif
+#ifeq ($(shell which openssl),)
+#$(error "No openssl in $(PATH), consider installing openssl")
+#endif
IMAGE_SIZE= $(shell cat $(obj)/u-boot-spl.bin | wc -c)
MAX_SIZE= $(shell printf "%d" $(CONFIG_SYS_K3_MAX_DOWNLODABLE_IMAGE_SIZE))
Loading