From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [93.93.135.160]) by mail.openembedded.org (Postfix) with ESMTP id 0EF1D60125 for ; Tue, 19 May 2015 11:05:53 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: joshuagl) with ESMTPSA id 5D694601A4D Message-ID: <555B190F.1070300@collabora.co.uk> Date: Tue, 19 May 2015 12:05:51 +0100 From: Joshua Lock User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: openembedded-core@lists.openembedded.org References: <1431752323-17235-1-git-send-email-Martin.Jansa@gmail.com> In-Reply-To: <1431752323-17235-1-git-send-email-Martin.Jansa@gmail.com> Subject: Re: [fido][PATCH] e2fsprogs: install populate-extfs.sh X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 May 2015 11:05:54 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Thanks Martin, I've queued this in my fido-next branch on openembedded-core-contrib. Regards, Joshua On 16/05/15 05:58, Martin Jansa wrote: > From: Martin Jansa > > * install populate-extfs.sh from contrib, be aware that in order > to use it you need to set DEBUGFS shell variable, otherwise it will > try to use debugfs from relative path which is almost always > incorrect: > CONTRIB_DIR=$(dirname $(readlink -f $0)) > DEBUGFS="$CONTRIB_DIR/../debugfs/debugfs" > > Signed-off-by: Martin Jansa > Signed-off-by: Richard Purdie > --- > meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb > index 66065bc..abc959f 100644 > --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb > +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb > @@ -54,6 +54,8 @@ do_install () { > oe_multilib_header ext2fs/ext2_types.h > install -d ${D}${base_bindir} > mv ${D}${bindir}/chattr ${D}${base_bindir}/chattr.e2fsprogs > + > + install -v -m 755 ${S}/contrib/populate-extfs.sh ${D}${base_sbindir}/ > } > > do_install_append_class-target() { >