mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
2f1b73b70d
The ABI of the wolfssl library changed a bit between version 5.5.3 and
5.5.4. This release update will trigger a rebuild of all packages which
are using wolfssl to make sure they are adapted to the new ABI.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit ee47a28cec
)
58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2022 Eneas Ulir de Queiroz
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uencrypt
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_FLAGS:=nonshared
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
|
|
PKG_CONFIG_DEPENDS:=\
|
|
CONFIG_UENCRYPT_OPENSSL \
|
|
CONFIG_UENCRYPT_WOLFSSL
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
CMAKE_INSTALL:=1
|
|
CMAKE_OPTIONS+=$(if $(CONFIG_UENCRYPT_WOLFSSL),-DUSE_WOLFSSL=1)
|
|
|
|
define Package/uencrypt
|
|
SECTION:=utils
|
|
CATEGORY:=Base system
|
|
TITLE:=Decryption utility for Arcadyan WG4xx223
|
|
DEPENDS:=@TARGET_ramips_mt7621 +UENCRYPT_WOLFSSL:libwolfssl +UENCRYPT_OPENSSL:libopenssl
|
|
endef
|
|
|
|
define Package/uencrypt/description
|
|
This is a small AES-128-CBC encrypton/decryption program.
|
|
Even though it can be used for regular encryption and
|
|
decryption operations using AES-128-CBC, it is included
|
|
here to unencrypt the configuration from mtd on Arcadyan
|
|
WG430223 and WG443223 routers.
|
|
endef
|
|
|
|
define Package/uencrypt/config
|
|
if PACKAGE_uencrypt
|
|
choice
|
|
prompt "Crypto provider"
|
|
default UENCRYPT_WOLFSSL
|
|
|
|
config UENCRYPT_OPENSSL
|
|
bool "OpenSSL"
|
|
|
|
config UENCRYPT_WOLFSSL
|
|
bool "wolfSSL"
|
|
endchoice
|
|
endif
|
|
endef
|
|
|
|
define Package/uencrypt/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/uencrypt $(1)/usr/bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,uencrypt))
|