<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rtl819xx/include, branch mini3g</title>
<subtitle>Realtek rtl819xx port to OpenWrt</subtitle>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/'/>
<entry>
<title>lexra platform support for build system</title>
<updated>2012-12-02T22:13:20+00:00</updated>
<author>
<name>Roman Yeryomin</name>
<email>roman@advem.lv</email>
</author>
<published>2012-09-12T21:26:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=93cbb70d2a3339647e1ee8565a20c2ee1617b568'/>
<id>93cbb70d2a3339647e1ee8565a20c2ee1617b568</id>
<content type='text'>
Signed-off-by: Roman Yeryomin &lt;roman@advem.lv&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Roman Yeryomin &lt;roman@advem.lv&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>include: download.mk: correct tar argument order when packing checkouts</title>
<updated>2012-12-02T18:35:47+00:00</updated>
<author>
<name>jow</name>
<email>jow@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-12-02T18:35:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=976bbc4212434b01a9d3aa1f2e4f4b9d56ef5519'/>
<id>976bbc4212434b01a9d3aa1f2e4f4b9d56ef5519</id>
<content type='text'>
GNU TAR v1.26 will fail with "no such file or directory" errors when the
output file does not immediately follow the -f switch.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34460 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GNU TAR v1.26 will fail with "no such file or directory" errors when the
output file does not immediately follow the -f switch.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34460 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: fix stripping symbol exports</title>
<updated>2012-12-02T17:42:17+00:00</updated>
<author>
<name>nbd</name>
<email>nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-12-02T17:42:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=1a249c9a1229f81881f6e2585a54da0b4ab66c4c'/>
<id>1a249c9a1229f81881f6e2585a54da0b4ab66c4c</id>
<content type='text'>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34458 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34458 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: move KERNEL_BUILD_DIR under BUILD_DIR to properly fix gcc/libc based dependencies</title>
<updated>2012-12-02T15:26:24+00:00</updated>
<author>
<name>nbd</name>
<email>nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-12-02T15:26:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=a76de89b3ef72a78969a771902b1a4612076e3de'/>
<id>a76de89b3ef72a78969a771902b1a4612076e3de</id>
<content type='text'>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34450 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34450 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
<entry>
<title>build: Add TARGET_ROOTFS_RESERVED_PCT option to reduce wasted space</title>
<updated>2012-11-29T17:37:15+00:00</updated>
<author>
<name>juhosg</name>
<email>juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-11-29T17:37:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=f80deda3fe5cc71bdb9ec710cb886ed02ba9b191'/>
<id>f80deda3fe5cc71bdb9ec710cb886ed02ba9b191</id>
<content type='text'>
The genext2fs tool will 'reserve' 5% of the image size by default,
apparently by creating a huge lost+found directory. In fact it seemed to
be much more than 5% in practice — I saw an image with 8MiB used, and
recovered about 2MiB of it by deleting the 'empty' lost+found directory:

/dev/loop0         48377  8482     37438  19% /mnt/spare
 # rmdir lost+found/
/dev/loop0         48377  6014     39906  14% /mnt/spare

This makes it configurable, but leaves it at the genext2fs default
of 5% for now. It should probably be changed to default to zero, but
that can be a separate patch.

Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34408 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The genext2fs tool will 'reserve' 5% of the image size by default,
apparently by creating a huge lost+found directory. In fact it seemed to
be much more than 5% in practice — I saw an image with 8MiB used, and
recovered about 2MiB of it by deleting the 'empty' lost+found directory:

/dev/loop0         48377  8482     37438  19% /mnt/spare
 # rmdir lost+found/
/dev/loop0         48377  6014     39906  14% /mnt/spare

