An error occurred fetching the project authors.
  1. 10 Oct, 2002 1 commit
  2. 05 Oct, 2002 1 commit
    • Christer Weinigel's avatar
      [PATCH] Updated NatSemi SCx200 patches for Linux-2.5 · 3900abd5
      Christer Weinigel authored
      This patch adds support for the National Semiconductor SCx200
      processor family to Linux 2.5.
      
      The patch consists of the following drivers:
      
        arch/i386/kernel/scx200.c -- give kernel access to the GPIO pins
      
        drivers/chars/scx200_gpio.c -- give userspace access to the GPIO pins
        drivers/chars/scx200_wdt.c -- watchdog timer driver
      
        drivers/i2c/scx200_i2c.c -- use any two GPIO pins as an I2C bus
        drivers/i2c/scx200_acb.c -- driver for the Access.BUS hardware
      
        drivers/mtd/maps/scx200_docflash.c -- driver for a CFI flash connected
                                            to the DOCCS pin
      3900abd5
  3. 18 Sep, 2002 2 commits
  4. 03 Sep, 2002 1 commit
    • Andrew Morton's avatar
      [PATCH] discontigmem support for ia32 NUMA · 0d0bdc8e
      Andrew Morton authored
       - All the support macros which assume a linear mem_map[] have been
         wrapped in !CONFIG_DISCONTIGMEM.  pfn_to_page, page_to_pfn,
         page_to_phys, pmd_page, kern_addr_valid.
      
       - Move some initialsation macros into setup.h so they can be used in
         the i386 discontig.c (INITRD_START, INITRD_SIZE).
      
       - Alternate version of the bootmem allocator
      
       - add i386 discontig support and numaq support.
      0d0bdc8e
  5. 02 Sep, 2002 1 commit
  6. 15 Aug, 2002 1 commit
    • Dave Jones's avatar
      [PATCH] Modular x86 MTRR driver. · 6a85ced0
      Dave Jones authored
      This patch from Pat Mochel cleans up the hell that was mtrr.c
      into something a lot more modular and easy to understand, by
      doing the implementation-per-file as has been done to various
      other things by Pat and myself over the last months.
      
      It's functionally identical from a kernel internal point of view,
      and a userspace point of view, and is basically just a very large
      code clean up.
      6a85ced0
  7. 27 Jul, 2002 1 commit
    • Kai Germaschewski's avatar
      kbuild: Fix "export-objs" · b9a898b8
      Kai Germaschewski authored
      This patch cleans up most of the Makefile's to list the correct files
      (i.e. the ones which do have "EXPORT_SYMBOL" in them) in $(export-objs)
      
      Contributed by "Lightweight patch manager"
      b9a898b8
  8. 18 Jun, 2002 1 commit
  9. 15 Jun, 2002 1 commit
  10. 08 Jun, 2002 1 commit
  11. 05 Jun, 2002 2 commits
    • Linus Torvalds's avatar
      658c7479
    • Dave Jones's avatar
      [PATCH] large x86 setup cleanup. · 9fc4eb64
      Dave Jones authored
      Patrick Mochel did a great job here at splitting up some of the larger
      messy parts of arch/i386/kernel/setup.c, and introduced a nice abstraction
      which gives us a much nicer way to ensure we can add workarounds for vendor
      specific bugs / features without polluting other vendor code paths.
      
      Mark Haverkamp also brought this up to date for merging in my tree circa
      2.5.14, and asides from 1-2 now fixed small thinkos, there haven't been
      any problems.
      
      This also features a workaround for an errata item on stepping C0 of
      the Intel Pentium 4 Xeon, which isn't in your tree yet, where we must
      disable the hardware prefetcher to ensure sane operation.
      9fc4eb64
  12. 03 Jun, 2002 1 commit
    • Pavel Machek's avatar
      [PATCH] Fix suspend-to-RAM in 2.5.20 · 14f54697
      Pavel Machek authored
      I created arch/i386/suspend.c not to clash with ACPI people so much in
      future. (More stuff is going to move into it in the future, to clean
      up functions that really do not belong to the headers.)
      14f54697
  13. 28 May, 2002 1 commit
    • Kai Germaschewski's avatar
      kbuild: Add EXTRA_TARGETS variable · 36a805ed
      Kai Germaschewski authored
      99% of the Makefiles are very simple target-wise:
      
      o build modules as listed in $(obj-m) and 
      o build $(L_TARGET)/$(O_TARGET) as a composite object containing $(obj-y)
      
      However, there is one exception: typically arch/$ARCH/kernel Makefile
      wants the same as above, plus
      o build init_task.o, head.o, using the standard rules for built-in
        targets - i.e. they are supposed to be built in the same way as all
        the other targets listed in $(obj-y), but they should not be linked
        into arch/$ARCH/kernel/$(O_TARGET). Instead they'll be linked in
        directly in the final vmlinux link.
      
      Currently this is achieved by overriding Rules.make's first_rule in 
      arch/$ARCH/kernel/Makefile. This rather ad-hoc way relies on the knowing
      how Rules.make works internally and at the same time does things behind
      Rules.make's back. 
      
      To clean this up, I'm introducing a new variable, supposed to be only
      used in arch/$ARCH/kernel/Makefile:
      
      $(EXTRA_TARGETS) can be used to declare additional objects which shall
      be built in the current directory (using the flags for built-in objects),
      but not linked into $(O_TARGET)/$(L_TARGET)
      
      This patch only converts arch/i386/kernel/Makefile at this time, other
      archs work the same way as before.
      
      Apart from this, this patch also removes some "unexport ..." statements,
      which are unnecessary since not exporting variables is the default and
      renames the internal "all_targets" to "vmlinux", since it's actually
      need for building vmlinux.
      36a805ed
  14. 20 May, 2002 1 commit
  15. 09 May, 2002 1 commit
  16. 07 May, 2002 3 commits
  17. 15 Apr, 2002 1 commit
  18. 03 Apr, 2002 1 commit
    • Dave Jones's avatar
      [PATCH] Simple boot flag specification support. · 94a0b03c
      Dave Jones authored
      Originally by Alan. It was in the 2.4-ac tree for ages, much tweaked
      by myself and Thomas Hood. Its main purpose is for skipping the full
      memory test and other time-wasting diagnostics on reboot.
      94a0b03c
  19. 15 Mar, 2002 1 commit
    • Andy Grover's avatar
      [PATCH] ACPI patch 4/9 · 3177bcb8
      Andy Grover authored
      This is the config.in and makefile changes for the latest code. The most
      (only) interesting thing probably is ACPI is no longer flagged experimental.
      3177bcb8
  20. 11 Mar, 2002 1 commit
    • James Bottomley's avatar
      More x86 arch splits · 3736e29e
      James Bottomley authored
      - Make hyperthreading a separate config parameter
      - split out the reboot through bios parameters
      3736e29e
  21. 10 Mar, 2002 1 commit
  22. 07 Mar, 2002 1 commit
  23. 05 Feb, 2002 4 commits
    • Linus Torvalds's avatar
      v2.5.1.4 -> v2.5.1.5 · ba6edf53
      Linus Torvalds authored
      - Dave Jones: more merging, fix up last merge..
      - release to sync with Dave
      ba6edf53
    • Linus Torvalds's avatar
      v2.4.14.1 -> v2.4.14.2 · a8a2069f
      Linus Torvalds authored
        - Ivan Kokshaysky: fix alpha dec_and_lock with modules, for alpha config entry
        - Kai Germaschewski: ISDN updates
        - Jeff Garzik: network driver updates, sysv fs update
        - Kai Mäkisara: SCSI tape update
        - Alan Cox: large drivers merge
        - Nikita Danilov: reiserfs procfs information
        - Andrew Morton: ext3 merge
        - Christoph Hellwig: vxfs livelock fix
        - Trond Myklebust: NFS updates
        - Jens Axboe: cpqarray + cciss dequeue fix
        - Tim Waugh: parport_serial base_baud setting
        - Matthew Dharm: usb-storage Freecom driver fixes
        - Dave McCracken: wait4() thread group race fix
      a8a2069f
    • Linus Torvalds's avatar
      v2.4.9.11 -> v2.4.9.12 · dfc52b82
      Linus Torvalds authored
        - Alan Cox: much more merging
        - Pete Zaitcev: ymfpci race fixes
        - Andrea Arkangeli: VM race fix and OOM tweak.
        - Arjan Van de Ven: merge RH kernel fixes
        - Andi Kleen: use more readable 'likely()/unlikely()' instead of __builtin_expect()
        - Keith Owens: fix 64-bit ELF types
        - Gerd Knorr: mark more broken PCI bridges, update btaudio driver
        - Paul Mackerras: powermac driver update
        - me: clean up PTRACE_DETACH to use common infrastructure
      dfc52b82
    • Linus Torvalds's avatar
      Import changeset · 7a2deb32
      Linus Torvalds authored
      7a2deb32