Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'parisc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6

Pull PARISC fixes from James Bottomley:
"This is a set of three bug fixes for minor build breakages that got
introduced just before 3.5-rc1 was released."

* tag 'parisc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6:
[PARISC] fix code to find libgcc
[PARISC] fix compile break in use of lib/strncopy_from_user.c
[PARISC] fix missing TAINT_WARN problem

+5 -1
+2 -1
arch/parisc/Makefile
··· 21 21 22 22 NM = sh $(srctree)/arch/parisc/nm 23 23 CHECKFLAGS += -D__hppa__=1 24 + LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) 24 25 25 26 MACHINE := $(shell uname -m) 26 27 ifeq ($(MACHINE),parisc*) ··· 80 79 kernel-$(CONFIG_HPUX) += hpux/ 81 80 82 81 core-y += $(addprefix arch/parisc/, $(kernel-y)) 83 - libs-y += arch/parisc/lib/ `$(CC) -print-libgcc-file-name` 82 + libs-y += arch/parisc/lib/ $(LIBGCC) 84 83 85 84 drivers-$(CONFIG_OPROFILE) += arch/parisc/oprofile/ 86 85
+1
arch/parisc/include/asm/Kbuild
··· 1 1 include include/asm-generic/Kbuild.asm 2 2 3 3 header-y += pdc.h 4 + generic-y += word-at-a-time.h
+2
arch/parisc/include/asm/bug.h
··· 1 1 #ifndef _PARISC_BUG_H 2 2 #define _PARISC_BUG_H 3 3 4 + #include <linux/kernel.h> /* for BUGFLAG_TAINT */ 5 + 4 6 /* 5 7 * Tell the user there is some problem. 6 8 * The offending file and line are encoded in the __bug_table section.