From: Kenn H. <ke...@us...> - 2003-03-22 19:49:09
|
Update of /cvsroot/linux-vax/kernel-2.5 In directory sc8-pr-cvs1:/tmp/cvs-serv30150 Modified Files: Rules.make Makefile Log Message: Merge with 2.5.42 Index: Rules.make =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Rules.make,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- Rules.make 21 Mar 2003 00:08:58 -0000 1.23 +++ Rules.make 22 Mar 2003 19:49:05 -0000 1.24 @@ -209,10 +209,10 @@ $(if $($(quiet)cmd_cc_ver_c),echo ' $($(quiet)cmd_cc_ver_c)';) \ $(cmd_cc_ver_c); \ if [ ! -r $(depfile) ]; then exit 1; fi; \ - $(TOPDIR)/scripts/fixdep $(depfile) $@ $(TOPDIR) '$(cmd_cc_ver_c)' > $(@D)/.$(@F).tmp; \ + scripts/fixdep $(depfile) $@ '$(cmd_cc_ver_c)' > $(@D)/.$(@F).tmp; \ rm -f $(depfile); \ if [ ! -r $@ ] || cmp -s $@ $@.tmp; then \ - touch $(TOPDIR)/include/linux/modversions.h; \ + touch include/linux/modversions.h; \ fi; \ mv -f $@.tmp $@ mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd @@ -315,7 +315,7 @@ $(call if_changed_dep,cc_o_c) quiet_cmd_cc_lst_c = MKLST $(echo_target) -cmd_cc_lst_c = $(CC) $(c_flags) -g -c -o $*.o $< && $(TOPDIR)/scripts/makelst $*.o $(TOPDIR)/System.map $(OBJDUMP) > $@ +cmd_cc_lst_c = $(CC) $(c_flags) -g -c -o $*.o $< && sh scripts/makelst $*.o System.map $(OBJDUMP) > $@ %.lst: %.c FORCE $(call if_changed_dep,cc_lst_c) @@ -564,7 +564,7 @@ @set -e; \ $(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))';) \ $(cmd_$(1)); \ - $(TOPDIR)/scripts/fixdep $(depfile) $@ $(TOPDIR) '$(cmd_$(1))' > $(@D)/.$(@F).tmp; \ + scripts/fixdep $(depfile) $@ '$(cmd_$(1))' > $(@D)/.$(@F).tmp; \ rm -f $(depfile); \ mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd) Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/Makefile,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- Makefile 20 Mar 2003 00:44:41 -0000 1.48 +++ Makefile 22 Mar 2003 19:49:05 -0000 1.49 @@ -1,12 +1,12 @@ VERSION = 2 PATCHLEVEL = 5 -SUBLEVEL = 41 +SUBLEVEL = 42 EXTRAVERSION = # *DOCUMENTATION* -# Too see a list of typical targets execute "make help" +# To see a list of typical targets execute "make help" # More info can be located in ./Documentation/kbuild -# Comments in this file is targeted only to the developer, do not +# Comments in this file are targeted only to the developer, do not # expect to learn how to build the kernel reading this file. # We are using a recursive build, so we need to do a little thinking @@ -142,7 +142,7 @@ STRIP = $(CROSS_COMPILE)strip OBJCOPY = $(CROSS_COMPILE)objcopy OBJDUMP = $(CROSS_COMPILE)objdump -MAKEFILES = $(TOPDIR)/.config +MAKEFILES = .config GENKSYMS = /sbin/genksyms DEPMOD = /sbin/depmod KALLSYMS = /sbin/kallsyms @@ -387,17 +387,17 @@ # Single targets # --------------------------------------------------------------------------- -%.s: %.c FORCE +%.s: %.c scripts FORCE +@$(call descend,$(@D),$@) -%.i: %.c FORCE +%.i: %.c scripts FORCE +@$(call descend,$(@D),$@) -%.o: %.c FORCE +%.o: %.c scripts FORCE +@$(call descend,$(@D),$@) -%.lst: %.c FORCE +%.lst: %.c scripts FORCE +@$(call descend,$(@D),$@) -%.s: %.S FORCE +%.s: %.S scripts FORCE +@$(call descend,$(@D),$@) -%.o: %.S FORCE +%.o: %.S scripts FORCE +@$(call descend,$(@D),$@) # FIXME: The asm symlink changes when $(ARCH) changes. That's @@ -704,6 +704,8 @@ sound/oss/pndspini.c \ drivers/atm/fore200e_*_fw.c drivers/atm/.fore200e_*.fw \ .version .config* config.in config.old \ + scripts/tkparse scripts/kconfig.tk scripts/kconfig.tmp \ + scripts/lxdialog/*.o scripts/lxdialog/lxdialog \ .menuconfig.log \ include/asm \ .hdepend include/linux/modversions.h \ @@ -881,7 +883,7 @@ @set -e; \ $(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))';) \ $(cmd_$(1)); \ - $(TOPDIR)/scripts/fixdep $(depfile) $@ $(TOPDIR) '$(cmd_$(1))' > $(@D)/.$(@F).tmp; \ + scripts/fixdep $(depfile) $@ '$(cmd_$(1))' > $(@D)/.$(@F).tmp; \ rm -f $(depfile); \ mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd) |