On Mon, Nov 4, 2019 at 12:11 AM Matteo Croce <mcroce@xxxxxxxxxx> wrote: > > On Wed, Oct 9, 2019 at 5:10 PM Matteo Croce <mcroce@xxxxxxxxxx> 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@xxxxxxxxxx> > > 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