mkinitrd unification across distributions
 help / color / mirror / Atom feed
From: Harald Hoyer <harald-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Hannes Reinecke <hare-l3A5Bk7waGM@public.gmane.org>
Cc: Thomas Renninger <trenn-l3A5Bk7waGM@public.gmane.org>,
	initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCHv2 00/13] SUSE S/390 integration
Date: Tue, 28 Jan 2014 15:42:45 +0100	[thread overview]
Message-ID: <52E7C1E5.4010208@redhat.com> (raw)
In-Reply-To: <1385727234-5001-1-git-send-email-hare-l3A5Bk7waGM@public.gmane.org>

On 11/29/2013 01:13 PM, Hannes Reinecke wrote:
> SUSE is keeping the S/390 device configuration in udev rules,
> on rule per device.
> And it doesn't have the RH-specific configuration scripts (obviously).
> This patchset abstracts away the RH-specific configuration and
> adds modules to make dracut boot on SLES installations.
> 
> I've also added a new SUSE-specific mkinitrd compability script,
> as the SUSE mkinitrd is quite different.
> 
> And some minor fixes which came up during package build.
> 
> Please apply.
> 
> Hannes Reinecke (13):
>   95dasd: Install kernel modules only once
>   95dasd: Only install module if normalize_dasd_arg is present
>   95dasd_mod: make dasd_cio_free optional
>   95zfcp: Make installation optional
>   95znet: Make installation optional
>   Add DASD configuration for SuSE
>   Add zfcp scripts for SUSE
>   Make logfile configurable
>   mkinitrd-suse: Add SUSE compability wrapper for dracut
>   mkinitrd-suse.8.asc: Add manpage for SUSE compat mkinitrd
>   Fixup keymap setting for openSUSE
>   Fixup script permissions
>   Remove shebang from shell-completion files
> 
>  Makefile                                 |   1 +
>  dracut-bash-completion.sh                |   2 +-
>  dracut-functions.sh                      |  28 +++
>  dracut.8.asc                             |   6 +
>  dracut.sh                                |   4 +
>  lsinitrd-bash-completion.sh              |   2 +-
>  mkinitrd-suse.8.asc                      | 106 +++++++++
>  mkinitrd-suse.sh                         | 354 +++++++++++++++++++++++++++++++
>  modules.d/03modsign/load-modsign-keys.sh |   0
>  modules.d/03modsign/module-setup.sh      |   0
>  modules.d/10i18n/module-setup.sh         |   3 +
>  modules.d/40network/net-lib.sh           |   0
>  modules.d/40network/parse-vlan.sh        |   0
>  modules.d/50drm/module-setup.sh          |   0
>  modules.d/91crypt-loop/crypt-loop-lib.sh |   0
>  modules.d/95dasd/module-setup.sh         |   7 +-
>  modules.d/95dasd_mod/module-setup.sh     |   3 +-
>  modules.d/95dasd_mod/parse-dasd-mod.sh   |   4 +-
>  modules.d/95dasd_rules/module-setup.sh   |  27 +++
>  modules.d/95dasd_rules/parse-dasd.sh     |  56 +++++
>  modules.d/95zfcp/module-setup.sh         |   4 +-
>  modules.d/95zfcp_rules/module-setup.sh   |  25 +++
>  modules.d/95zfcp_rules/parse-zfcp.sh     |  65 ++++++
>  modules.d/95znet/module-setup.sh         |   1 +
>  modules.d/98pollcdrom/pollcdrom.sh       |   0
>  25 files changed, 686 insertions(+), 12 deletions(-)
>  create mode 100644 mkinitrd-suse.8.asc
>  create mode 100755 mkinitrd-suse.sh
>  mode change 100644 => 100755 modules.d/03modsign/load-modsign-keys.sh
>  mode change 100644 => 100755 modules.d/03modsign/module-setup.sh
>  mode change 100644 => 100755 modules.d/40network/net-lib.sh
>  mode change 100644 => 100755 modules.d/40network/parse-vlan.sh
>  mode change 100644 => 100755 modules.d/50drm/module-setup.sh
>  mode change 100644 => 100755 modules.d/91crypt-loop/crypt-loop-lib.sh
>  create mode 100755 modules.d/95dasd_rules/module-setup.sh
>  create mode 100755 modules.d/95dasd_rules/parse-dasd.sh
>  create mode 100755 modules.d/95zfcp_rules/module-setup.sh
>  create mode 100755 modules.d/95zfcp_rules/parse-zfcp.sh
>  mode change 100644 => 100755 modules.d/98pollcdrom/pollcdrom.sh
> 

Thanks! Pushed.

      parent reply	other threads:[~2014-01-28 14:42 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-29 12:13 [PATCHv2 00/13] SUSE S/390 integration Hannes Reinecke
     [not found] ` <1385727234-5001-1-git-send-email-hare-l3A5Bk7waGM@public.gmane.org>
2013-11-29 12:13   ` [PATCH 01/13] 95dasd: Install kernel modules only once Hannes Reinecke
2013-11-29 12:13   ` [PATCH 02/13] 95dasd: Only install module if normalize_dasd_arg is present Hannes Reinecke
2013-11-29 12:13   ` [PATCH 03/13] 95dasd_mod: make dasd_cio_free optional Hannes Reinecke
2013-11-29 12:13   ` [PATCH 04/13] 95zfcp: Make installation optional Hannes Reinecke
2013-11-29 12:13   ` [PATCH 05/13] 95znet: " Hannes Reinecke
2013-11-29 12:13   ` [PATCH 06/13] Add DASD configuration for SuSE Hannes Reinecke
2013-11-29 12:13   ` [PATCH 07/13] Add zfcp scripts for SUSE Hannes Reinecke
2013-11-29 12:13   ` [PATCH 08/13] Make logfile configurable Hannes Reinecke
2013-11-29 12:13   ` [PATCH 09/13] mkinitrd-suse: Add SUSE compability wrapper for dracut Hannes Reinecke
2013-11-29 12:13   ` [PATCH 10/13] mkinitrd-suse.8.asc: Add manpage for SUSE compat mkinitrd Hannes Reinecke
2013-11-29 12:13   ` [PATCH 11/13] Fixup keymap setting for openSUSE Hannes Reinecke
2013-11-29 12:13   ` [PATCH 12/13] Fixup script permissions Hannes Reinecke
2013-11-29 12:13   ` [PATCH 13/13] Remove shebang from shell-completion files Hannes Reinecke
2014-01-28 14:42   ` Harald Hoyer [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=52E7C1E5.4010208@redhat.com \
    --to=harald-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
    --cc=hare-l3A5Bk7waGM@public.gmane.org \
    --cc=initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=trenn-l3A5Bk7waGM@public.gmane.org \
    /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