Skip to content

Commit

Permalink
Support OpenSSL 3.4.0
Browse files Browse the repository at this point in the history
Signed-off-by: Abhisit Sangjan <[email protected]>
  • Loading branch information
abhisit committed Dec 19, 2024
1 parent d1ff87f commit 99b876b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
20 changes: 19 additions & 1 deletion build-config/make/openssl.make
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# This is a makefile fragment that defines the build of openssl
#

OPENSSL_VERSION = 1.1.1g
OPENSSL_VERSION ?= 1.1.1g
OPENSSL_TARBALL = openssl-$(OPENSSL_VERSION).tar.gz
OPENSSL_TARBALL_URLS += $(ONIE_MIRROR) \
https://www.openssl.org/source
Expand All @@ -31,10 +31,26 @@ PHONY += openssl openssl-download openssl-source \
openssl-configure openssl-build openssl-install openssl-clean \
openssl-download-clean

ifeq ($(OPENSSL_VERSION),1.1.1g)
OPENSSL_ARCH =
OPENSSL_LIBS = \
engines-1.1 \
libcrypto.so libcrypto.so.1.1 \
libssl.so libssl.so.1.1
else ifeq ($(OPENSSL_VERSION),3.4.0)
ifeq ($(ARCH),arm64)
OPENSSL_ARCH = linux-aarch64
else
OPENSSL_ARCH = linux-$(ARCH)
endif

OPENSSL_LIBS = \
engines \
libcrypto.so libcrypto.so.3 \
libssl.so libssl.so.3
else
$(error OPENSSL_LIBS: Unsupported OpenSSL version: $(OPENSSL_VERSION))
endif

OPENSSL_BINS = openssl

Expand Down Expand Up @@ -63,7 +79,9 @@ $(OPENSSL_CONFIGURE_STAMP): $(OPENSSL_SOURCE_STAMP) $(ZLIB_BUILD_STAMP) \
$(Q) rm -f $@ && eval $(PROFILE_STAMP)
$(Q) echo "==== Configure openssl-$(OPENSSL_VERSION) ===="
$(Q) cd $(OPENSSL_DIR) && PATH='$(CROSSBIN):$(PATH)' \
MACHINE=$(TARGET) RELEASE=$(LINUX_RELEASE) \
$(OPENSSL_DIR)/config \
$(OPENSSL_ARCH) \
--prefix=/usr \
--cross-compile-prefix=$(CROSSPREFIX) \
shared \
Expand Down
1 change: 1 addition & 0 deletions upstream/openssl-3.4.0.tar.gz.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5c2f33c3f3601676f225109231142cdc30d44127 openssl-3.4.0.tar.gz

0 comments on commit 99b876b

Please sign in to comment.