- Nov 03, 2013
-
-
Linus Torvalds authored
-
- Oct 27, 2013
-
-
Linus Torvalds authored
-
- Oct 19, 2013
-
-
Linus Torvalds authored
-
- Oct 13, 2013
-
-
Linus Torvalds authored
-
- Oct 06, 2013
-
-
Linus Torvalds authored
-
- Sep 29, 2013
-
-
Linus Torvalds authored
-
- Sep 23, 2013
-
-
Linus Torvalds authored
-
- Sep 16, 2013
-
-
Linus Torvalds authored
-
- Sep 12, 2013
-
-
Linus Torvalds authored
This reverts the Linux for Workgroups thing. And no, before somebody asks, we're not doing Linux95. Not for a few years, at least. Sure, the flag added some color to the logo, and could have remained as a testament to my leet gimp skills. But no. And I'll do this early, to avoid the chance of forgetting when I'm doing the actual rc1 release on the road. Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org>
-
- Sep 02, 2013
-
-
Linus Torvalds authored
-
- Aug 28, 2013
-
-
Michal Marek authored
Use filechk to detect if the content changed or not. Signed-off-by:
Michal Marek <mmarek@suse.cz>
-
- Aug 26, 2013
-
-
Linus Torvalds authored
-
- Aug 18, 2013
-
-
Linus Torvalds authored
-
- Aug 12, 2013
-
-
Linus Torvalds authored
-
- Aug 04, 2013
-
-
Linus Torvalds authored
-
- Jul 29, 2013
-
-
Linus Torvalds authored
-
- Jul 21, 2013
-
-
Linus Torvalds authored
-
- Jul 14, 2013
-
-
Linus Torvalds authored
-
- Jul 11, 2013
-
-
Linus Torvalds authored
This reverts commit d2aae847. It is completely and utterly broken. Module install should not build any files, and adding broken dependencies to "help" it build files is complete and utter sh*t. The kernel should not be built by root, and "make install" and "make module_install" (that for obvious reasons need to be run as root) absolutely must not build any files. They should only ever copy the already-built files over. So having dependencies for the install targets is wrong, wrong, wrong. If you try to install a kernel without building it first, you *should* get errors. The build system shouldn't try to help root build the files. Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org>
-
- Jul 03, 2013
-
-
Robert Richter authored
Make modules_install fails with -j option: DEPMOD Usage: .../.source/linux/scripts/depmod.sh /sbin/depmod <kernelrelease> make[1]: *** [_modinst_post] Error 1 Adding kernelrelease dependency to fix this. Signed-off-by:
Robert Richter <robert.richter@calxeda.com> Cc: <stable@vger.kernel.org> Signed-off-by:
Michal Marek <mmarek@suse.cz>
-
- Jun 30, 2013
-
-
Linus Torvalds authored
-
- Jun 28, 2013
-
-
Geert Uytterhoeven authored
Signed-off-by:
Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by:
Jiri Kosina <jkosina@suse.cz>
-
- Jun 24, 2013
-
-
Mike Marciniszyn authored
The following issue can be reproduced with Linus' tree on an x86_64 server. >+ cp /home/user/rpmbuild-test/BUILDROOT/kernel-3.9.2.x86_64/boot/vmlinuz-3.9.2 >cp: missing destination file operand after >/home/user/rpmbuild-test/BUILDROOT/kernel-3.9.2-1.x86_64/boot/vmlinuz-3.9.2' >Try `cp --help' for more information. >error: Bad exit status from /var/tmp/rpm-tmp.R4o0iI (%install) Here are the commands to reproduce: make defconfig make rpm-pkg Use the resulting src rpm to build as follows: mkdir ~/rpmbuild-test cd ~/rpmbuild-test rpmbuild --rebuild --define "_topdir `pwd`" -vv ~/rpmbuild/SRPMS/kernel-3.10.0_rc1+-1.src.rpm The issue is because the %install script uses $KBUILD_IMAGE and it hasn't been set since it is only available in the kbuild system and not in the %install script. This patch adds a Makefile target to emit the image_name that can be used and modifies the mkspec to use the dynamic name in %install. Signed-off-by:
Mike Marciniszyn <mike.marciniszyn@intel.com> Signed-off-by:
Michal Marek <mmarek@suse.cz>
-
- Jun 22, 2013
-
-
Linus Torvalds authored
-
- Jun 15, 2013
-
-
Linus Torvalds authored
-
- Jun 09, 2013
-
-
Linus Torvalds authored
-
- Jun 02, 2013
-
-
Linus Torvalds authored
-
- May 26, 2013
-
-
Linus Torvalds authored
-
- May 20, 2013
-
-
Linus Torvalds authored
-
- May 12, 2013
-
-
Linus Torvalds authored
-
- Apr 29, 2013
-
-
Arnd Bergmann authored
gcc-4.7 and higher add a lot of false positive warnings about potential uses of uninitialized warnings, but only when optimizing for size (-Os). This is the default when building allyesconfig, which turns on CONFIG_CC_OPTIMIZE_FOR_SIZE. In order to avoid getting a lot of patches that initialize such variables and accidentally hide real errors along the way, let's just turn off this warning on the respective gcc versions when building with size optimizations. The -Wmaybe-uninitialized option was introduced in the same gcc version (4.7) that is now causing the false positives, so there is no effect on older compilers. A side effect is that when building with CONFIG_CC_OPTIMIZE_FOR_SIZE, we might now see /fewer/ warnings about possibly uninitialized warnings than with -O2, but that is still much better than seeing warnings known to be bogus. Signed-off-by:
Arnd Bergmann <arnd@arndb.de>
-
Linus Torvalds authored
-
- Apr 21, 2013
-
-
Linus Torvalds authored
-
- Apr 18, 2013
-
-
Michal Marek authored
The source tree can contain lots of uninteresting data like tag or cscope files, packaging which slows down make rpm needlessly. It can also break the build, if the tree contains an unrelated file named *.spec. The downside of this change is that new subdirectories have to be added to the KBUILD_ALLDIRS variable in the top-level Makefile. The upside is that the behavior is more predictable. Signed-off-by:
Michal Marek <mmarek@suse.cz>
-
- Apr 15, 2013
-
-
Linus Torvalds authored
-
- Apr 10, 2013
-
-
Andreas Schwab authored
The headers are now needed inside scripts/mod since 6543becf ("mod/file2alias: make modalias generation safe for cross compiling"). Reported-and-tested-by:
Lad, Prabhakar <prabhakar.csengg@gmail.com> Reported-and-tested-by:
"Jon Medhurst (Tixy)" <tixy@linaro.org> Signed-off-by:
Andreas Schwab <schwab@linux-m68k.org> Signed-off-by:
Michal Marek <mmarek@suse.cz>
-
- Apr 08, 2013
-
-
Linus Torvalds authored
-
- Mar 31, 2013
-
-
Linus Torvalds authored
-
- Mar 23, 2013
-
-
Linus Torvalds authored
-
- Mar 17, 2013
-
-
Linus Torvalds authored
-