<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/Makefile, branch v3.16-rc5</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/Makefile?h=v3.16-rc5</id>
<link rel='self' href='https://git.amat.us/linux/atom/Makefile?h=v3.16-rc5'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2014-07-13T21:04:33Z</updated>
<entry>
<title>Linux 3.16-rc5</title>
<updated>2014-07-13T21:04:33Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-07-13T21:04:33Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=1795cd9b3a91d4b5473c97f491d63892442212ab'/>
<id>urn:sha1:1795cd9b3a91d4b5473c97f491d63892442212ab</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild</title>
<updated>2014-07-11T01:40:47Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-07-11T01:40:47Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=fe5aa8a65bab2548aa7282d331edc690dd7da1af'/>
<id>urn:sha1:fe5aa8a65bab2548aa7282d331edc690dd7da1af</id>
<content type='text'>
Pull kbuild fixes from Michal Marek:
 "Three more fixes for the relative build dir feature:

   - Shut up make -s again
   - Fix for rpm/deb/tar-pkg with O=&lt;subdir&gt;
   - Fix for CONFIG_EXTRA_FIRMWARE"

* 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
  firmware: Create directories for external firmware
  kbuild: Fix packaging targets with relative $(srctree)
  kbuild: Do not print the build directory with make -s
</content>
</entry>
<entry>
<title>Linux 3.16-rc4</title>
<updated>2014-07-06T19:37:51Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-07-06T19:37:51Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=cd3de83f147601356395b57a8673e9c5ff1e59d1'/>
<id>urn:sha1:cd3de83f147601356395b57a8673e9c5ff1e59d1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>kbuild: Fix packaging targets with relative $(srctree)</title>
<updated>2014-07-04T20:58:55Z</updated>
<author>
<name>Michal Marek</name>
<email>mmarek@suse.cz</email>
</author>
<published>2014-07-04T20:53:52Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=c79624c1a698a82747b1e6fe54cc7effa4c07aa5'/>
<id>urn:sha1:c79624c1a698a82747b1e6fe54cc7effa4c07aa5</id>
<content type='text'>
All other users of Makefile.build set $(obj) to the name of the
subdirectory to build. Do the same for the packaging targets, otherwise
the build fails if $(srctree) is a relative directory:

    $ make O=build tar-pkg
    make[1]: Entering directory `/home/mmarek/linux-2.6/build'
      CHK     include/config/kernel.release
    ../scripts/Makefile.build:44: ../../scripts/package/Makefile: No such file or directory
    make[2]: *** No rule to make target `../../scripts/package/Makefile'.  Stop.

Fixes: 9da0763b ("kbuild: Use relative path when building in a subdir of the source tree")
Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>kbuild: Do not print the build directory with make -s</title>
<updated>2014-07-04T12:33:33Z</updated>
<author>
<name>Michal Marek</name>
<email>mmarek@suse.cz</email>
</author>
<published>2014-07-04T12:29:30Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=066b7ed9558087a7957a1128f27d7a3462ff117f'/>
<id>urn:sha1:066b7ed9558087a7957a1128f27d7a3462ff117f</id>
<content type='text'>
Commit c2e28dc9 (kbuild: Print the name of the build directory) prints
the name of the build directory for O= builds, but we should not be
doing this in make -s mode, so that commands like

  make -s O=&lt;dir&gt; kernelrelease

can be used by scripts. This matches the behavior of make itself, where
the -s option implies --no-print-directory.

Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>Merge branch 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild</title>
<updated>2014-07-04T01:34:00Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-07-04T01:34:00Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=af6f157a4b4f511d06d564086cb3516bb164b7c6'/>
<id>urn:sha1:af6f157a4b4f511d06d564086cb3516bb164b7c6</id>
<content type='text'>
Pull kbuild fix from Michal Marek:
 "There is one more fix for the relative paths series from -rc1: Print
  the path to the build directory at the start of the build, so that
  editors and IDEs can match the relative paths to source files"

* 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
  kbuild: Print the name of the build directory
</content>
</entry>
<entry>
<title>kbuild: Print the name of the build directory</title>
<updated>2014-07-03T13:25:11Z</updated>
<author>
<name>Michal Marek</name>
<email>mmarek@suse.cz</email>
</author>
<published>2014-07-02T12:28:26Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=c2e28dc975ea87feed84415006ae143424912ac7'/>
<id>urn:sha1:c2e28dc975ea87feed84415006ae143424912ac7</id>
<content type='text'>
With commit 9da0763b (kbuild: Use relative path when building in a
subdir of the source tree), the compiler messages include relative
paths. These are however relative to the build directory, not the
directory where make was started. Print the "Entering directory ..."
message once, so that IDEs/editors can find the source files.

Acked-by: David Howells &lt;dhowells@redhat.com&gt;
Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
</content>
</entry>
<entry>
<title>Linux 3.16-rc3</title>
<updated>2014-06-29T21:11:36Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-06-29T21:11:36Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=4c834452aad01531db949414f94f817a86348d59'/>
<id>urn:sha1:4c834452aad01531db949414f94f817a86348d59</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 3.16-rc2</title>
<updated>2014-06-22T05:02:54Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-06-22T05:02:54Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee'/>
<id>urn:sha1:a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 3.16-rc1</title>
<updated>2014-06-16T03:45:28Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-06-16T03:45:28Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=7171511eaec5bf23fb06078f59784a3a0626b38f'/>
<id>urn:sha1:7171511eaec5bf23fb06078f59784a3a0626b38f</id>
<content type='text'>
</content>
</entry>
</feed>
