diff --git a/Config.in.legacy b/Config.in.legacy index 3636228440..2ef1e19516 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -146,6 +146,13 @@ endif comment "Legacy options removed in 2025.02" +config BR2_PACKAGE_FCONFIG + bool "fconfig has been removed" + select BR2_LEGACY + help + The fconfig package was removed as it is not maintained + anymore and the upstream URL is gone. + config BR2_PACKAGE_LIBHID bool "libhid has been removed" select BR2_LEGACY diff --git a/package/Config.in b/package/Config.in index d9af39b900..60cdb179a3 100644 --- a/package/Config.in +++ b/package/Config.in @@ -514,7 +514,6 @@ endmenu source "package/evemu/Config.in" source "package/evtest/Config.in" source "package/fbtft/Config.in" - source "package/fconfig/Config.in" source "package/flashrom/Config.in" source "package/fmtools/Config.in" source "package/freeipmi/Config.in" diff --git a/package/fconfig/Config.in b/package/fconfig/Config.in deleted file mode 100644 index e7dd58a84a..0000000000 --- a/package/fconfig/Config.in +++ /dev/null @@ -1,6 +0,0 @@ -config BR2_PACKAGE_FCONFIG - bool "fconfig" - help - fconfig - get/set RedBoot configuration parameters from Linux. - - http://andrzejekiert.ovh.org/software.html.en diff --git a/package/fconfig/fconfig.hash b/package/fconfig/fconfig.hash deleted file mode 100644 index 98e7fbf12b..0000000000 --- a/package/fconfig/fconfig.hash +++ /dev/null @@ -1,3 +0,0 @@ -# Locally computed -sha256 4ff0e8f07e35e46b705c0dbe9d9544ede01ea092a69e3f7db03e55a3f2bb8eb7 fconfig-20080329.tar.gz -sha256 e698a9ea4d6dab0a15d3d6fd354b97b820629244f946529cc7f42b2b8e8f16d0 fconfig.c diff --git a/package/fconfig/fconfig.mk b/package/fconfig/fconfig.mk deleted file mode 100644 index 1e6fbb40b4..0000000000 --- a/package/fconfig/fconfig.mk +++ /dev/null @@ -1,22 +0,0 @@ -################################################################################ -# -# fconfig -# -################################################################################ - -FCONFIG_VERSION = 20080329 -# Real upstream location has been disabled -# FCONFIG_SITE = http://andrzejekiert.ovh.org/software/fconfig -FCONFIG_SITE = http://sources.buildroot.net -FCONFIG_LICENSE = GPL-2.0+ -FCONFIG_LICENSE_FILES = fconfig.c - -define FCONFIG_BUILD_CMDS - $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -endef - -define FCONFIG_INSTALL_TARGET_CMDS - $(INSTALL) -D -m 0755 $(@D)/fconfig $(TARGET_DIR)/sbin/fconfig -endef - -$(eval $(generic-package))