<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot.git/package/nfs-utils, branch 2012.08</title>
<subtitle>Buildroot: Making Embedded Linux easy
</subtitle>
<id>https://git.hiegel.fr/cgit/buildroot.git/atom?h=2012.08</id>
<link rel='self' href='https://git.hiegel.fr/cgit/buildroot.git/atom?h=2012.08'/>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/'/>
<updated>2012-08-28T20:59:52Z</updated>
<entry>
<title>remove rest of the BR2_SOURCEFORGE_MIRROR references</title>
<updated>2012-08-28T20:59:52Z</updated>
<author>
<name>Stefan Fröberg</name>
<email>stefan.froberg@petroprogram.com</email>
</author>
<published>2012-08-25T23:52:48Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=23ef45ca1ee8e9d6535fe4484b387c831a450c02'/>
<id>urn:sha1:23ef45ca1ee8e9d6535fe4484b387c831a450c02</id>
<content type='text'>
Signed-off-by: Stefan Fröberg &lt;stefan.froberg@petroprogram.com&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>all packages: rename XXXTARGETS to xxx-package</title>
<updated>2012-07-17T18:23:05Z</updated>
<author>
<name>Arnout Vandecappelle (Essensium/Mind)</name>
<email>arnout@mind.be</email>
</author>
<published>2012-07-02T22:07:32Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=e1502ebc0c92763896c53d405ee9c7c7a1a33e24'/>
<id>urn:sha1:e1502ebc0c92763896c53d405ee9c7c7a1a33e24</id>
<content type='text'>
Also remove the redundant $(call ...).

This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
  xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
               -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
               -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) &lt;arnout@mind.be&gt;
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>nfs-utils: needs pkg-config</title>
<updated>2012-05-31T11:16:10Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2012-05-31T11:16:10Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=54f88ee8eed9d3ae7ab670d14ba77a97a44caaca'/>
<id>urn:sha1:54f88ee8eed9d3ae7ab670d14ba77a97a44caaca</id>
<content type='text'>
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>nfs-utils: bump to version 1.2.6</title>
<updated>2012-05-30T19:44:42Z</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2012-05-29T18:13:21Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=2105ecbd86d04e446effa11108f6bd755ed5f19a'/>
<id>urn:sha1:2105ecbd86d04e446effa11108f6bd755ed5f19a</id>
<content type='text'>
Bump nfs-utils to version 1.2.6
Portmap or rpcbind (which we don't have) is required so select it.
Remove nfsiostat if there's no target python.

Signed-off-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>nfs-utils: fix build with ipv6 after 2a10c9 (pass --enable-ipv6 to autotargets configure)</title>
<updated>2012-04-25T20:29:34Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2012-04-25T20:29:34Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=e23be36ab3a110787917db59618d9f5280457938'/>
<id>urn:sha1:e23be36ab3a110787917db59618d9f5280457938</id>
<content type='text'>
IPv6 support needs the TIRPC library, which we don't have in Buildroot, so
forcibly disable IPv6 support.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>package: remove useless arguments from AUTOTARGETS</title>
<updated>2011-09-29T21:12:27Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2011-09-29T19:57:43Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=300f9c9c9dcf2b47ea89c45d5b1ea05e7305bd49'/>
<id>urn:sha1:300f9c9c9dcf2b47ea89c45d5b1ea05e7305bd49</id>
<content type='text'>
Thanks to the pkgparentdir and pkgname functions, we can rewrite the
AUTOTARGETS macro in a way that avoids the need for each package to
repeat its name and the directory in which it is present.

[Peter: pkgdir-&gt;pkgparentdir]
Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>nfs-utils: replace legacy index() function by strchr()</title>
<updated>2011-07-24T21:51:44Z</updated>
<author>
<name>Frederik Pasch</name>
<email>fpasch@googlemail.com</email>
</author>
<published>2011-07-24T21:51:44Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=82e840e72ec51dbb7058404b046e6fc72a187c04'/>
<id>urn:sha1:82e840e72ec51dbb7058404b046e6fc72a187c04</id>
<content type='text'>
Closes #3961

Signed-off-by: Frederik Pasch &lt;fpasch@googlemail.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>nfs-utils: needs largefile support</title>
<updated>2011-02-20T22:32:47Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-02-20T22:31:38Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=846e5eaebbb053b513b80a664bf9ef315f757ea4'/>
<id>urn:sha1:846e5eaebbb053b513b80a664bf9ef315f757ea4</id>
<content type='text'>
Even though ./configure has a --disable-largefile, functions like
statfs64 is used in several places, breaking the build on toolchains
without largefile support.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>nfs-utils: bump version, convert to autotargets</title>
<updated>2011-02-20T21:39:04Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2011-02-20T21:39:04Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=16e7b8255c82815126a2c502c3787d442d254a86'/>
<id>urn:sha1:16e7b8255c82815126a2c502c3787d442d254a86</id>
<content type='text'>
Fixes build when host doesn't have rpcgen.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Update all packages to quote $(TARGET_CC)</title>
<updated>2010-07-07T06:20:21Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2010-07-06T07:27:32Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=a1c8fa41f6f6e5047182fe90656bcd30243bca8d'/>
<id>urn:sha1:a1c8fa41f6f6e5047182fe90656bcd30243bca8d</id>
<content type='text'>
Now that TARGET_CC contains several space-separated words, it must be
used quoted everywhere.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
</feed>
