1. 18 Jun, 2006 1 commit
    • Linus Torvalds's avatar
      Linux v2.6.17 · 427abfa2
      Linus Torvalds authored
      Being named "Crazed Snow-Weasel" instills a lot of confidence in this
      release, so I'm sure this will be one of the better ones.
      427abfa2
  2. 06 Jun, 2006 1 commit
  3. 25 May, 2006 1 commit
  4. 11 May, 2006 1 commit
  5. 08 May, 2006 1 commit
  6. 30 Apr, 2006 1 commit
  7. 27 Apr, 2006 1 commit
  8. 19 Apr, 2006 1 commit
  9. 06 Apr, 2006 2 commits
  10. 05 Apr, 2006 1 commit
    • Sam Ravnborg's avatar
      kbuild: fix building single targets with make O=.. single-target · bc2546a6
      Sam Ravnborg authored
      
      This fixes single targets build so it now works relaiably in
      following cases:
      - build with mixed kernel source and output files (make single-target)
      - build with separate output directory (make O=.. single-target)
      - external module with mixed kernel source and output files
        (make M='pwd' single-target)
      - external module with separate kernel source and output files
        (make O=.. M='pwd' single-target)
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      bc2546a6
  11. 03 Apr, 2006 1 commit
  12. 25 Mar, 2006 1 commit
    • Andi Kleen's avatar
      [PATCH] x86_64: Don't define string functions to builtin · 6edfba1b
      Andi Kleen authored
      
      gcc should handle this anyways, and it causes problems when
      sprintf is turned into strcpy by gcc behind our backs and
      the C fallback version of strcpy is actually defining __builtin_strcpy
      
      Then drop -ffreestanding from the main Makefile because it isn't
      needed anymore and implies -fno-builtin, which is wrong now.
      (it was only added for x86-64, so dropping it should be safe)
      
      Noticed by Roman Zippel
      
      Cc: Roman Zippel <zippel@linux-m68k.org>
      Signed-off-by: default avatarAndi Kleen <ak@suse.de>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      6edfba1b
  13. 24 Mar, 2006 1 commit
    • Jan Beulich's avatar
      [PATCH] CONFIG_UNWIND_INFO · 604bf5a2
      Jan Beulich authored
      
      As a foundation for reliable stack unwinding, this adds a config option
      (available to all architectures except IA64 and those where the module
      loader might have problems with the resulting relocations) to enable the
      generation of frame unwind information.
      Signed-off-by: default avatarJan Beulich <jbeulich@novell.com>
      Cc: Miles Bader <uclinux-v850@lsi.nec.co.jp>
      Cc: "Luck, Tony" <tony.luck@intel.com>
      Cc: Ralf Baechle <ralf@linux-mips.org>
      Cc: Kyle McMartin <kyle@mcmartin.ca>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Paul Mundt <lethal@linux-sh.org>,
      Cc: Andi Kleen <ak@muc.de>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      604bf5a2
  14. 21 Mar, 2006 2 commits
  15. 20 Mar, 2006 1 commit
  16. 12 Mar, 2006 1 commit
    • Adrian Bunk's avatar
      Kconfig: remove the CONFIG_CC_ALIGN_* options · 8cab77a2
      Adrian Bunk authored
      
      I don't see any use case for the CONFIG_CC_ALIGN_* options:
      - they are only available if EMBEDDED
      - people using EMBEDDED will most likely also enable
        CC_OPTIMIZE_FOR_SIZE
      - the default for -Os is to disable alignment
      
      In case someone is doing performance comparisons and discovers that the
      default settings gcc chooses aren't good, the only sane thing is to discuss
      whether it makes sense to change this, not through offering options to change
      this locally.
      Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      8cab77a2
  17. 11 Mar, 2006 1 commit
  18. 10 Mar, 2006 1 commit
  19. 08 Mar, 2006 1 commit
  20. 05 Mar, 2006 2 commits
  21. 27 Feb, 2006 1 commit
  22. 22 Feb, 2006 1 commit
  23. 19 Feb, 2006 7 commits
  24. 17 Feb, 2006 1 commit
  25. 15 Feb, 2006 1 commit
  26. 13 Feb, 2006 1 commit
  27. 03 Feb, 2006 1 commit
  28. 21 Jan, 2006 1 commit
    • Sam Ravnborg's avatar
      kbuild: fix build with O=.. · 8c7f75d3
      Sam Ravnborg authored
      
      .kernelrelease was saved in same directory as kernel source also
      with make O=...
      Make sure we kick in the normal logic to shift to the output directory
      when we build .kernelrelease after executing *config.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      ---
      8c7f75d3
  29. 17 Jan, 2006 2 commits
  30. 16 Jan, 2006 1 commit
    • Sam Ravnborg's avatar
      kbuild: fix 'make all install_modules install' · df9df036
      Sam Ravnborg authored
      
      The command 'make all modules_install install' would fail
      in a virgin tree - pointing at a non-existing directory under
      /lib/modules/xxx
      
      KERNELRELEASE is part of MODLIB and we need to create .kernelrelease
      before we can properly evaluate KERNELRELEASE,
      Changing MODLIB to the recursively expanded flavor let it pick up
      the correct KERNELRELEASE value.
      
      Reported by: "Hemmann, Volker Armin" <volker.armin.hemmann@tu-clausthal.de>
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      df9df036