48275e431f
The http URL redirects to https. This commit updates this URL to
directly use https.
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 2aa3a23bbe
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
28 lines
794 B
Makefile
28 lines
794 B
Makefile
################################################################################
|
|
#
|
|
# fwts
|
|
#
|
|
################################################################################
|
|
|
|
FWTS_VERSION = 23.07.00
|
|
FWTS_SOURCE = fwts-V$(FWTS_VERSION).tar.gz
|
|
FWTS_SITE = https://fwts.ubuntu.com/release
|
|
FWTS_STRIP_COMPONENTS = 0
|
|
FWTS_LICENSE = GPL-2.0, LGPL-2.1, Custom
|
|
FWTS_LICENSE_FILES = debian/copyright
|
|
FWTS_AUTORECONF = YES
|
|
FWTS_DEPENDENCIES = host-bison host-flex host-pkgconf libglib2 libbsd \
|
|
$(if $(BR2_PACKAGE_BASH_COMPLETION),bash-completion) \
|
|
$(if $(BR2_PACKAGE_DTC),dtc)
|
|
|
|
ifeq ($(BR2_OPTIMIZE_0),y)
|
|
FWTS_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -O1"
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_FWTS_EFI_RUNTIME_MODULE),y)
|
|
FWTS_MODULE_SUBDIRS = efi_runtime
|
|
$(eval $(kernel-module))
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|