1. 23 Jul, 2008 1 commit
  2. 22 Jul, 2008 5 commits
  3. 21 Jul, 2008 2 commits
  4. 18 Jul, 2008 12 commits
  5. 17 Jul, 2008 1 commit
    • Ugo Riboni's avatar
      Disable kernel auto local versioning · 70409d22
      Ugo Riboni authored
      With this patch, the name of the kernel is always 2.6.23-davinci1
      instead of changing with local changes with names such as
      2.6.23-davinci1-g723849a8-dirty. At the moment we don't need this
      feature and it just create confusion and leave cruft in
      /lib/modules, so it's better to keep it disabled.
      70409d22
  6. 16 Jul, 2008 1 commit
    • 薛德章's avatar
      Fix take a long time on IDE probe. fix bug 4678. · 335e86a7
      薛德章 authored
      Kernel is hanging for a long time on probing the IDE, even
      when there's no hard disk connected. This patch fix a bug,
      Now we can pass parameters to kernel to skip drive probing
      if none exist.
      Summary of ide driver parameters for kernel command line:
      "hdx=noprobe"  : drive may be present, but don't probe for it
      335e86a7
  7. 15 Jul, 2008 4 commits
  8. 14 Jul, 2008 4 commits
  9. 11 Jul, 2008 2 commits
  10. 07 Jul, 2008 1 commit
  11. 04 Jul, 2008 1 commit
  12. 03 Jul, 2008 2 commits
  13. 01 Jul, 2008 3 commits
  14. 30 Jun, 2008 1 commit
    • Ugo Riboni's avatar
      Fix kernel build failure with build-id-supporting binutils · 9523d091
      Ugo Riboni authored
      Patch from upstream, suggested by Koen Kooi <k.kooi@student.utwente.nl>
      Original description below.
      
      Newer versions of binutils support --build-id, which adds an ELF
      note section called ".note.gnu.build-id" to the output.  On the ARM
      kernel build, because there is no explicit mention of this section
      in the shipped ld script, this section is placed at vaddr 0x00000000
      (whereas the normal kernel text/data typically starts at vaddr
      0xc0008000), causing the output of objcopy (Image) to produce a 3G+
      file.
      
      This patch makes objcopy strip the .note.gnu.build-id section from
      the Image file along with all other note sections, which fixes the
      build.
      Signed-off-by: default avatarLennert Buytenhek <buytenh@wantstofly.org>
      Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
      9523d091