mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00

* firmware-utils: bump to git HEAD Adds support for building TP-Link CPE605v1 factory images bd856eff4850 tplink-safeloader: add TP-Link CPE605 v1 Support Signed-off-by: Sander Vanheule <sander@svanheule.net> * firmware-utils: fix archive checksum PKG_SOURCE_DATE was modified after updating PKG_MIRROR_HASH, causing the latter to change. This results in a warning during builds and rejected downloads. Fixes: 232879a7b7f8 ("firmware-utils: bump to git HEAD") Signed-off-by: Sander Vanheule <sander@svanheule.net> * libtracefs: update to 1.6.2 378a9dd libtracefs: version 1.6.2 e6daa60 libtracefs: Add unit test to test mounting of tracefs_{tracing,debug}_dir() 32acbbf libtracefs: Have tracefs_{tracing,debug}_dir() mount {tracefs,debugfs} if not mounted Signed-off-by: Nick Hainke <vincent@systemli.org> * ethtool: add PKG_CPE_ID Add CPE ID for tracking CVEs. Signed-off-by: Nick Hainke <vincent@systemli.org> * ethtool: update to 6.0 Release Notes: https://lwn.net/Articles/910841/ Signed-off-by: Nick Hainke <vincent@systemli.org> * strace: update to 6.1 Release Notes: https://github.com/strace/strace/releases/tag/v6.1 Signed-off-by: Nick Hainke <vincent@systemli.org> * trace-cmd: update to v3.1.5 Update to latest release. Signed-off-by: Nick Hainke <vincent@systemli.org> * libtraceevent: update to 1.7.0 Update to latest release. Signed-off-by: Nick Hainke <vincent@systemli.org> * libtracefs: update to 1.6.3 Update to latest release. Signed-off-by: Nick Hainke <vincent@systemli.org> * tools/bash: update to 5.2.15 Update to the latest released version. Signed-off-by: Linhui Liu <liulinhui36@gmail.com> * tools/ccache: update to 4.7.4 Release Notes: https://ccache.dev/releasenotes.html#_ccache_4_7_3 https://ccache.dev/releasenotes.html#_ccache_4_7_4 Signed-off-by: Linhui Liu <liulinhui36@gmail.com> * tools/libressl: update to 3.7.0 Release notes: https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.0-relnotes.txt https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.6.1-relnotes.txt https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.7.0-relnotes.txt Signed-off-by: Linhui Liu <liulinhui36@gmail.com> * tools/mpc: update to 1.3.1 Version 1.3.1 new features: Bug fix: It is again possible to include mpc.h without including stdio.h. Version 1.3.0 new features: New function: mpc_agm New rounding modes "away from zero", indicated by the letter "A" and corresponding to MPFR_RNDA on the designated real or imaginary part. New experimental ball arithmetic. New experimental function: mpc_eta_fund Bug fixes: mpc_asin for asin(z) with small |Re(z)| and tiny |Im(z)| mpc_pow_fr: sign of zero part of result when the base has up to sign the same real and imaginary part, and the exponent is an even positive integer mpc_fma: the returned int value was incorrect in some cases (indicating whether the rounded real/imaginary parts were smaller/equal/greater than the exact values), but the computed complex value was correct. Remove the unmaintained Makefile.vc; build files for Visual Studio are maintained independently by Brian Gladman. Signed-off-by: Linhui Liu <liulinhui36@gmail.com> * tools/patchelf: update to 0.17.0 Update to the latest released version. Signed-off-by: Linhui Liu <liulinhui36@gmail.com> Signed-off-by: Sander Vanheule <sander@svanheule.net> Signed-off-by: Nick Hainke <vincent@systemli.org> Signed-off-by: Linhui Liu <liulinhui36@gmail.com> Co-authored-by: Sander Vanheule <sander@svanheule.net> Co-authored-by: Nick Hainke <vincent@systemli.org> Co-authored-by: Linhui Liu <liulinhui36@gmail.com>
42 lines
884 B
Makefile
42 lines
884 B
Makefile
#
|
|
# Copyright (C) 2016-2017 LEDE project
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libressl
|
|
PKG_VERSION:=3.7.0
|
|
PKG_HASH:=3fc1290f4007ec75f6e9acecbb25512630d1b9ab8c53ba79844e395868c3e006
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_CPE_ID:=cpe:/a:openbsd:libressl
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://mirror.ox.ac.uk/pub/OpenBSD/LibreSSL \
|
|
http://ftp.jaist.ac.jp/pub/OpenBSD/LibreSSL \
|
|
https://ftp.openbsd.org/pub/OpenBSD/LibreSSL
|
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
HOSTCC := $(HOSTCC_NOCACHE)
|
|
|
|
HOST_CFLAGS += $(HOST_FPIC)
|
|
|
|
HOST_CONFIGURE_ARGS += \
|
|
--enable-static \
|
|
--disable-shared \
|
|
--disable-asm \
|
|
--with-pic \
|
|
--disable-tests
|
|
|
|
define Host/Uninstall
|
|
-$(call Host/Compile/Default,uninstall)
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|