mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Ladislav Michl <oss-lists@triops.cz>
Subject: Re: [ptxdist] [APPLIED] module-init-tools: Remove after one year in staging
Date: Fri, 11 Nov 2022 15:31:10 +0100	[thread overview]
Message-ID: <20221111143110.892565-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <Y1bsfLBpV7K/OmNH@lenoch>

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



      reply	other threads:[~2022-11-11 14:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-24 19:50 [ptxdist] [PATCH] " Ladislav Michl
2022-11-11 14:31 ` Michael Olbrich [this message]

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=20221111143110.892565-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=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