[xtensa-cvscommit] linux/drivers/net Config.in,1.1.1.1,1.2 Makefile,1.1.1.1,1.2 sonic.h,1.1.1.1,1.2
Brought to you by:
zankel
|
From: <joe...@us...> - 2002-10-23 20:53:24
|
Update of /cvsroot/xtensa/linux/drivers/net
In directory usw-pr-cvs1:/tmp/cvs-serv28395/drivers/net
Modified Files:
Config.in Makefile sonic.h
Log Message:
Add processor config information for two additional configs: linux_le and linux_test. Also make the selection of processor configuration selectable at kernel-configuration time. linux_be is the default.
Index: Config.in
===================================================================
RCS file: /cvsroot/xtensa/linux/drivers/net/Config.in,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Config.in 28 Aug 2002 16:10:41 -0000 1.1.1.1
--- Config.in 23 Oct 2002 20:53:20 -0000 1.2
***************
*** 53,58 ****
tristate ' MIPS JAZZ onboard SONIC Ethernet support' CONFIG_MIPS_JAZZ_SONIC
fi
! if [ "$CONFIG_XTENSA_XT2000" = "y" ]; then
! tristate ' Xtensa XT2000 onboard SONIC Ethernet support' CONFIG_XTENSA_XT2000_SONIC
fi
if [ "$CONFIG_MIPS_GT96100" = "y" ]; then
--- 53,58 ----
tristate ' MIPS JAZZ onboard SONIC Ethernet support' CONFIG_MIPS_JAZZ_SONIC
fi
! if [ "$CONFIG_XTENSA_PLATFORM_XT2000" = "y" ]; then
! tristate ' Xtensa XT2000 onboard SONIC Ethernet support' CONFIG_XTENSA_PLATFORM_XT2000_SONIC
fi
if [ "$CONFIG_MIPS_GT96100" = "y" ]; then
Index: Makefile
===================================================================
RCS file: /cvsroot/xtensa/linux/drivers/net/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Makefile 28 Aug 2002 16:10:41 -0000 1.1.1.1
--- Makefile 23 Oct 2002 20:53:20 -0000 1.2
***************
*** 211,215 ****
obj-$(CONFIG_TUN) += tun.o
obj-$(CONFIG_DL2K) += dl2k.o
! obj-$(CONFIG_XTENSA_XT2000_SONIC) += xtsonic.o
ifeq ($(CONFIG_ARCH_ACORN),y)
--- 211,215 ----
obj-$(CONFIG_TUN) += tun.o
obj-$(CONFIG_DL2K) += dl2k.o
! obj-$(CONFIG_XTENSA_PLATFORM_XT2000_SONIC) += xtsonic.o
ifeq ($(CONFIG_ARCH_ACORN),y)
Index: sonic.h
===================================================================
RCS file: /cvsroot/xtensa/linux/drivers/net/sonic.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** sonic.h 28 Aug 2002 16:10:45 -0000 1.1.1.1
--- sonic.h 23 Oct 2002 20:53:20 -0000 1.2
***************
*** 218,222 ****
! #if defined(CONFIG_MACSONIC) || defined(CONFIG_XTENSA_XT2000)
/*
* Big endian like structures on 680x0 Macs
--- 218,222 ----
! #if defined(CONFIG_MACSONIC) || defined(CONFIG_XTENSA_PLATFORM_XT2000)
/*
* Big endian like structures on 680x0 Macs
|