This makes it configurable, but leaves it at the genext2fs default
of 5% for now. It should probably be changed to default to zero, but
that can be a separate patch.

Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34408 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: update linux 3.6 to 3.6.8</title>
<updated>2012-11-29T07:42:19+00:00</updated>
<author>
<name>juhosg</name>
<email>juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-11-29T07:42:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=7617db12cb5010a967062484ce9a0b3595700acb'/>
<id>7617db12cb5010a967062484ce9a0b3595700acb</id>
<content type='text'>
Also refresh the affected patches.

Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34402 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also refresh the affected patches.

Signed-off-by: Gabor Juhos &lt;juhosg@openwrt.org&gt;

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34402 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
<entry>
<title>[buildroot] image.mk: don't squash file permissions in JFFS2 images</title>
<updated>2012-11-27T18:42:45+00:00</updated>
<author>
<name>florian</name>
<email>florian@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-11-27T18:42:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=baad3f17ed71aa85788b22fbd6875c9bc1d7d511'/>
<id>baad3f17ed71aa85788b22fbd6875c9bc1d7d511</id>
<content type='text'>
Currently we call mkfs.jffs2 --squash, which will change
both file permissions and owners.

If we have some file with suid bits, it will clear these bits.

Thus it's enough to just squash file owners, by replacing that
argument to --squash-uids.

Signed-off-by: Jonh Wendell &lt;jonh.wendell@oiwifi.com.br&gt;
Signed-off-by: Florian Fainelli &lt;florian@openwrt.org&gt;

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34397 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently we call mkfs.jffs2 --squash, which will change
both file permissions and owners.

If we have some file with suid bits, it will clear these bits.

Thus it's enough to just squash file owners, by replacing that
argument to --squash-uids.

Signed-off-by: Jonh Wendell &lt;jonh.wendell@oiwifi.com.br&gt;
Signed-off-by: Florian Fainelli &lt;florian@openwrt.org&gt;

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34397 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
<entry>
<title>[buildroot] add preliminary support for musl</title>
<updated>2012-11-23T20:02:29+00:00</updated>
<author>
<name>florian</name>
<email>florian@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-11-23T20:02:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=cfcc935fa2f110fdf4824c67d3cd67f34d91f7a8'/>
<id>cfcc935fa2f110fdf4824c67d3cd67f34d91f7a8</id>
<content type='text'>
Musl is an alternative C-library, see http://www.musl-libc.org for more infos.

Signed-off-by: Florian Fainelli &lt;florian@openwrt.org&gt;

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34314 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Musl is an alternative C-library, see http://www.musl-libc.org for more infos.

Signed-off-by: Florian Fainelli &lt;florian@openwrt.org&gt;

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34314 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
<entry>
<title>include: use $(DIR_SUFFIX) in $(KERNEL_BUILD_DIR) to separate build_dir/linux-* directories when building different libc implementations in the same buildroot</title>
<updated>2012-11-22T13:43:24+00:00</updated>
<author>
<name>jow</name>
<email>jow@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-11-22T13:43:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=402ccba35c9ce0d3d64c830ee9d24f3a88f04bfa'/>
<id>402ccba35c9ce0d3d64c830ee9d24f3a88f04bfa</id>
<content type='text'>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34299 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34299 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: fix loading of nf_nat_irc</title>
<updated>2012-11-18T21:18:37+00:00</updated>
<author>
<name>hauke</name>
<email>hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73</email>
</author>
<published>2012-11-18T21:18:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.advem.lv/rtl819xx/commit/?id=2ca063d6c1328efc6bd02efcf50fe6b9f0113e8a'/>
<id>2ca063d6c1328efc6bd02efcf50fe6b9f0113e8a</id>
<content type='text'>
nf_nat_irc depends on nf_conntrack_irc and it should be defined after that.
This fixes a problem introduced in r34247.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34251 3c298f89-4303-0410-b956-a3cf2f4a3e73
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
nf_nat_irc depends on nf_conntrack_irc and it should be defined after that.
This fixes a problem introduced in r34247.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34251 3c298f89-4303-0410-b956-a3cf2f4a3e73
</pre>
</div>
</content>
</entry>
</feed>
