[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAK7LNATcaJeBvzACMW-OxB1D24cYQYdQQwJca-OMe9sb4Q2KWw@mail.gmail.com>
Date: Mon, 4 Nov 2019 10:51:39 +0900
From: Masahiro Yamada <yamada.masahiro@...ionext.com>
To: Matteo Croce <mcroce@...hat.com>
Cc: Linux Kbuild mailing list <linux-kbuild@...r.kernel.org>,
Michal Marek <michal.lkml@...kovi.net>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] kbuild: Add make dir-pkg build option
On Mon, Nov 4, 2019 at 12:11 AM Matteo Croce <mcroce@...hat.com> wrote:
>
> On Wed, Oct 9, 2019 at 5:10 PM Matteo Croce <mcroce@...hat.com> wrote:
> >
> > Add a 'dir-pkg' target which just creates the same directory structures
> > as in tar-pkg, but doesn't package anything.
> > Useful when the user wants to copy the kernel tree on a machine using
> > ssh, rsync or whatever.
> >
> > Signed-off-by: Matteo Croce <mcroce@...hat.com>
>
> Hi,
>
> any comment on this?
>
Sorry for the late reply.
One nit.
> @@ -133,6 +133,11 @@ if tar --owner=root --group=root --help >/dev/null 2>&1; then
> opts="$opts --owner=root --group=root"
> fi
>
> +if [ "${1}" = dir-pkg ]; then
> + echo "Kernel tree successfully created in $tmpdir"
> + exit 0
> +fi
> +
The 'opts' assignment is unneeded for dir-pkg.
You can exit before the "# Create the tarball" comment line.
--
Best Regards
Masahiro Yamada
Powered by blists - more mailing lists