You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(66) |
Jul
(16) |
Aug
(2) |
Sep
(7) |
Oct
(17) |
Nov
(1) |
Dec
(220) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(154) |
Feb
(167) |
Mar
(159) |
Apr
(172) |
May
(35) |
Jun
(58) |
Jul
(97) |
Aug
(285) |
Sep
(139) |
Oct
(252) |
Nov
(8) |
Dec
(3) |
| 2004 |
Jan
(13) |
Feb
(159) |
Mar
(136) |
Apr
(33) |
May
(50) |
Jun
(42) |
Jul
(140) |
Aug
(42) |
Sep
(199) |
Oct
(31) |
Nov
(55) |
Dec
|
| 2005 |
Jan
|
Feb
(12) |
Mar
(214) |
Apr
(119) |
May
(21) |
Jun
(2) |
Jul
(127) |
Aug
(10) |
Sep
(3) |
Oct
(24) |
Nov
(1) |
Dec
|
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
(45) |
May
(13) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(26) |
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(35) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:34
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16524 Modified Files: Makefile Log Message: Merge with 2.6.7 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.102 retrieving revision 1.103 diff -u -d -r1.102 -r1.103 --- Makefile 18 Jul 2004 21:49:26 -0000 1.102 +++ Makefile 28 Jul 2004 22:57:23 -0000 1.103 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 6 -SUBLEVEL = 6 +SUBLEVEL = 7 EXTRAVERSION = NAME=Zonked Quokka @@ -110,7 +110,7 @@ $(filter-out _all,$(MAKECMDGOALS)) _all: $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ KBUILD_SRC=$(CURDIR) KBUILD_VERBOSE=$(KBUILD_VERBOSE) \ - KBUILD_CHECK=$(KBUILD_CHECK) KBUILD_EXTMOD=$(KBUILD_EXTMOD) \ + KBUILD_CHECK=$(KBUILD_CHECK) KBUILD_EXTMOD="$(KBUILD_EXTMOD)" \ -f $(CURDIR)/Makefile $@ # Leave processing to above invocation of make @@ -325,7 +325,7 @@ # When compiling out-of-tree modules, put MODVERDIR in the module # tree rather than in the kernel tree. The kernel tree might # even be read-only. -export MODVERDIR := $(if $(KBUILD_EXTMOD),$(KBUILD_EXTMOD)/).tmp_versions +export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions # The temporary file to save gcc -MD generated dependencies must not # contain a comma @@ -567,7 +567,7 @@ kallsyms.o := .tmp_kallsyms2.o quiet_cmd_kallsyms = KSYM $@ -cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) > $@ +cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) $(foreach x,$(CONFIG_KALLSYMS_ALL),--all-symbols) > $@ .tmp_kallsyms1.o .tmp_kallsyms2.o: %.o: %.S scripts FORCE $(call if_changed_dep,as_o_S) @@ -680,7 +680,7 @@ uts_len := 64 define filechk_version.h - if ((`echo -n "$(KERNELRELEASE)" | wc -c ` > $(uts_len))); then \ + if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \ echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \ exit 1; \ fi; \ @@ -905,6 +905,7 @@ @echo ' rpm - Build a kernel as an RPM package' @echo ' tags/TAGS - Generate tags file for editors' @echo ' cscope - Generate cscope index' + @echo ' checkstack - Generate a list of stack hogs' @echo '' @echo 'Documentation targets:' @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp @@ -953,15 +954,15 @@ # We are always building modules KBUILD_MODULES := 1 .PHONY: crmodverdir -crmodverdir: FORCE +crmodverdir: $(Q)mkdir -p $(MODVERDIR) -.PHONY: $(KBUILD_EXTMOD) -$(KBUILD_EXTMOD): crmodverdir FORCE - $(Q)$(MAKE) $(build)=$@ +module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD)) +.PHONY: $(module-dirs) modules +$(module-dirs): crmodverdir + $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@) -.PHONY: modules -modules: $(KBUILD_EXTMOD) +modules: $(module-dirs) @echo ' Building modules, stage 2.'; $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost @@ -969,7 +970,7 @@ modules_install: $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst -clean-dirs := _clean_$(KBUILD_EXTMOD) +clean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD)) .PHONY: $(clean-dirs) clean $(clean-dirs): @@ -1002,6 +1003,8 @@ -name '*.[chS]' -print; \ find arch/$(ARCH) $(RCS_FIND_IGNORE) \ -name '*.[chS]' -print; \ + find security/selinux/include $(RCS_FIND_IGNORE) \ + -name '*.[chS]' -print; \ find include $(RCS_FIND_IGNORE) \ \( -name config -o -name 'asm-*' \) -prune \ -o -name '*.[chS]' -print; \ @@ -1058,9 +1061,18 @@ -name '*.[hcS]' -type f -print | sort \ | xargs $(PERL) -w scripts/checkversion.pl +buildcheck: + $(PERL) scripts/reference_discarded.pl + $(PERL) scripts/reference_init.pl + endif #ifeq ($(config-targets),1) endif #ifeq ($(mixed-targets),1) +.PHONY: checkstack +checkstack: + $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \ + $(PERL) scripts/checkstack.pl $(ARCH) + # FIXME Should go into a make.lib or something # =========================================================================== |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:12
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-mips In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-mips Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:11
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-s390 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-s390 Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:11
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ia64 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-ia64 Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:11
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-m68knommu In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-m68knommu Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:11
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sparc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-sparc Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:10
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-x86_64 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-x86_64 Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:10
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-um In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-um Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:10
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-vax Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:10
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-parisc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-parisc Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/linux Modified Files: elf.h Log Message: Merge with 2.6.7 Index: elf.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/linux/elf.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- elf.h 18 Jul 2004 21:49:27 -0000 1.21 +++ elf.h 28 Jul 2004 22:56:59 -0000 1.22 @@ -83,8 +83,7 @@ #define EM_V850 87 /* NEC v850 */ -#define EM_H8_300H 47 /* Hitachi H8/300H */ -#define EM_H8S 48 /* Hitachi H8S */ +#define EM_H8_300 46 /* Hitachi H8/300,300H,H8S */ /* * This is an interim value that we will use until the committee comes |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ppc64 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-ppc64 Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-v850 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-v850 Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-i386 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-i386 Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-m68k In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-m68k Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sparc64 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-sparc64 Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-h8300/h8max In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-h8300/h8max Removed Files: machine-depend.h Log Message: Merge with 2.6.7 --- machine-depend.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-h8300/generic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-h8300/generic Removed Files: machine-depend.h timer_rate.h Log Message: Merge with 2.6.7 --- machine-depend.h DELETED --- --- timer_rate.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:09
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sh In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-sh Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:08
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ppc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-ppc Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:07
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-h8300/edosk2674 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-h8300/edosk2674 Removed Files: machine-depend.h Log Message: Merge with 2.6.7 --- machine-depend.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:07
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-h8300/aki3068net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-h8300/aki3068net Removed Files: machine-depend.h Log Message: Merge with 2.6.7 --- machine-depend.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:02
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-cris In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-cris Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:02
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-arm/arch-tbox In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-arm/arch-tbox Removed Files: ide.h Log Message: Merge with 2.6.7 --- ide.h DELETED --- |
|
From: Kenn H. <ke...@us...> - 2004-07-28 22:57:01
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-arm26 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16064/include/asm-arm26 Removed Files: rmap.h Log Message: Merge with 2.6.7 --- rmap.h DELETED --- |