* [ptxdist] [PATCH] module-init-tools: Remove after one year in staging
@ 2022-10-24 19:50 Ladislav Michl
2022-11-11 14:31 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 1 reply; 2+ messages in thread
From: Ladislav Michl @ 2022-10-24 19:50 UTC (permalink / raw)
To: ptxdist
From: Ladislav Michl <ladis@linux-mips.org>
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/module-init-tools.in | 90 ------------------------------------
rules/module-init-tools.make | 75 ------------------------------
2 files changed, 165 deletions(-)
delete mode 100644 rules/module-init-tools.in
delete mode 100644 rules/module-init-tools.make
diff --git a/rules/module-init-tools.in b/rules/module-init-tools.in
deleted file mode 100644
index 9eba00aba..000000000
--- a/rules/module-init-tools.in
+++ /dev/null
@@ -1,90 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=shell_and_console
-# module-init-tools configuration
-
-menuconfig MODULE_INIT_TOOLS
- tristate
- prompt "module-init-tools "
- help
- This package contains a set of programs for loading, inserting
- and removing kernel modules for Linux (versions 2.5.48 and
- above).
-
- STAGING: this package is obsolete and has been replaced by libkmod.
-
-if MODULE_INIT_TOOLS
-
-config MODULE_INIT_TOOLS_INSMOD
- bool
- prompt "Install insmod on target"
- depends on (!BUSYBOX_INSMOD && !LIBKMOD_INSMOD) || ALLYES
- help
- simple program to insert a module into the Linux Kernel
-
-comment "BusyBox' insmod is selected!"
- depends on BUSYBOX_INSMOD
-
-comment "kmod insmod is selected!"
- depends on LIBKMOD_INSMOD
-
-config MODULE_INIT_TOOLS_RMMOD
- bool
- prompt "Install rmmod on target"
- depends on (!BUSYBOX_RMMOD && !LIBKMOD_RMMOD) || ALLYES
- help
- simple program to remove a module from the Linux Kernel
-
-comment "BusyBox' rmmod is selected!"
- depends on BUSYBOX_RMMOD
-
-comment "kmod rmmod is selected!"
- depends on LIBKMOD_RMMOD
-
-config MODULE_INIT_TOOLS_LSMOD
- bool
- prompt "Install lsmod on target"
- depends on (!BUSYBOX_LSMOD && !LIBKMOD_LSMOD) || ALLYES
- help
- program to show the status of modules in the Linux Kernel
-
-comment "BusyBox' lsmod is selected!"
- depends on BUSYBOX_LSMOD
-
-comment "kmod lsmod is selected!"
- depends on LIBKMOD_LSMOD
-
-config MODULE_INIT_TOOLS_MODINFO
- bool
- prompt "Install modinfo on target"
- depends on (!BUSYBOX_MODINFO && !LIBKMOD_MODINFO) || ALLYES
- help
- program to show information about a Linux Kernel module
-
-comment "BusyBox' modinfo is selected!"
- depends on BUSYBOX_MODINFO
-
-comment "kmod modinfo is selected!"
- depends on LIBKMOD_MODINFO
-
-config MODULE_INIT_TOOLS_MODPROBE
- bool
- prompt "Install modprobe on target"
- depends on (!BUSYBOX_MODPROBE && !LIBKMOD_MODPROBE) || ALLYES
- help
- program to add and remove modules from the Linux Kernel
-
-comment "BusyBox' modprobe is selected!"
- depends on BUSYBOX_MODPROBE
-
-comment "kmod modprobe is selected!"
- depends on LIBKMOD_MODPROBE
-
-config MODULE_INIT_TOOLS_DEPMOD
- bool
- prompt "Install depmod on target"
- depends on (!BUSYBOX_DEPMOD && !LIBKMOD_DEPMOD) || ALLYES
- help
- program to generate modules.dep and map files
-
-endif
diff --git a/rules/module-init-tools.make b/rules/module-init-tools.make
deleted file mode 100644
index eb8811b24..000000000
--- a/rules/module-init-tools.make
+++ /dev/null
@@ -1,75 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2005 Ladislav Michl <ladis@linux-mips.org>
-# 2006, 2008, 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_MODULE_INIT_TOOLS) += module-init-tools
-
-#
-# Paths and names
-#
-MODULE_INIT_TOOLS_VERSION := 3.16
-MODULE_INIT_TOOLS_MD5 := bc44832c6e41707b8447e2847d2019f5
-MODULE_INIT_TOOLS := module-init-tools-$(MODULE_INIT_TOOLS_VERSION)
-MODULE_INIT_TOOLS_SUFFIX := tar.bz2
-MODULE_INIT_TOOLS_URL := $(call ptx/mirror, KERNEL, utils/kernel/module-init-tools/$(MODULE_INIT_TOOLS).$(MODULE_INIT_TOOLS_SUFFIX))
-MODULE_INIT_TOOLS_SOURCE := $(SRCDIR)/$(MODULE_INIT_TOOLS).$(MODULE_INIT_TOOLS_SUFFIX)
-MODULE_INIT_TOOLS_DIR := $(BUILDDIR)/$(MODULE_INIT_TOOLS)
-MODULE_INIT_TOOLS_LICENSE := GPL-2.0-only
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-MODULE_INIT_TOOLS_MAKEVARS := MAN5="" MAN8=""
-
-#
-# autoconf
-#
-MODULE_INIT_TOOLS_CONF_TOOL := autoconf
-MODULE_INIT_TOOLS_CONF_OPT := $(CROSS_AUTOCONF_USR)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/module-init-tools.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, module-init-tools)
- @$(call install_fixup, module-init-tools,PRIORITY,optional)
- @$(call install_fixup, module-init-tools,SECTION,base)
- @$(call install_fixup, module-init-tools,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
- @$(call install_fixup, module-init-tools,DESCRIPTION,missing)
-
-ifdef PTXCONF_MODULE_INIT_TOOLS_INSMOD
- @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/insmod)
-endif
-ifdef PTXCONF_MODULE_INIT_TOOLS_RMMOD
- @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/rmmod)
-endif
-ifdef PTXCONF_MODULE_INIT_TOOLS_LSMOD
- @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/bin/lsmod)
-endif
-ifdef PTXCONF_MODULE_INIT_TOOLS_MODINFO
- @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/modinfo)
-endif
-ifdef PTXCONF_MODULE_INIT_TOOLS_MODPROBE
- @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/modprobe)
-endif
-ifdef PTXCONF_MODULE_INIT_TOOLS_DEPMOD
- @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/depmod)
-endif
-
- @$(call install_finish, module-init-tools)
-
- @$(call touch)
-
-# vim: syntax=make
--
2.32.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] [APPLIED] module-init-tools: Remove after one year in staging
2022-10-24 19:50 [ptxdist] [PATCH] module-init-tools: Remove after one year in staging Ladislav Michl
@ 2022-11-11 14:31 ` Michael Olbrich
0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2022-11-11 14:31 UTC (permalink / raw)
To: ptxdist; +Cc: Ladislav Michl
Thanks, applied as 9929e0b7dc2bc735a40c989e7fb29f2e029503e4.
Michael
[sent from post-receive hook]
On Fri, 11 Nov 2022 15:31:09 +0100, Ladislav Michl <oss-lists@triops.cz> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <Y1bsfLBpV7K/OmNH@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/module-init-tools.in b/rules/module-init-tools.in
> deleted file mode 100644
> index 9eba00ababac..000000000000
> --- a/rules/module-init-tools.in
> +++ /dev/null
> @@ -1,90 +0,0 @@
> -## SECTION=staging
> -## old section:
> -### SECTION=shell_and_console
> -# module-init-tools configuration
> -
> -menuconfig MODULE_INIT_TOOLS
> - tristate
> - prompt "module-init-tools "
> - help
> - This package contains a set of programs for loading, inserting
> - and removing kernel modules for Linux (versions 2.5.48 and
> - above).
> -
> - STAGING: this package is obsolete and has been replaced by libkmod.
> -
> -if MODULE_INIT_TOOLS
> -
> -config MODULE_INIT_TOOLS_INSMOD
> - bool
> - prompt "Install insmod on target"
> - depends on (!BUSYBOX_INSMOD && !LIBKMOD_INSMOD) || ALLYES
> - help
> - simple program to insert a module into the Linux Kernel
> -
> -comment "BusyBox' insmod is selected!"
> - depends on BUSYBOX_INSMOD
> -
> -comment "kmod insmod is selected!"
> - depends on LIBKMOD_INSMOD
> -
> -config MODULE_INIT_TOOLS_RMMOD
> - bool
> - prompt "Install rmmod on target"
> - depends on (!BUSYBOX_RMMOD && !LIBKMOD_RMMOD) || ALLYES
> - help
> - simple program to remove a module from the Linux Kernel
> -
> -comment "BusyBox' rmmod is selected!"
> - depends on BUSYBOX_RMMOD
> -
> -comment "kmod rmmod is selected!"
> - depends on LIBKMOD_RMMOD
> -
> -config MODULE_INIT_TOOLS_LSMOD
> - bool
> - prompt "Install lsmod on target"
> - depends on (!BUSYBOX_LSMOD && !LIBKMOD_LSMOD) || ALLYES
> - help
> - program to show the status of modules in the Linux Kernel
> -
> -comment "BusyBox' lsmod is selected!"
> - depends on BUSYBOX_LSMOD
> -
> -comment "kmod lsmod is selected!"
> - depends on LIBKMOD_LSMOD
> -
> -config MODULE_INIT_TOOLS_MODINFO
> - bool
> - prompt "Install modinfo on target"
> - depends on (!BUSYBOX_MODINFO && !LIBKMOD_MODINFO) || ALLYES
> - help
> - program to show information about a Linux Kernel module
> -
> -comment "BusyBox' modinfo is selected!"
> - depends on BUSYBOX_MODINFO
> -
> -comment "kmod modinfo is selected!"
> - depends on LIBKMOD_MODINFO
> -
> -config MODULE_INIT_TOOLS_MODPROBE
> - bool
> - prompt "Install modprobe on target"
> - depends on (!BUSYBOX_MODPROBE && !LIBKMOD_MODPROBE) || ALLYES
> - help
> - program to add and remove modules from the Linux Kernel
> -
> -comment "BusyBox' modprobe is selected!"
> - depends on BUSYBOX_MODPROBE
> -
> -comment "kmod modprobe is selected!"
> - depends on LIBKMOD_MODPROBE
> -
> -config MODULE_INIT_TOOLS_DEPMOD
> - bool
> - prompt "Install depmod on target"
> - depends on (!BUSYBOX_DEPMOD && !LIBKMOD_DEPMOD) || ALLYES
> - help
> - program to generate modules.dep and map files
> -
> -endif
> diff --git a/rules/module-init-tools.make b/rules/module-init-tools.make
> deleted file mode 100644
> index eb8811b24491..000000000000
> --- a/rules/module-init-tools.make
> +++ /dev/null
> @@ -1,75 +0,0 @@
> -# -*-makefile-*-
> -#
> -# Copyright (C) 2005 Ladislav Michl <ladis@linux-mips.org>
> -# 2006, 2008, 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
> -#
> -# For further information about the PTXdist project and license conditions
> -# see the README file.
> -#
> -
> -#
> -# We provide this package
> -#
> -PACKAGES-$(PTXCONF_MODULE_INIT_TOOLS) += module-init-tools
> -
> -#
> -# Paths and names
> -#
> -MODULE_INIT_TOOLS_VERSION := 3.16
> -MODULE_INIT_TOOLS_MD5 := bc44832c6e41707b8447e2847d2019f5
> -MODULE_INIT_TOOLS := module-init-tools-$(MODULE_INIT_TOOLS_VERSION)
> -MODULE_INIT_TOOLS_SUFFIX := tar.bz2
> -MODULE_INIT_TOOLS_URL := $(call ptx/mirror, KERNEL, utils/kernel/module-init-tools/$(MODULE_INIT_TOOLS).$(MODULE_INIT_TOOLS_SUFFIX))
> -MODULE_INIT_TOOLS_SOURCE := $(SRCDIR)/$(MODULE_INIT_TOOLS).$(MODULE_INIT_TOOLS_SUFFIX)
> -MODULE_INIT_TOOLS_DIR := $(BUILDDIR)/$(MODULE_INIT_TOOLS)
> -MODULE_INIT_TOOLS_LICENSE := GPL-2.0-only
> -
> -# ----------------------------------------------------------------------------
> -# Prepare
> -# ----------------------------------------------------------------------------
> -
> -MODULE_INIT_TOOLS_MAKEVARS := MAN5="" MAN8=""
> -
> -#
> -# autoconf
> -#
> -MODULE_INIT_TOOLS_CONF_TOOL := autoconf
> -MODULE_INIT_TOOLS_CONF_OPT := $(CROSS_AUTOCONF_USR)
> -
> -# ----------------------------------------------------------------------------
> -# Target-Install
> -# ----------------------------------------------------------------------------
> -
> -$(STATEDIR)/module-init-tools.targetinstall:
> - @$(call targetinfo)
> -
> - @$(call install_init, module-init-tools)
> - @$(call install_fixup, module-init-tools,PRIORITY,optional)
> - @$(call install_fixup, module-init-tools,SECTION,base)
> - @$(call install_fixup, module-init-tools,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
> - @$(call install_fixup, module-init-tools,DESCRIPTION,missing)
> -
> -ifdef PTXCONF_MODULE_INIT_TOOLS_INSMOD
> - @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/insmod)
> -endif
> -ifdef PTXCONF_MODULE_INIT_TOOLS_RMMOD
> - @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/rmmod)
> -endif
> -ifdef PTXCONF_MODULE_INIT_TOOLS_LSMOD
> - @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/bin/lsmod)
> -endif
> -ifdef PTXCONF_MODULE_INIT_TOOLS_MODINFO
> - @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/modinfo)
> -endif
> -ifdef PTXCONF_MODULE_INIT_TOOLS_MODPROBE
> - @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/modprobe)
> -endif
> -ifdef PTXCONF_MODULE_INIT_TOOLS_DEPMOD
> - @$(call install_copy, module-init-tools, 0, 0, 0755, -, /usr/sbin/depmod)
> -endif
> -
> - @$(call install_finish, module-init-tools)
> -
> - @$(call touch)
> -
> -# vim: syntax=make
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-11 14:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-24 19:50 [ptxdist] [PATCH] module-init-tools: Remove after one year in staging Ladislav Michl
2022-11-11 14:31 ` [ptxdist] [APPLIED] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox