From: Ladislav Michl <oss-lists@triops.cz>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH] module-init-tools: Remove after one year in staging
Date: Mon, 24 Oct 2022 21:50:20 +0200 [thread overview]
Message-ID: <Y1bsfLBpV7K/OmNH@lenoch> (raw)
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
next reply other threads:[~2022-10-24 19:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-24 19:50 Ladislav Michl [this message]
2022-11-11 14:31 ` [ptxdist] [APPLIED] " Michael Olbrich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y1bsfLBpV7K/OmNH@lenoch \
--to=oss-lists@triops.cz \
--cc=ptxdist@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox