You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
(9) |
Apr
(27) |
May
(5) |
Jun
(8) |
Jul
(50) |
Aug
(286) |
Sep
(2) |
Oct
(43) |
Nov
(4) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(79) |
Feb
(102) |
Mar
(29) |
Apr
(2) |
May
(22) |
Jun
(41) |
Jul
(11) |
Aug
(28) |
Sep
(58) |
Oct
(4) |
Nov
(18) |
Dec
(8) |
2002 |
Jan
(2) |
Feb
(2) |
Mar
(1) |
Apr
(478) |
May
(469) |
Jun
(78) |
Jul
(16) |
Aug
(2) |
Sep
(7) |
Oct
(47) |
Nov
(5) |
Dec
(227) |
2003 |
Jan
(155) |
Feb
(188) |
Mar
(160) |
Apr
(172) |
May
(41) |
Jun
(205) |
Jul
(104) |
Aug
(289) |
Sep
(31) |
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kenn H. <ke...@us...> - 2003-08-25 23:09:30
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video In directory sc8-pr-cvs1:/tmp/cvs-serv20755/drivers/video Removed Files: leofb.c Log Message: Merge with 2.5.65 --- leofb.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-25 23:07:16
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv20755 Modified Files: Makefile Log Message: Merge with 2.5.65 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- Makefile 23 Aug 2003 12:44:06 -0000 1.72 +++ Makefile 24 Aug 2003 12:04:02 -0000 1.73 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 64 +SUBLEVEL = 65 EXTRAVERSION = # *DOCUMENTATION* @@ -107,6 +107,11 @@ # For now, leave verbose as default +ifdef V + ifeq ("$(origin V)", "command line") + KBUILD_VERBOSE = $(V) + endif +endif ifndef KBUILD_VERBOSE KBUILD_VERBOSE = 1 endif @@ -193,7 +198,7 @@ comma := , depfile = $(subst $(comma),_,$(@D)/.$(@F).d) -noconfig_targets := xconfig menuconfig config oldconfig randconfig \ +noconfig_targets := xconfig gconfig menuconfig config oldconfig randconfig \ defconfig allyesconfig allnoconfig allmodconfig \ clean mrproper distclean rpm \ help tags TAGS cscope sgmldocs psdocs pdfdocs htmldocs \ @@ -328,8 +333,10 @@ . $(srctree)/scripts/mkversion > .tmp_version; \ mv -f .tmp_version .version; \ $(MAKE) $(build)=init; \ - ) - $(call cmd,vmlinux__); \ + ) \ + $(if $($(quiet)cmd_vmlinux__), \ + echo ' $($(quiet)cmd_vmlinux__)' &&) \ + $(cmd_vmlinux__); \ echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd endef @@ -472,17 +479,19 @@ uts_len := 64 -include/linux/version.h: Makefile - @if expr length "$(KERNELRELEASE)" \> $(uts_len) >/dev/null ; then \ +define filechk_version.h + if expr length "$(KERNELRELEASE)" \> $(uts_len) >/dev/null ; then \ echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \ exit 1; \ fi; - @echo -n ' GEN $@' - @(echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \ + (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \ echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)`; \ echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'; \ - ) > $@.tmp - @$(update-if-changed) + ) +endef + +include/linux/version.h: Makefile + $(call filechk,version.h) # --------------------------------------------------------------------------- @@ -551,7 +560,7 @@ # Generate asm-offsets.h # --------------------------------------------------------------------------- -define generate-asm-offsets.h +define filechk_gen-asm-offsets (set -e; \ echo "#ifndef __ASM_OFFSETS_H__"; \ echo "#define __ASM_OFFSETS_H__"; \ @@ -567,7 +576,6 @@ echo "#endif" ) endef - else # ifdef include_config ifeq ($(filter-out $(noconfig_targets),$(MAKECMDGOALS)),) @@ -598,15 +606,18 @@ # Kernel configuration # --------------------------------------------------------------------------- -.PHONY: oldconfig xconfig menuconfig config \ +.PHONY: oldconfig xconfig gconfig menuconfig config \ make_with_config rpm -scripts/kconfig/conf scripts/kconfig/mconf scripts/kconfig/qconf: scripts/fixdep FORCE +scripts/kconfig/conf scripts/kconfig/mconf scripts/kconfig/qconf scripts/kconfig/gconf: scripts/fixdep FORCE $(Q)$(MAKE) $(build)=scripts/kconfig $@ xconfig: scripts/kconfig/qconf ./scripts/kconfig/qconf arch/$(ARCH)/Kconfig +gconfig: scripts/kconfig/gconf + ./scripts/kconfig/gconf arch/$(ARCH)/Kconfig + menuconfig: scripts/kconfig/mconf $(Q)$(MAKE) $(build)=scripts/lxdialog ./scripts/kconfig/mconf arch/$(ARCH)/Kconfig @@ -876,13 +887,28 @@ cmd = @$(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))' &&) $(cmd_$(1)) -define update-if-changed - if [ -r $@ ] && cmp -s $@ $@.tmp; then \ - echo ' (unchanged)'; \ - rm -f $@.tmp; \ - else \ - echo ' (updated)'; \ - mv -f $@.tmp $@; \ +# filechk is used to check if the content of a generated file is updated. +# Sample usage: +# define filechk_sample +# echo $KERNELRELEASE +# endef +# version.h : Makefile +# $(call filechk,sample) +# The rule defined shall write to stdout the content of the new file. +# The existing file will be compared with the new one. +# - If no file exist it is created +# - If the content differ the new file is used +# - If they are equal no change, and no timestamp update + +define filechk + @set -e; \ + echo ' CHK $@'; \ + $(filechk_$(1)) < $< > $@.tmp; \ + if [ -r $@ ] && cmp -s $@ $@.tmp; then \ + rm -f $@.tmp; \ + else \ + echo ' UPD $@'; \ + mv -f $@.tmp $@; \ fi endef |
From: Kenn H. <ke...@us...> - 2003-08-25 23:06:33
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/scsi In directory sc8-pr-cvs1:/tmp/cvs-serv20755/drivers/scsi Removed Files: fdomain.h qlogicfas.h Log Message: Merge with 2.5.65 --- fdomain.h DELETED --- --- qlogicfas.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 22:24:03
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv26575/include/asm Modified Files: processor.h Log Message: definition of prepare_to_copy() needed for 2.5.65 Index: processor.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/processor.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- processor.h 9 Feb 2003 01:46:02 -0000 1.7 +++ processor.h 24 Aug 2003 12:42:51 -0000 1.8 @@ -70,6 +70,9 @@ /* nothing to do on VAX */ } +/* Prepare to copy thread state - unlazy all lazy status */ +#define prepare_to_copy(tsk) do { } while (0) + extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags); |
From: Kenn H. <ke...@us...> - 2003-08-24 20:08:12
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/char In directory sc8-pr-cvs1:/tmp/cvs-serv29054/drivers/char Modified Files: Makefile Log Message: Merge with 2.5.66 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/char/Makefile,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- Makefile 24 Aug 2003 12:04:03 -0000 1.37 +++ Makefile 24 Aug 2003 20:08:10 -0000 1.38 @@ -46,6 +46,7 @@ obj-$(CONFIG_PRINTER) += lp.o obj-$(CONFIG_TIPAR) += tipar.o +obj-$(CONFIG_PC9800_OLDLP) += lp_old98.o obj-$(CONFIG_BUSMOUSE) += busmouse.o obj-$(CONFIG_DTLK) += dtlk.o |
From: Kenn H. <ke...@us...> - 2003-08-24 20:08:12
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/net In directory sc8-pr-cvs1:/tmp/cvs-serv29054/drivers/net Modified Files: Makefile Space.c Log Message: Merge with 2.5.66 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/net/Makefile,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- Makefile 19 Aug 2003 20:41:13 -0000 1.25 +++ Makefile 24 Aug 2003 20:08:10 -0000 1.26 @@ -81,6 +81,7 @@ obj-$(CONFIG_WD80x3) += wd.o 8390.o obj-$(CONFIG_EL2) += 3c503.o 8390.o obj-$(CONFIG_NE2000) += ne.o 8390.o +obj-$(CONFIG_NE2K_CBUS) += ne2k_cbus.o 8390.o obj-$(CONFIG_NE2_MCA) += ne2.o 8390.o obj-$(CONFIG_HPLAN) += hp.o 8390.o obj-$(CONFIG_HPLAN_PLUS) += hp-plus.o 8390.o Index: Space.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/net/Space.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- Space.c 5 Aug 2003 23:17:56 -0000 1.11 +++ Space.c 24 Aug 2003 20:08:10 -0000 1.12 @@ -235,7 +235,7 @@ #ifdef CONFIG_E2100 /* Cabletron E21xx series. */ {e2100_probe, 0}, #endif -#ifdef CONFIG_NE2000 /* ISA (use ne2k-pci for PCI cards) */ +#if defined(CONFIG_NE2000) || defined(CONFIG_NE2K_CBUS) /* ISA & PC-9800 CBUS (use ne2k-pci for PCI cards) */ {ne_probe, 0}, #endif #ifdef CONFIG_LANCE /* ISA/VLB (use pcnet32 for PCI cards) */ |
From: Kenn H. <ke...@us...> - 2003-08-24 20:08:12
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv29054 Modified Files: Makefile Log Message: Merge with 2.5.66 Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.73 retrieving revision 1.74 diff -u -r1.73 -r1.74 --- Makefile 24 Aug 2003 12:04:02 -0000 1.73 +++ Makefile 24 Aug 2003 20:08:10 -0000 1.74 @@ -1,6 +1,6 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 65 +SUBLEVEL = 66 EXTRAVERSION = # *DOCUMENTATION* @@ -164,6 +164,8 @@ OBJCOPY = $(CROSS_COMPILE)objcopy OBJDUMP = $(CROSS_COMPILE)objdump AWK = awk +RPM := $(shell if [ -x "/usr/bin/rpmbuild" ]; then echo rpmbuild; \ + else echo rpm; fi) GENKSYMS = scripts/genksyms/genksyms DEPMOD = /sbin/depmod KALLSYMS = scripts/kallsyms @@ -769,9 +771,7 @@ rm $(KERNELPATH) ; \ cd $(TOPDIR) ; \ $(CONFIG_SHELL) $(srctree)/scripts/mkversion > .version ; \ - RPM=`which rpmbuild`; \ - if [ -z "$$RPM" ]; then RPM=rpm; fi; \ - $$RPM -ta $(TOPDIR)/../$(KERNELPATH).tar.gz ; \ + $(RPM) -ta $(TOPDIR)/../$(KERNELPATH).tar.gz ; \ rm $(TOPDIR)/../$(KERNELPATH).tar.gz # Brief documentation of the typical targets used |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:44
|
Update of /cvsroot/linux-vax/kernel-2.5/include/linux In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/linux Removed Files: sisfb.h Log Message: Merge with 2.5.66 --- sisfb.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:44
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video In directory sc8-pr-cvs1:/tmp/cvs-serv28693/drivers/video Removed Files: aty128fb.c clgenfb.c clgenfb.h maxinefb.h pm2fb.h pm3fb.h pmag-ba-fb.h pmagb-b-fb.h sstfb.h Log Message: Merge with 2.5.66 --- aty128fb.c DELETED --- --- clgenfb.c DELETED --- --- clgenfb.h DELETED --- --- maxinefb.h DELETED --- --- pm2fb.h DELETED --- --- pm3fb.h DELETED --- --- pmag-ba-fb.h DELETED --- --- pmagb-b-fb.h DELETED --- --- sstfb.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-mips In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-mips Removed Files: linux_logo.h linux_logo_dec.h linux_logo_sgi.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- --- linux_logo_dec.h DELETED --- --- linux_logo_sgi.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sh In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-sh Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sparc In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-sparc Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-sparc64 In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-sparc64 Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ppc64 In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-ppc64 Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-m68knommu In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-m68knommu Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-x86_64 In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-x86_64 Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/video/sis In directory sc8-pr-cvs1:/tmp/cvs-serv28693/drivers/video/sis Removed Files: 325vtbl.h sisfb.h Log Message: Merge with 2.5.66 --- 325vtbl.h DELETED --- --- sisfb.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/net In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/net Removed Files: compat_socket.h Log Message: Merge with 2.5.66 --- compat_socket.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/usb/misc In directory sc8-pr-cvs1:/tmp/cvs-serv28693/drivers/usb/misc Removed Files: atmsar.c atmsar.h speedtouch.c Log Message: Merge with 2.5.66 --- atmsar.c DELETED --- --- atmsar.h DELETED --- --- speedtouch.c DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/net/e100 In directory sc8-pr-cvs1:/tmp/cvs-serv28693/drivers/net/e100 Removed Files: e100_vendor.h Log Message: Merge with 2.5.66 --- e100_vendor.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-um In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-um Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:43
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-m68k In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-m68k Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:42
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-mips64 In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-mips64 Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:42
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-ia64 In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-ia64 Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |
From: Kenn H. <ke...@us...> - 2003-08-24 20:06:42
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-parisc In directory sc8-pr-cvs1:/tmp/cvs-serv28693/include/asm-parisc Removed Files: linux_logo.h Log Message: Merge with 2.5.66 --- linux_logo.h DELETED --- |