Openembedded Core Discussions
 help / color / mirror / Atom feed
* [fido][PATCH] squashfs-tools: build and install unsquashfs as well
@ 2015-05-21 11:24 Martin Jansa
  2015-06-04  8:48 ` Martin Jansa
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2015-05-21 11:24 UTC (permalink / raw)
  To: openembedded-core

* it's useful for debugging corrupt squashfs images from mksquashfs

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
index d36f0fe..19d555e1 100644
--- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
+++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
@@ -27,11 +27,12 @@ SPDX_S = "${WORKDIR}/squashfs${PV}"
 EXTRA_OEMAKE = "MAKEFLAGS= LZMA_SUPPORT=1 LZMA_DIR=../.. XZ_SUPPORT=1 LZO_SUPPORT=1 LZ4_SUPPORT=1"
 
 do_compile() {
-        oe_runmake mksquashfs
+	oe_runmake mksquashfs unsquashfs
 }
 do_install () {
         install -d ${D}${sbindir}
         install -m 0755 mksquashfs ${D}${sbindir}/
+	install -m 0755 unsquashfs ${D}${sbindir}/
 }
 
 ARM_INSTRUCTION_SET = "arm"
-- 
2.4.1



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

* Re: [fido][PATCH] squashfs-tools: build and install unsquashfs as well
  2015-05-21 11:24 [fido][PATCH] squashfs-tools: build and install unsquashfs as well Martin Jansa
@ 2015-06-04  8:48 ` Martin Jansa
  2015-06-04 17:15   ` Joshua Lock
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2015-06-04  8:48 UTC (permalink / raw)
  To: openembedded-core

On Thu, May 21, 2015 at 01:24:36PM +0200, Martin Jansa wrote:
> * it's useful for debugging corrupt squashfs images from mksquashfs

ping

> 
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
> index d36f0fe..19d555e1 100644
> --- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
> +++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
> @@ -27,11 +27,12 @@ SPDX_S = "${WORKDIR}/squashfs${PV}"
>  EXTRA_OEMAKE = "MAKEFLAGS= LZMA_SUPPORT=1 LZMA_DIR=../.. XZ_SUPPORT=1 LZO_SUPPORT=1 LZ4_SUPPORT=1"
>  
>  do_compile() {
> -        oe_runmake mksquashfs
> +	oe_runmake mksquashfs unsquashfs
>  }
>  do_install () {
>          install -d ${D}${sbindir}
>          install -m 0755 mksquashfs ${D}${sbindir}/
> +	install -m 0755 unsquashfs ${D}${sbindir}/
>  }
>  
>  ARM_INSTRUCTION_SET = "arm"
> -- 
> 2.4.1
> 

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


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

* Re: [fido][PATCH] squashfs-tools: build and install unsquashfs as well
  2015-06-04  8:48 ` Martin Jansa
@ 2015-06-04 17:15   ` Joshua Lock
  0 siblings, 0 replies; 3+ messages in thread
From: Joshua Lock @ 2015-06-04 17:15 UTC (permalink / raw)
  To: openembedded-core

On 04/06/15 09:48, Martin Jansa wrote:
> On Thu, May 21, 2015 at 01:24:36PM +0200, Martin Jansa wrote:
>> * it's useful for debugging corrupt squashfs images from mksquashfs
>
> ping

Thanks, this is queued in my fido-next branch[1] pending an autobuilder run.

Regards,

Joshua

1. 
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=joshuagl/fido-next

>
>>
>> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
>> ---
>>   meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb | 3 ++-
>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
>> index d36f0fe..19d555e1 100644
>> --- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
>> +++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.3.bb
>> @@ -27,11 +27,12 @@ SPDX_S = "${WORKDIR}/squashfs${PV}"
>>   EXTRA_OEMAKE = "MAKEFLAGS= LZMA_SUPPORT=1 LZMA_DIR=../.. XZ_SUPPORT=1 LZO_SUPPORT=1 LZ4_SUPPORT=1"
>>
>>   do_compile() {
>> -        oe_runmake mksquashfs
>> +	oe_runmake mksquashfs unsquashfs
>>   }
>>   do_install () {
>>           install -d ${D}${sbindir}
>>           install -m 0755 mksquashfs ${D}${sbindir}/
>> +	install -m 0755 unsquashfs ${D}${sbindir}/
>>   }
>>
>>   ARM_INSTRUCTION_SET = "arm"
>> --
>> 2.4.1
>>
>



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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-21 11:24 [fido][PATCH] squashfs-tools: build and install unsquashfs as well Martin Jansa
2015-06-04  8:48 ` Martin Jansa
2015-06-04 17:15   ` Joshua Lock

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox