14 Oct, 2006

1 commit


13 Oct, 2006

1 commit


12 Oct, 2006

1 commit


05 Oct, 2006

1 commit


04 Oct, 2006

1 commit

  • Not all architectures have a file named 'defconfig' (e.g. powerpc).
    However the make TAGS and make tags targets search such files for tags,
    causing an error message when they don't exist. This patch addresses the
    problem by instructing xargs not to run the tags program if there are no
    matching files.

    Signed-off-by: David Gibson
    Cc: Sam Ravnborg
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    David Gibson
     

27 Sep, 2006

1 commit

  • Make checkstack work for UML. We need to pass the underlying architecture
    name, rather than "um" to checkstack.pl.

    Signed-off-by: Jeff Dike
    Acked-by: Matt Mackall
    Cc: Paolo 'Blaisorblade' Giarrusso
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Jeff Dike
     

26 Sep, 2006

1 commit


25 Sep, 2006

13 commits


21 Sep, 2006

1 commit


20 Sep, 2006

1 commit


19 Sep, 2006

1 commit


17 Sep, 2006

1 commit

  • `make headers_check' wants to go and write stuff in /lib/modules, which
    requires root, whic is unfortunate.

    In fact, there's no _particular_ reason for headers_install to put it there
    either -- it can go into a subdirectory of the build tree in both cases.
    It's not intended to go directly into /usr/include, which is why we didn't
    put it there -- and we certainly don't want people screwing around with
    symlinking to it. It's for distributors to take away and do stuff with, so
    leaving it in $(objtree) is fine, even in the headers_install case.

    I picked $(objtree)/usr/include but I have no _particular_ preference
    for that; it just seemed reasonable.

    Signed-off-by: David Woodhouse
    Cc: Sam Ravnborg
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    David Woodhouse
     

13 Sep, 2006

1 commit


04 Sep, 2006

1 commit


28 Aug, 2006

1 commit


17 Aug, 2006

2 commits


08 Aug, 2006

2 commits


07 Aug, 2006

1 commit


01 Aug, 2006

2 commits


30 Jul, 2006

1 commit


16 Jul, 2006

1 commit


06 Jul, 2006

2 commits


05 Jul, 2006

1 commit

  • * git://git.infradead.org/hdrinstall-2.6:
    Remove export of include/linux/isdn/tpam.h
    Remove and from userspace export
    Restrict headers exported to userspace for SPARC and SPARC64
    Add empty Kbuild files for 'make headers_install' in remaining arches.
    Add Kbuild file for Alpha 'make headers_install'
    Add Kbuild file for SPARC 'make headers_install'
    Add Kbuild file for IA64 'make headers_install'
    Add Kbuild file for S390 'make headers_install'
    Add Kbuild file for i386 'make headers_install'
    Add Kbuild file for x86_64 'make headers_install'
    Add Kbuild file for PowerPC 'make headers_install'
    Add generic Kbuild files for 'make headers_install'
    Basic implementation of 'make headers_check'
    Basic implementation of 'make headers_install'

    Linus Torvalds
     

04 Jul, 2006

1 commit

  • include/linux/version.h contained both actual KERNEL version
    and UTS_RELEASE that contains a subset from git SHA1 for when
    kernel was compiled as part of a git repository.
    This had the unfortunate side-effect that all files including version.h
    would be recompiled when some git changes was made due to changes SHA1.
    Split it out so we keep independent parts in separate files.

    Also update checkversion.pl script to no longer check for UTS_RELEASE.

    Signed-off-by: Sam Ravnborg

    Sam Ravnborg