<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot-novena/project, branch 2009.05</title>
<subtitle>build system for the novena open hardware laptop board</subtitle>
<id>https://git.bnewbold.net/buildroot-novena/atom?h=2009.05</id>
<link rel='self' href='https://git.bnewbold.net/buildroot-novena/atom?h=2009.05'/>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/'/>
<updated>2009-03-19T11:06:47+00:00</updated>
<entry>
<title>package: add STAMP_DIR and use for host builds</title>
<updated>2009-03-19T11:06:47+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-03-19T11:06:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=e7b38c71ce55720f7709f0049f5bfc71ca0615ec'/>
<id>urn:sha1:e7b38c71ce55720f7709f0049f5bfc71ca0615ec</id>
<content type='text'>
Move stamp (dependency) files outside the (version specific) source
directories, so other packages can hardcode dependencies on them instead
of having to use &lt;PACKAGE&gt;_VERSION variables.

This is important as the variables in the make rules are evaluated when
the rules is seen, which might be before the dependent makefile is parsed
(and hence &lt;PACKAGE&gt;_VERSION variable is known, screwing up stuff.

The downside of this is that the package isn't automatically rebuilt
when the version changes (E.G. by a svn update) and you now also have to
remove the stamp files next to $(BUILD_DIR)/&lt;PACKAGE&gt;-* to force a rebuild.
</content>
</entry>
<entry>
<title>Makefile: introduce $(HOST_DIR) for host binaries</title>
<updated>2009-03-16T15:48:43+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-03-16T15:48:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=bd07d92aaddd32f7648d7e1f59d34a41019d4744'/>
<id>urn:sha1:bd07d92aaddd32f7648d7e1f59d34a41019d4744</id>
<content type='text'>
Add HOST_DIR directory handling. HOST_DIR should be used just like
STAGING_DIR, but for host files instead of target ones.
</content>
</entry>
<entry>
<title>BR2_BANNER: set to 'Welcome to Buildroot'</title>
<updated>2009-01-15T14:50:03+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-01-15T14:50:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=1d29743c72dcd3e225de7fce54b4729379607edb'/>
<id>urn:sha1:1d29743c72dcd3e225de7fce54b4729379607edb</id>
<content type='text'>
Seems a bit more sensible as default.
</content>
</entry>
<entry>
<title>Fix BOARD_PATH for local projects</title>
<updated>2009-01-06T23:38:33+00:00</updated>
<author>
<name>Ulf Samuelsson</name>
<email>ulf.samuelsson@atmel.com</email>
</author>
<published>2009-01-06T23:38:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=3f673cfb32ae14d24821de7876965e05e7e4ec84'/>
<id>urn:sha1:3f673cfb32ae14d24821de7876965e05e7e4ec84</id>
<content type='text'>
</content>
</entry>
<entry>
<title>buildroot: add QUIET variable and use it for wget/git/svn/configure</title>
<updated>2008-10-21T08:56:26+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2008-10-21T08:56:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=43af3d35781855cfa987ef163e4c75d8e52f5be0'/>
<id>urn:sha1:43af3d35781855cfa987ef163e4c75d8e52f5be0</id>
<content type='text'>
A lot of tools take a -q option to be quiet.
Set this if make is called with the -s (silent) option and use for
wget, git, svn and configure.
</content>
</entry>
<entry>
<title>project/Makefile.in: workaround issue with out-of-tree builds</title>
<updated>2008-09-26T14:04:08+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2008-09-26T14:04:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=94b3420da9c94c3044faead59f145a99a098c423'/>
<id>urn:sha1:94b3420da9c94c3044faead59f145a99a098c423</id>
<content type='text'>
Other packages might also support Linux-style out of tree builds
with the O=&lt;dir&gt; syntax (E.G. Busybox does). As make automatically
forwards command line variable definitions those packages get very
confused. Fix this by telling make to not do so
</content>
</entry>
<entry>
<title>Makefile: support relative paths for out of tree builds</title>
<updated>2008-09-16T20:53:45+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2008-09-16T20:53:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=e3556c886203636c2339c439ddfda0c0207798cd'/>
<id>urn:sha1:e3556c886203636c2339c439ddfda0c0207798cd</id>
<content type='text'>
And complain if the output directory cannot be created.
</content>
</entry>
<entry>
<title>buildroot: support out-of-tree builds</title>
<updated>2008-08-31T20:23:47+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2008-08-31T20:23:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=0732b8cc840efb5927bc143f5091a1da4c6e0dce'/>
<id>urn:sha1:0732b8cc840efb5927bc143f5091a1da4c6e0dce</id>
<content type='text'>
Add support and documentation for out-of-tree builds with syntax
like the Linux kernel (make O=&lt;dir&gt;).
</content>
</entry>
<entry>
<title>buildroot: add /etc/br-version with version info to target dir</title>
<updated>2008-03-31T19:50:05+00:00</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2008-03-31T19:50:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=bd6561e7813f8d080492bdd7f4c77d306387c918'/>
<id>urn:sha1:bd6561e7813f8d080492bdd7f4c77d306387c918</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix saveconfig followed by menuconfig</title>
<updated>2007-10-30T20:14:12+00:00</updated>
<author>
<name>Ulf Samuelsson</name>
<email>ulf.samuelsson@atmel.com</email>
</author>
<published>2007-10-30T20:14:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.bnewbold.net/buildroot-novena/commit/?id=b20980bd57435a3df8205c16e02ea4177ff6f3cb'/>
<id>urn:sha1:b20980bd57435a3df8205c16e02ea4177ff6f3cb</id>
<content type='text'>
</content>
</entry>
</feed>
