1. 26 7月, 2008 1 次提交
  2. 23 7月, 2008 1 次提交
    • M
      markers: fix duplicate modpost entry · d35cb360
      Mathieu Desnoyers 提交于
      When a kernel was rebuilt, the previous Module.markers was not cleared.
      It caused markers with different format strings to appear as duplicates
      when a markers was changed.  This problem is present since
      scripts/mod/modpost.c started to generate Module.markers, commit
      b2e3e658
      
      It therefore applies to 2.6.25, 2.6.26 and linux-next.
      
      I merely merged the patches from Roland, Wenji and Takashi here.
      
      Credits to
      Roland McGrath <roland@redhat.com>
      Wenji Huang <wenji.huang@oracle.com>
      and
      Takashi Nishiie <t-nishiie@np.css.fujitsu.com>
      
      for providing the individual fixes.
      
      - Changelog :
        - Integrated Takashi's Makefile modification to clear Module.markers upon
          make clean.
      Signed-off-by: NMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
      Cc: Roland McGrath <roland@redhat.com>
      Cc: Wenji Huang <wenji.huang@oracle.com>
      Cc: Takashi Nishiie <t-nishiie@np.css.fujitsu.com>
      Cc: <stable@kernel.org>		[2.6.25.x, 2.6.26.x]
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      d35cb360
  3. 18 7月, 2008 1 次提交
  4. 17 7月, 2008 1 次提交
    • R
      Fix MIPS cross-compile problem · bef5b54b
      Ralf Baechle 提交于
      Crosscompiling on a Fedora 9 machine running gcc 4.3.0 as its host compiler
      and gcc 3.4.6 for the mips-linux target results in the following build
      error:
      
      $ make malta_defconfig
      $ make
      cc1: error: unrecognized command line option "-fno-stack-protector"
      scripts/kconfig/conf -s arch/mips/Kconfig
      cc1: error: unrecognized command line option "-fno-stack-protector"
      
      The arch Makefile is included too late so the host compiler is feature
      tested, not the crosscompiler as intended and thus the Makefile applies
      adds -fno-stack-protector to crosscompiler's flags which fails for gcc
      3.4.6.  The bug was introduced by e06b8b98
      in 2.6.25; 35bb5b1e did add more flags
      testing before the arch Makefile inclusion.
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      bef5b54b
  5. 14 7月, 2008 1 次提交
  6. 13 7月, 2008 1 次提交
  7. 10 7月, 2008 2 次提交
  8. 06 7月, 2008 1 次提交
  9. 25 6月, 2008 1 次提交
  10. 21 6月, 2008 1 次提交
  11. 13 6月, 2008 1 次提交
  12. 05 6月, 2008 1 次提交
  13. 27 5月, 2008 1 次提交
  14. 24 5月, 2008 1 次提交
  15. 20 5月, 2008 1 次提交
  16. 19 5月, 2008 1 次提交
  17. 12 5月, 2008 1 次提交
  18. 11 5月, 2008 1 次提交
  19. 04 5月, 2008 1 次提交
  20. 02 5月, 2008 1 次提交
  21. 29 4月, 2008 2 次提交
  22. 26 4月, 2008 3 次提交
  23. 25 4月, 2008 1 次提交
  24. 24 4月, 2008 1 次提交
  25. 22 4月, 2008 1 次提交
  26. 17 4月, 2008 1 次提交
  27. 12 4月, 2008 1 次提交
  28. 02 4月, 2008 1 次提交
  29. 26 3月, 2008 1 次提交
  30. 24 3月, 2008 1 次提交
  31. 17 3月, 2008 1 次提交
  32. 10 3月, 2008 1 次提交
  33. 05 3月, 2008 1 次提交
  34. 25 2月, 2008 1 次提交
  35. 16 2月, 2008 1 次提交
  36. 15 2月, 2008 1 次提交
    • S
      kbuild: fix building vmlinux.o · cf87dcd1
      Sam Ravnborg 提交于
      Ingo Molnar wrote:
      >
      > i've got a build log from a weird build error below:
      >
      >   LD      init/built-in.o
      > distcc[12023] ERROR: compile (null) on localhost failed
      > make: *** [vmlinux.o] Error 1
      > make: *** Waiting for unfinished jobs....
      >   LD      .tmp_vmlinux1
      >
      
      Building vmlinux.o were moved up in the dependency chain so we started
      to build it before the kallsym stuff. This was done to let modpost
      report section mismatch bugs even when the final link failed.
      
      Originally I had expected the dependency of $(kallsyms.o) to
      cover this but it turns out that we need to be even more explicit.
      Fix this by adding a conditional dependency on firat target
      used in the kallsyms serie of builds.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Roland McGrath <roland@redhat.com>
      cf87dcd1