All of lore.kernel.org
 help / color / mirror / Atom feed
* [fido][PATCH] e2fsprogs: install populate-extfs.sh
@ 2015-05-16  4:58 Martin Jansa
  2015-05-19 11:05 ` Joshua Lock
  2015-06-04  8:47 ` Martin Jansa
  0 siblings, 2 replies; 4+ messages in thread
From: Martin Jansa @ 2015-05-16  4:58 UTC (permalink / raw)
  To: openembedded-core

From: Martin Jansa <martin.jansa@gmail.com>

* 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 <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 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() {
-- 
2.4.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [fido][PATCH] e2fsprogs: install populate-extfs.sh
  2015-05-16  4:58 [fido][PATCH] e2fsprogs: install populate-extfs.sh Martin Jansa
@ 2015-05-19 11:05 ` Joshua Lock
  2015-06-04  8:47 ` Martin Jansa
  1 sibling, 0 replies; 4+ messages in thread
From: Joshua Lock @ 2015-05-19 11:05 UTC (permalink / raw)
  To: openembedded-core

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 <martin.jansa@gmail.com>
>
> * 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 <Martin.Jansa@gmail.com>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
>   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() {
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [fido][PATCH] e2fsprogs: install populate-extfs.sh
  2015-05-16  4:58 [fido][PATCH] e2fsprogs: install populate-extfs.sh Martin Jansa
  2015-05-19 11:05 ` Joshua Lock
@ 2015-06-04  8:47 ` Martin Jansa
  2015-06-04 17:13   ` Joshua Lock
  1 sibling, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2015-06-04  8:47 UTC (permalink / raw)
  To: openembedded-core

On Sat, May 16, 2015 at 06:58:43AM +0200, Martin Jansa wrote:
> From: Martin Jansa <martin.jansa@gmail.com>

ping

> 
> * 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 <Martin.Jansa@gmail.com>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
>  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() {
> -- 
> 2.4.0
> 

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [fido][PATCH] e2fsprogs: install populate-extfs.sh
  2015-06-04  8:47 ` Martin Jansa
@ 2015-06-04 17:13   ` Joshua Lock
  0 siblings, 0 replies; 4+ messages in thread
From: Joshua Lock @ 2015-06-04 17:13 UTC (permalink / raw)
  To: openembedded-core

On 04/06/15 09:47, Martin Jansa wrote:
> On Sat, May 16, 2015 at 06:58:43AM +0200, Martin Jansa wrote:
>> From: Martin Jansa <martin.jansa@gmail.com>
>
> ping

This has been queued in my fido-next branch[1] for a while, I'm hoping 
to do an autobuilder run and propose it for merge to fido over the next 
few days.

Regards,

Joshua

>>
>> * 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 <Martin.Jansa@gmail.com>
>> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>> ---
>>   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() {
>> --
>> 2.4.0
>>
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-06-04 17:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-16  4:58 [fido][PATCH] e2fsprogs: install populate-extfs.sh Martin Jansa
2015-05-19 11:05 ` Joshua Lock
2015-06-04  8:47 ` Martin Jansa
2015-06-04 17:13   ` Joshua Lock

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.