mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
73b227cdd4
See release announce: https://lists.ubuntu.com/archives/fwts-devel/2024-September/013906.html This commit also update the commented hash source URL from http to https, since it is now redirected. Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
794 B
Makefile
28 lines
794 B
Makefile
################################################################################
|
|
#
|
|
# fwts
|
|
#
|
|
################################################################################
|
|
|
|
FWTS_VERSION = 24.09.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))
|