<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/Makefile, branch v3.14</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v3.14</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v3.14'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2014-03-31T03:40:15Z</updated>
<entry>
<title>Linux 3.14</title>
<updated>2014-03-31T03:40:15Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-03-31T03:40:15Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=455c6fdbd219161bd09b1165f11699d6d73de11c'/>
<id>urn:sha1:455c6fdbd219161bd09b1165f11699d6d73de11c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 3.14-rc8</title>
<updated>2014-03-25T02:31:17Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-03-25T02:31:17Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=b098d6726bbfb94c06d6e1097466187afddae61f'/>
<id>urn:sha1:b098d6726bbfb94c06d6e1097466187afddae61f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 3.14-rc7</title>
<updated>2014-03-17T01:51:24Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-03-17T01:51:24Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=dcb99fd9b08cfe1afe426af4d8d3cbc429190f15'/>
<id>urn:sha1:dcb99fd9b08cfe1afe426af4d8d3cbc429190f15</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 3.14-rc6</title>
<updated>2014-03-10T02:41:57Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-03-10T02:41:57Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=fa389e220254c69ffae0d403eac4146171062d08'/>
<id>urn:sha1:fa389e220254c69ffae0d403eac4146171062d08</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 3.14-rc5</title>
<updated>2014-03-03T02:56:16Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-03-03T02:56:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=0414855fdc4a40da05221fc6062cccbc0c30f169'/>
<id>urn:sha1:0414855fdc4a40da05221fc6062cccbc0c30f169</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Makefile: fix build with make 3.80 again</title>
<updated>2014-02-25T23:25:47Z</updated>
<author>
<name>Jan Beulich</name>
<email>JBeulich@suse.com</email>
</author>
<published>2014-02-25T23:01:48Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=6c15b327ccbdce45878d4689f4d938f29dd309db'/>
<id>urn:sha1:6c15b327ccbdce45878d4689f4d938f29dd309db</id>
<content type='text'>
According to Documentation/Changes, make 3.80 is still being supported
for building the kernel, hence make files must not make (unconditional)
use of features introduced only in newer versions.  Commit 8779657d29c0
("stackprotector: Introduce CONFIG_CC_STACKPROTECTOR_STRONG") however
introduced an "else ifdef" construct which make 3.80 doesn't understand.

Also correct a warning message still referencing the old config option
name.

Apart from that I question the use of "ifdef" here (but it was used that
way already prior to said commit): ifeq (,y) would seem more to the
point.

Signed-off-by: Jan Beulich &lt;jbeulich@suse.com&gt;
Acked-by: Kees Cook &lt;keescook@chromium.org&gt;
Cc: Ingo Molnar &lt;mingo@kernel.org&gt;
Cc: Michal Marek &lt;mmarek@suse.cz&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>Makefile: fix extra parenthesis typo when CC_STACKPROTECTOR_REGULAR is enabled</title>
<updated>2014-02-25T23:25:45Z</updated>
<author>
<name>Fathi Boudra</name>
<email>fathi.boudra@linaro.org</email>
</author>
<published>2014-02-25T23:01:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=27b2a49a1493f5199a4c2f84abc6aebf81184e2b'/>
<id>urn:sha1:27b2a49a1493f5199a4c2f84abc6aebf81184e2b</id>
<content type='text'>
An extra parenthesis typo introduced in 19952a92037e ("stackprotector:
Unify the HAVE_CC_STACKPROTECTOR logic between architectures") is
causing the following error when CONFIG_CC_STACKPROTECTOR_REGULAR is
enabled:

  Makefile:608: Cannot use CONFIG_CC_STACKPROTECTOR: -fstack-protector not supported by compiler
  Makefile:608: *** missing separator.  Stop.

Signed-off-by: Fathi Boudra &lt;fathi.boudra@linaro.org&gt;
Acked-by: Kees Cook &lt;keescook@chromium.org&gt;
Cc: &lt;stable@vger.kernel.org&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>Linux 3.14-rc4</title>
<updated>2014-02-24T01:40:03Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-02-24T01:40:03Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=cfbf8d4857c26a8a307fb7cd258074c9dcd8c691'/>
<id>urn:sha1:cfbf8d4857c26a8a307fb7cd258074c9dcd8c691</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 3.14-rc3</title>
<updated>2014-02-16T21:30:25Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-02-16T21:30:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=6d0abeca3242a88cab8232e4acd7e2bf088f3bc2'/>
<id>urn:sha1:6d0abeca3242a88cab8232e4acd7e2bf088f3bc2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 3.14-rc2</title>
<updated>2014-02-10T02:15:47Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2014-02-10T02:15:47Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=b28a960c42fcd9cfc987441fa6d1c1a471f0f9ed'/>
<id>urn:sha1:b28a960c42fcd9cfc987441fa6d1c1a471f0f9ed</id>
<content type='text'>
</content>
</entry>
</feed>
