Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2/4] Support openssl 3.4.0 #1078

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions build-config/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -502,10 +502,6 @@ ifeq ($(SHIM_ENABLE),yes)
include make/shim.make
endif

ifeq ($(LIBPCAP_ENABLE),yes)
include make/libpcap.make
endif

ifeq ($(TCPDUMP_ENABLE),yes)
include make/tcpdump.make
endif
Expand Down
4 changes: 0 additions & 4 deletions build-config/make/images.make
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,6 @@ ifeq ($(SECURE_GRUB),no)
GPG_SIGN_SECRING = ''
endif

ifeq ($(LIBPCAP_ENABLE),yes)
PACKAGES_INSTALL_STAMPS += $(LIBPCAP_STAMP)
endif

ifeq ($(TCPDUMP_ENABLE),yes)
PACKAGES_INSTALL_STAMPS += $(TCPDUMP_STAMP)
endif
Expand Down
6 changes: 3 additions & 3 deletions build-config/make/libpcap.make
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
# This is a makefile fragment that defines the build of libpcap
#

LIBPCAP_VERSION = 1.10.4
LIBPCAP_TARBALL = libpcap-$(LIBPCAP_VERSION).tar.gz
LIBPCAP_VERSION = 1.10.4
LIBPCAP_TARBALL = libpcap-$(LIBPCAP_VERSION).tar.gz
LIBPCAP_TARBALL_URLS += $(ONIE_MIRROR) \
https://www.tcpdump.org/release
LIBPCAP_BUILD_DIR = $(USER_BUILDDIR)/libpcap
Expand Down Expand Up @@ -91,7 +91,7 @@ libpcap-install: $(LIBPCAP_INSTALL_STAMP)
$(LIBPCAP_INSTALL_STAMP): $(SYSROOT_INIT_STAMP) $(LIBPCAP_BUILD_STAMP)
$(Q) rm -f $@ && eval $(PROFILE_STAMP)
$(Q) echo "==== Installing libpcap in $(SYSROOTDIR) ===="
$(Q) mkdir -p $(SYSROSYSROOTDIROT)/usr/lib/
$(Q) mkdir -p $(SYSROOTDIR)/usr/lib/
$(Q) cp -av $(DEV_SYSROOT)/usr/lib/libpcap.so $(SYSROOTDIR)/usr/lib/
$(Q) cp -av $(DEV_SYSROOT)/usr/lib/libpcap.so.1 $(SYSROOTDIR)/usr/lib/
$(Q) cp -av $(DEV_SYSROOT)/usr/lib/libpcap.so.$(LIBPCAP_VERSION) $(SYSROOTDIR)/usr/lib/
Expand Down
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