1. 12 12月, 2009 1 次提交
  2. 26 7月, 2008 1 次提交
  3. 20 5月, 2008 1 次提交
  4. 28 4月, 2008 2 次提交
  5. 11 10月, 2007 2 次提交
  6. 17 7月, 2007 1 次提交
  7. 03 5月, 2007 1 次提交
    • S
      kbuild: complain about missing system calls · c53aeca0
      Sam Ravnborg 提交于
      Most system calls seems to get added to i386 first. This patch
      automatically generates a warning for any new system call which is
      implemented on i386 but not the architecture currently being compiled.
      On PowerPC at the moment, for example, it results in these warnings:
      init/missing_syscalls.h:935:3: warning: #warning syscall sync_file_range not implemented
      init/missing_syscalls.h:947:3: warning: #warning syscall getcpu not implemented
      init/missing_syscalls.h:950:3: warning: #warning syscall epoll_pwait not implemented
      
      The file scripts/checksyscalls.sh list a number of legacy system calls
      that are ignored because they only makes sense on i386 systems.
      
      Other contributors to this patch are Russell King <rmk+lkml@arm.linux.org.uk>
      and Stéphane Jourdois <kwisatz@rubis.org>
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      c53aeca0
  8. 25 9月, 2006 1 次提交
    • O
      remove RPM_BUILD_ROOT from asm-offsets.h · 65ff22ee
      Olaf Hering 提交于
      No file in rpm binary package should have the RPM_BUILD_ROOT string in it.
      To simplify building of external modules, our kernel-source package
      contains some temp files from the Kbuild system.  asm/asm-offsets.h is one
      of the files that contains the absolute path if make O=$O is used.
      
        * This file was generated by /var/tmp/kernel-source-2.6.14_rc4-build/usr/src/linux-2.6.14-rc4-2/Kbuild
      
      Remove the $RPM_BUILD_ROOT string in the shipped tempfile.
      Signed-off-by: NOlaf Hering <olh@suse.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      65ff22ee
  9. 05 4月, 2006 1 次提交
  10. 09 1月, 2006 1 次提交
  11. 11 9月, 2005 1 次提交
  12. 10 9月, 2005 2 次提交
    • S
      kbuild: mips use generic asm-offsets.h support · 048eb582
      Sam Ravnborg 提交于
      Removed obsolete stuff from arch makefile.
      mips had a special rule for generating asm-offsets.h so preserved it
      using an architecture specific hook in top-level Kbuild file.
      Renamed .h file to asm-offsets.h
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      048eb582
    • S
      kbuild: full dependency check on asm-offsets.h · 86feeaa8
      Sam Ravnborg 提交于
      Building asm-offsets.h has been moved to a seperate Kbuild file
      located in the top-level directory. This allow us to share the
      functionality across the architectures.
      
      The old rules in architecture specific Makefiles will die
      in subsequent patches.
      
      Furhtermore the usual kbuild dependency tracking is now used
      when deciding to rebuild asm-offsets.s. So we no longer risk
      to fail a rebuild caused by asm-offsets.c dependencies being touched.
      
      With this common rule-set we now force the same name across
      all architectures. Following patches will fix the rest.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      86feeaa8