<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot-novena, branch master</title>
<subtitle>build system for the novena open hardware laptop board</subtitle>
<id>https://git.bnewbold.net/buildroot-novena/atom?h=master</id>
<link rel='self' href='https://git.bnewbold.net/buildroot-novena/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/'/>
<updated>2013-08-05T01:57:25+00:00</updated>
<entry>
<title>larger ext partition size (400MB); compress final image</title>
<updated>2013-08-05T01:57:25+00:00</updated>
<author>
<name>bnewbold</name>
<email>bnewbold@robocracy.org</email>
</author>
<published>2013-08-05T01:57:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=46fa51cbad4200bfde81e90174d4fdad7f224bb2'/>
<id>urn:sha1:46fa51cbad4200bfde81e90174d4fdad7f224bb2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>potential mandb threading fix from xobs</title>
<updated>2013-08-04T22:48:16+00:00</updated>
<author>
<name>bnewbold</name>
<email>bnewbold@robocracy.org</email>
</author>
<published>2013-08-04T22:48:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=1d9dc2c100d64185ecd207bdbc3a4189813b0281'/>
<id>urn:sha1:1d9dc2c100d64185ecd207bdbc3a4189813b0281</id>
<content type='text'>
</content>
</entry>
<entry>
<title>initial novena board support</title>
<updated>2013-07-15T00:43:00+00:00</updated>
<author>
<name>bnewbold</name>
<email>bnewbold@robocracy.org</email>
</author>
<published>2013-07-15T00:09:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=e6bc3421fe955cebb90bf6cce8e2933794424d66'/>
<id>urn:sha1:e6bc3421fe955cebb90bf6cce8e2933794424d66</id>
<content type='text'>
</content>
</entry>
<entry>
<title>packages: add genfatfs and makedisk (both host tools)</title>
<updated>2013-07-15T00:03:47+00:00</updated>
<author>
<name>bnewbold</name>
<email>bnewbold@robocracy.org</email>
</author>
<published>2013-07-15T00:03:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=6c94ef706e8b4450a8a83b0f1cf80a74d683d4a0'/>
<id>urn:sha1:6c94ef706e8b4450a8a83b0f1cf80a74d683d4a0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>u-boot: workaround for setlocalversion issue</title>
<updated>2013-07-14T23:56:45+00:00</updated>
<author>
<name>bnewbold</name>
<email>bnewbold@robocracy.org</email>
</author>
<published>2013-07-14T23:56:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=6b2a0e0c9b297396a9c0841905fa31275a38a0e3'/>
<id>urn:sha1:6b2a0e0c9b297396a9c0841905fa31275a38a0e3</id>
<content type='text'>
The u-boot build process attempts to determine the version number using git
commands, which assumes that the build is taking place in a git checkout with
the .git directory intact. The buildroot build process does a git checkout, but
then exports a .tar.gz as a cache and does the build from that tarball (with no
.git file).

In some instances, being unable to determine the current version causes the
build process to generate a non-functional bootloader.

This patch implements a work-around for this problem by allowing the user to
configure a 'localverion' override which gets written to the ./localversion
file in the u-boot build directory, which is later used by the
./tools/setlocalversion script.
</content>
</entry>
<entry>
<title>fdk-aac: new package</title>
<updated>2013-07-12T11:46:12+00:00</updated>
<author>
<name>gilles.talis@gmail.com</name>
<email>gilles.talis@gmail.com</email>
</author>
<published>2013-07-11T23:46:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=4ddff0099fa0619cfd1bcf5afa96f56a703de385'/>
<id>urn:sha1:4ddff0099fa0619cfd1bcf5afa96f56a703de385</id>
<content type='text'>
Signed-off-by: Gilles Talis &lt;gilles.talis@gmail.com&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>nodejs: not supported on old ARM cores</title>
<updated>2013-07-12T11:31:47+00:00</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2013-07-12T00:58:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=8da92a1c35c7327c49b2a96dc04d7fe80ae9bac6'/>
<id>urn:sha1:8da92a1c35c7327c49b2a96dc04d7fe80ae9bac6</id>
<content type='text'>
nodejs needs the ARM blx instruction which is only supported in v5t+
cores (v5 ISA with thumb instructions).
Disable it for lower cores. Fixes:
http://autobuild.buildroot.net/results/89e/89ee5ba047a26a8c7a612d0285b08780b70efbd4/

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>php: security bump to version 5.3.27</title>
<updated>2013-07-12T11:31:32+00:00</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2013-07-11T18:28:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=bef0f4c818f4dcef2589e034ad02ffeec3cab1d3'/>
<id>urn:sha1:bef0f4c818f4dcef2589e034ad02ffeec3cab1d3</id>
<content type='text'>
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>cifs-utils: bump to version 6.1</title>
<updated>2013-07-12T11:31:21+00:00</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2013-07-11T15:40:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=b62e9cde8812b2fa145b9c4cd01e4a05e73fbfe1'/>
<id>urn:sha1:b62e9cde8812b2fa145b9c4cd01e4a05e73fbfe1</id>
<content type='text'>
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>Makefile: unexport RUBYOPT</title>
<updated>2013-07-12T11:31:11+00:00</updated>
<author>
<name>Gustavo Zacarias</name>
<email>gustavo@zacarias.com.ar</email>
</author>
<published>2013-07-11T14:37:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=bed61a7be37cd95b05b8fa9c48cab77e81c93efd'/>
<id>urn:sha1:bed61a7be37cd95b05b8fa9c48cab77e81c93efd</id>
<content type='text'>
On Gentoo systems with ruby installed RUBYOPT is set and causes build
breakage for some packages that needs host-ruby (example: webkit).

Signed-off-by: Gustavo Zacarias &lt;gustavo@zacarias.com.ar&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
</feed>
