1. 28 10月, 2013 1 次提交
  2. 20 10月, 2013 1 次提交
  3. 14 10月, 2013 1 次提交
  4. 07 10月, 2013 1 次提交
  5. 30 9月, 2013 1 次提交
  6. 24 9月, 2013 1 次提交
  7. 17 9月, 2013 1 次提交
  8. 12 9月, 2013 1 次提交
    • L
      Bye, bye, WfW flag · d5d04bb4
      Linus Torvalds 提交于
      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: NLinus Torvalds <torvalds@linux-foundation.org>
      d5d04bb4
  9. 03 9月, 2013 1 次提交
  10. 28 8月, 2013 1 次提交
  11. 26 8月, 2013 1 次提交
  12. 19 8月, 2013 1 次提交
  13. 12 8月, 2013 1 次提交
  14. 05 8月, 2013 1 次提交
  15. 29 7月, 2013 1 次提交
  16. 22 7月, 2013 1 次提交
  17. 15 7月, 2013 1 次提交
  18. 11 7月, 2013 1 次提交
    • L
      Revert "Makefile: Fix install error with make -j option" · 6d128e1e
      Linus Torvalds 提交于
      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: NLinus Torvalds <torvalds@linux-foundation.org>
      6d128e1e
  19. 03 7月, 2013 1 次提交
  20. 01 7月, 2013 1 次提交
  21. 28 6月, 2013 1 次提交
  22. 24 6月, 2013 1 次提交
    • M
      kbuild: fix error when building from src rpm · c398ff00
      Mike Marciniszyn 提交于
      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: NMike Marciniszyn <mike.marciniszyn@intel.com>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      c398ff00
  23. 23 6月, 2013 1 次提交
  24. 16 6月, 2013 1 次提交
  25. 09 6月, 2013 1 次提交
  26. 02 6月, 2013 1 次提交
  27. 27 5月, 2013 1 次提交
  28. 21 5月, 2013 1 次提交
  29. 12 5月, 2013 1 次提交
  30. 29 4月, 2013 2 次提交
    • A
      Turn off -Wmaybe-uninitialized when building with -Os · e74fc973
      Arnd Bergmann 提交于
      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: NArnd Bergmann <arnd@arndb.de>
      e74fc973
    • L
      Linux 3.9 · c1be5a5b
      Linus Torvalds 提交于
      c1be5a5b
  31. 22 4月, 2013 1 次提交
  32. 18 4月, 2013 1 次提交
    • M
      rpm-pkg: Do not package the whole source directory · 6615d6c3
      Michal Marek 提交于
      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: NMichal Marek <mmarek@suse.cz>
      6615d6c3
  33. 15 4月, 2013 1 次提交
  34. 10 4月, 2013 1 次提交
  35. 08 4月, 2013 1 次提交
  36. 01 4月, 2013 1 次提交
  37. 24 3月, 2013 1 次提交
  38. 18 3月, 2013 1 次提交
  39. 16 3月, 2013 1 次提交