From: Yanko Kaneti <yaneti-jUE9FD3ILm5BDgjK7y7TUQ@public.gmane.org>
To: Seewer Philippe <philippe.seewer-omB+W0Dpw2o@public.gmane.org>
Cc: "initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH] Basic root filesystem maintenance module
Date: Mon, 02 Nov 2009 18:02:22 +0200 [thread overview]
Message-ID: <1257177742.5298.24.camel@d2> (raw)
In-Reply-To: <4AEEFAC8.4010202-omB+W0Dpw2o@public.gmane.org>
On Mon, 2009-11-02 at 16:29 +0100, Seewer Philippe wrote:
> Yanko Kaneti wrote:
> > Just the other day I rebooted with rdbreak with the idea to shrink
> the
> > root fs a little, only to find that none of the fack/resize/tune
> tools
> > for ext3 were actually in the initramfs. Here is a first attempt at
> a
> > basic dracut module that includes those. Worked in brief testing.
>
> Not a bad idea! Just a thought: Why not just add these to the debug
> module?
As far as I understand its off by default which would have also foiled
my initial uninformed attempt at resizing. I kinda expected a generic
initrd to have some basic fs maintenance tools.
>
> >
> > Not really attached to the patch itself, but I would like to have a
> way
> > to include those basic tools one way or the other.
> >
> > Cheers
> > Yanko
> >
> > ---
> > dracut.spec | 11 +++++++++++
> > modules.d/60maint/check | 2 ++
> > modules.d/60maint/install | 2 ++
> > 3 files changed, 15 insertions(+), 0 deletions(-)
> > create mode 100755 modules.d/60maint/check
> > create mode 100755 modules.d/60maint/install
> >
> > diff --git a/dracut.spec b/dracut.spec
> > index 01d58e1..2ac8d52 100644
> > --- a/dracut.spec
> > +++ b/dracut.spec
> > @@ -82,6 +82,13 @@ Requires: %{name}-network = %{version}-%{release}
> > This package requires everything which is needed to build a generic
> > all purpose initramfs with dracut.
> >
> > +%package maint
> > +Summary: dracut module for basic root filesystem maintenance
> > +Requires: e2fsprogs, util-linux-ng
> > +
> > +%description maint
> > +This package requires everything needed for basic root filesystem
> maintenance
> > +from within the initramfs (currently only ext234)
> >
> > %package kernel
> > Summary: Metapackage to build generic initramfs with dracut with
> only kernel modules
> > @@ -183,6 +190,10 @@ rm -rf $RPM_BUILD_ROOT
> > %defattr(-,root,root,0755)
> > %doc README.generic
> >
> > +%files maint
> > +%defattr(-,root,root,0755)
> > +%{_datadir}/dracut/modules.d/60maint
> > +
> > %files tools
> > %defattr(-,root,root,0755)
> > %doc COPYING NEWS
> > diff --git a/modules.d/60maint/check b/modules.d/60maint/check
> > new file mode 100755
> > index 0000000..fc59a03
> > --- /dev/null
> > +++ b/modules.d/60maint/check
> > @@ -0,0 +1,2 @@
> > +#!/bin/bash
> > +which fsck fsck.ext4 fsck.ext2 fsck.ext3 resize2fs tune2fs
> >/dev/null
> > diff --git a/modules.d/60maint/install b/modules.d/60maint/install
> > new file mode 100755
> > index 0000000..e7f2848
> > --- /dev/null
> > +++ b/modules.d/60maint/install
> > @@ -0,0 +1,2 @@
> > +#!/bin/bash
> > +dracut_install fsck fsck.ext4 fsck.ext2 fsck.ext3 resize2fs tune2fs
> --
> To unsubscribe from this list: send the line "unsubscribe initramfs"
> in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2009-11-02 16:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-02 15:17 [PATCH] Basic root filesystem maintenance module Yanko Kaneti
2009-11-02 15:29 ` Seewer Philippe
[not found] ` <4AEEFAC8.4010202-omB+W0Dpw2o@public.gmane.org>
2009-11-02 16:02 ` Yanko Kaneti [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=1257177742.5298.24.camel@d2 \
--to=yaneti-jue9fd3ilm5bdgjk7y7tuq@public.gmane.org \
--cc=initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=philippe.seewer-omB+W0Dpw2o@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.