From: Paul M. <le...@us...> - 2002-05-01 16:32:33
|
Update of /cvsroot/linuxdc/linux-sh-dc In directory usw-pr-cvs1:/tmp/cvs-serv5554 Modified Files: ChangeLog.dc Makefile Log Message: ARCH=sh. Index: ChangeLog.dc =================================================================== RCS file: /cvsroot/linuxdc/linux-sh-dc/ChangeLog.dc,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- ChangeLog.dc 1 May 2002 16:01:26 -0000 1.31 +++ ChangeLog.dc 1 May 2002 16:32:27 -0000 1.32 @@ -1,5 +1,7 @@ 2002-05-01 Paul Mundt <le...@ch...> + * Makefile: Set ARCH explicitly to sh. + * drivers/maple/maple.c: Add a MODULE_LICENSE() tag to avoid accidentally tainting the kernel. Index: Makefile =================================================================== RCS file: /cvsroot/linuxdc/linux-sh-dc/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 1 May 2002 10:25:35 -0000 1.1 +++ Makefile 1 May 2002 16:32:27 -0000 1.2 @@ -5,7 +5,7 @@ KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) -ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/) +ARCH := sh KERNELPATH=kernel-$(shell echo $(KERNELRELEASE) | sed -e "s/-//g") CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ |