<feed xmlns='http://www.w3.org/2005/Atom'>
<title>buildroot.git/Makefile, branch 2010.02_rc1</title>
<subtitle>Buildroot: Making Embedded Linux easy
</subtitle>
<id>https://git.hiegel.fr/cgit/buildroot.git/atom?h=2010.02_rc1</id>
<link rel='self' href='https://git.hiegel.fr/cgit/buildroot.git/atom?h=2010.02_rc1'/>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/'/>
<updated>2010-02-09T15:34:04Z</updated>
<entry>
<title>Makefile: release: use git archive</title>
<updated>2010-02-09T15:34:04Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2010-02-09T15:34:04Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=23ddf460aa6def6b70a694ed5898750fda8d429a'/>
<id>urn:sha1:23ddf460aa6def6b70a694ed5898750fda8d429a</id>
<content type='text'>
Create tarballs with git-archive so we're sure they don't contain
anything not in git (E.G. local backup configs).

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>toolchain/gdb: get rid of another legacy and unused variable</title>
<updated>2010-02-09T10:44:20Z</updated>
<author>
<name>Yann E. MORIN</name>
<email>yann.morin.1998@anciens.enib.fr</email>
</author>
<published>2010-02-08T15:56:08Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=4b7432119521be1339f49794983d28ba3b0b8f86'/>
<id>urn:sha1:4b7432119521be1339f49794983d28ba3b0b8f86</id>
<content type='text'>
BR2_VENDOR_GDB_VERSION and VENDOR_GDB_VERSION are no longer settable.
The only user is gdb, and it's totally useless in this case.

Signed-off-by: Yann E. MORIN &lt;yann.morin.1998@anciens.enib.fr&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>toolchain/gdb: get rid of legacy &amp; unused variables</title>
<updated>2010-02-08T16:03:03Z</updated>
<author>
<name>Yann E. MORIN</name>
<email>yann.morin.1998@anciens.enib.fr</email>
</author>
<published>2010-02-08T15:39:55Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=7dd0591183e4f92b760ec87d8139ec596d78ac27'/>
<id>urn:sha1:7dd0591183e4f92b760ec87d8139ec596d78ac27</id>
<content type='text'>
The BR2_VENDOR_SUFFIX and VENDOR_SUFFIX variables are no longer settable.
The only user is gdb, and is totally useless in this case.

Signed-off-by: Yann E. MORIN &lt;yann.morin.1998@anciens.enib.fr&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Remove backup-files from the TARGET_DIR.</title>
<updated>2009-12-23T10:54:25Z</updated>
<author>
<name>Anders Darander</name>
<email>ad@datarespons.se</email>
</author>
<published>2009-12-23T09:05:45Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=b9656e81a460ddbfc8668b9902a4a6f8b2bc2521'/>
<id>urn:sha1:b9656e81a460ddbfc8668b9902a4a6f8b2bc2521</id>
<content type='text'>
Closes #823.

~ is commonly used as a suffix to editor backup files.
Remove these files, just as we remove CVS-directories and
.empty-files.

[Peter: tweaked to remove in same find invocation as .empty]
Signed-off-by: Anders Darander &lt;ad@datarespons.se&gt;
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Use BR2_TOOLCHAIN_BUILDROOT instead of BR2_TOOLCHAIN_SOURCE</title>
<updated>2009-12-14T22:54:47Z</updated>
<author>
<name>Thomas Petazzoni</name>
<email>thomas.petazzoni@free-electrons.com</email>
</author>
<published>2009-12-14T11:10:12Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=bc994c533cdac1ab843a889c4afaae80234cc6b2'/>
<id>urn:sha1:bc994c533cdac1ab843a889c4afaae80234cc6b2</id>
<content type='text'>
The BR2_TOOLCHAIN_SOURCE option is removed in a future commit.

Signed-off-by: Thomas Petazzoni &lt;thomas.petazzoni@free-electrons.com&gt;
</content>
</entry>
<entry>
<title>Makefile: fix build if CDPATH is set in environment</title>
<updated>2009-12-13T21:58:49Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-12-13T21:58:49Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=f7a501e13ccf76814743ea7a5b46606762505c34'/>
<id>urn:sha1:f7a501e13ccf76814743ea7a5b46606762505c34</id>
<content type='text'>
Reported by Bjørn Forsman &lt;bjorn.forsman@gmail.com&gt;.

If CDPATH is set in the environment, cd &lt;dir&gt; will print the absolute path
of &lt;dir&gt;, causing various trouble (The most critical being BASE_DIR ending
up as &lt;path&gt; &lt;path&gt; which breaks basically everything).

Fix it by clearing CDPATH. Notice that export doesn't affect the environment
of $(shell ..) calls, so explicitly throw away any output from cd in the
BASE_DIR shell call.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Makefile: document configure cache handling</title>
<updated>2009-12-12T07:50:00Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-12-12T07:48:53Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=97c996d6548b1d73bebedb25cee23c2137cb6348'/>
<id>urn:sha1:97c996d6548b1d73bebedb25cee23c2137cb6348</id>
<content type='text'>
Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Makefile: drop config cache on .config changes</title>
<updated>2009-12-11T23:16:33Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-12-11T23:16:33Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=b5972138c3e6912b29578e12cbe4689a2481abcf'/>
<id>urn:sha1:b5972138c3e6912b29578e12cbe4689a2481abcf</id>
<content type='text'>
The config cache might contain invalid values when .config is changed
(E.G. when adding/removing libraries), so drop it so config checks are
rerun for new packages (existing package still won't be rebuilt).

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Makefile: use absolute path for TOPDIR</title>
<updated>2009-11-30T16:31:56Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-11-30T16:29:01Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=6b1dd45bf4c825fe545e7ca278de21e418a6f994'/>
<id>urn:sha1:6b1dd45bf4c825fe545e7ca278de21e418a6f994</id>
<content type='text'>
Reported by mr_claus on IRC.

This ensure DL_DIR is always an absolute path, like it was before the
build dir reorganization - Fixes vim (patch) build.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
<entry>
<title>Makefile: cleanup *clean targets</title>
<updated>2009-11-20T13:34:04Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2009-11-20T13:05:48Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/buildroot.git/commit/?id=406053d5dc2e44b908ce77404c2750ef8b45dc11'/>
<id>urn:sha1:406053d5dc2e44b908ce77404c2750ef8b45dc11</id>
<content type='text'>
As discussed on the list, fixup the *clean targets, so we now have:

clean: remove all generated files (E.G. everything in output/)
distclean: same as clean, but also remove the kconfig build and .config

Also tweak 'make help' output to match. This also merges the two
different clean / distclean targets we had depending on if there was
a .config present or not (most variables are not defined for !.config
case, so E.G. the clean target ends up being a noop).

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
</content>
</entry>
</feed>
