An error occurred fetching the project authors.
- 10 Oct, 2002 1 commit
-
-
Linus Torvalds authored
into the proper subdirectory (kernel) where it is used. Drop unused variables.
-
- 05 Oct, 2002 1 commit
-
-
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
-
- 18 Sep, 2002 2 commits
-
-
Kai Germaschewski authored
Of course it's possible to use the standard "built-in.o" in arch/* as well, so do it for i386 - other archs still using O_TARGET are not affected by this change.
-
James Bottomley authored
-
- 03 Sep, 2002 1 commit
-
-
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.
-
- 02 Sep, 2002 1 commit
-
-
Kai Germaschewski authored
Fix various Makefiles to really list the objects which use EXPORT_SYMBOL. Patch by "Lightweight Patch Manager".
-
- 15 Aug, 2002 1 commit
-
-
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.
-
- 27 Jul, 2002 1 commit
-
-
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"
-
- 18 Jun, 2002 1 commit
-
-
Andries E. Brouwer authored
-
- 15 Jun, 2002 1 commit
-
-
James Bottomley authored
-
- 08 Jun, 2002 1 commit
-
-
Linus Torvalds authored
-
- 05 Jun, 2002 2 commits
-
-
Linus Torvalds authored
-
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.
-
- 03 Jun, 2002 1 commit
-
-
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.)
-
- 28 May, 2002 1 commit
-
-
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.
-
- 20 May, 2002 1 commit
-
-
Kai Germaschewski authored
-
- 09 May, 2002 1 commit
-
-
Greg Kroah-Hartman authored
into arch/i386/kernel as they are needed even if CONFIG_PCI is not enabled.
-
- 07 May, 2002 3 commits
-
-
Stephen Rothwell authored
In Rules.make, a comment says: # Old makefiles define their own rules for compiling .S files, # but these standard rules are available for any Makefile that # wants to use them. Our plan is to incrementally convert all # the Makefiles to these standard rules. -- rmk, mec This patch does that for the i386 arch Makefiles.
-
Greg Kroah-Hartman authored
-
Patrick Mochel authored
-
- 15 Apr, 2002 1 commit
-
-
Patrick Mochel authored
-
- 03 Apr, 2002 1 commit
-
-
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.
-
- 15 Mar, 2002 1 commit
-
-
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.
-
- 11 Mar, 2002 1 commit
-
-
James Bottomley authored
- Make hyperthreading a separate config parameter - split out the reboot through bios parameters
-
- 10 Mar, 2002 1 commit
-
-
James Bottomley authored
-
- 07 Mar, 2002 1 commit
-
-
Linus Torvalds authored
-
- 05 Feb, 2002 4 commits
-
-
Linus Torvalds authored
- Dave Jones: more merging, fix up last merge.. - release to sync with Dave
-
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
-
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
-
Linus Torvalds authored
-