<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to support-requests</title><link>https://sourceforge.net/p/squashfs/support-requests/</link><description>Recent changes to support-requests</description><atom:link href="https://sourceforge.net/p/squashfs/support-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Tue, 05 Jul 2016 00:30:25 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/squashfs/support-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>./configure failing due to syntax error in configure file.</title><link>https://sourceforge.net/p/squashfs/support-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi, &lt;/p&gt;
&lt;p&gt;I haven't been able to compile squash-fs, the process fails during ./configure, with the following message:&lt;/p&gt;
&lt;p&gt;./configure: line 13582: syntax error near unexpected token &lt;code&gt;pkgconfig_XZ,liblzma,'
./configure: line 13582:&lt;/code&gt;  PKG_CHECK_MODULES(pkgconfig_XZ,liblzma,'&lt;/p&gt;
&lt;p&gt;I double-checked the PLATFORMS and README files, and I believe I installed all required packages. &lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Wilfredo&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wilfredo </dc:creator><pubDate>Tue, 05 Jul 2016 00:30:25 -0000</pubDate><guid>https://sourceforge.net18130bcc2cf3782e3561d2222944f8a59be40325</guid></item><item><title>#4 mksquashfs -ef not excluding hidden directories</title><link>https://sourceforge.net/p/squashfs/support-requests/4/?limit=25#d6ce</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Nevermind, i realised that you have to create an "excludes" file and put your files / directory's inside of it.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">kidharb</dc:creator><pubDate>Sat, 21 Mar 2015 10:58:50 -0000</pubDate><guid>https://sourceforge.net154f9073d3d7fb31b8c2d9be5879bc61dc694f3e</guid></item><item><title>mksquashfs -ef not excluding hidden directories</title><link>https://sourceforge.net/p/squashfs/support-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;My directory structure contains a hidden folder namely ".git".&lt;br /&gt;
Is it possible to exclude hidden directory's with the "-ef" option?&lt;/p&gt;
&lt;p&gt;I am using mksquash version 4.0&lt;/p&gt;
&lt;p&gt;Regards&lt;br /&gt;
Kidhar&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">kidharb</dc:creator><pubDate>Sat, 21 Mar 2015 10:41:51 -0000</pubDate><guid>https://sourceforge.net4012ddd2f95409b332fd856daa208e1f8205315c</guid></item><item><title>Compression options</title><link>https://sourceforge.net/p/squashfs/support-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Two points:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;the lzo compress we use is very slow (test it, it even slower than the default gzip 9 in my machine) and it produce even bigger squashfs image compare with the faster lzo compression&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Thus I suggest we can use: lzo1x_1_15_compress  instead of  lzo1x_999_compress. I tested myself, it is &lt;strong&gt;much&lt;/strong&gt; faster to compress and the output file size is even smaller.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Add an option to allow gzip level rather than hard coded to 9. For example Gzip 4 which make it much less CPU time and produce just a bit bigger size but tehre is no way to set it now &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(Well I did a quick hack by let mksquashfs read the environment GZIP_LEVEL and use it like this in gzip_wrapper.c&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;   &lt;span class="kt"&gt;char&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;gzlevel&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;getenv&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;&amp;quot;GZIP_LEVEL&amp;quot;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt; &lt;span class="n"&gt;gzlevel&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="n"&gt;gzlevel&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;4&amp;quot;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="n"&gt;res&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;deflateInit&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;stream&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;atoi&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;gzlevel&lt;/span&gt;&lt;span class="p"&gt;));&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;but it should be a permanent option. I had a quick look of how it should be implemented but find it hard to implement as it talk to a generic wrapper - and it handles it a bit complex to me)&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steve Kieu</dc:creator><pubDate>Mon, 22 Jul 2013 04:11:09 -0000</pubDate><guid>https://sourceforge.netb34eccf40738877eb633b994b8732e9b4fceb3bc</guid></item><item><title>unsquashfs endianness</title><link>https://sourceforge.net/p/squashfs/support-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I've compiled squashfs-tools and have a problem with endianness. If I specify -be BigEndian for any mksquashfs I can't unpack it with unsquashfs.&lt;/p&gt;
&lt;p&gt;mkdir test&lt;br /&gt;
mksquashfs 'test' 'test.sq' -all-root -be&lt;br /&gt;
unsquashfs 'test.sq'&lt;/p&gt;
&lt;p&gt;Reading a different endian SQUASHFS filesystem on test.sq&lt;br /&gt;
Can't find a SQUASHFS superblock on test.sq&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Yuji1 Saeki</dc:creator><pubDate>Fri, 12 Oct 2012 08:06:44 -0000</pubDate><guid>https://sourceforge.net67c82f63c11ab4f3d4ccaeb09477aef5c891add4</guid></item><item><title>empty inode entry in 2.2r2 causes filesystem failure</title><link>https://sourceforge.net/p/squashfs/support-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am trying to use the squashfs version 2.2r2 to&lt;br /&gt;
generate a compressed filesystem image, using the&lt;br /&gt;
following:&lt;/p&gt;
&lt;p&gt;/PATH_TO_TOOLS/squashfs-tools/mksquashfs&lt;br /&gt;
/tmp/DIR_TO_SQUASH/* output.img -noappend -nopad -info&lt;br /&gt;
-le -all-root&lt;/p&gt;
&lt;p&gt;The problem is that sometimes I see that sometimes that&lt;br /&gt;
there is an empty directory inode that is created:&lt;/p&gt;
&lt;p&gt;"mksquashfs: directory  inode 0x912"&lt;/p&gt;
&lt;p&gt;Whenever this happens the filesystem image that is&lt;br /&gt;
created can't be read.&lt;/p&gt;
&lt;p&gt;I was wondering if anyone else had seen this problem&lt;br /&gt;
and if they have, is there a workaround for it?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br /&gt;
AV.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A_v</dc:creator><pubDate>Wed, 14 Jun 2006 00:57:44 -0000</pubDate><guid>https://sourceforge.net396c8273a6339097bb19528ad24a4af6dcdd975c</guid></item></channel></rss>