Update of /cvsroot/linuxdc/linux/arch/sh
In directory usw-pr-cvs1:/tmp/cvs-serv1015
Modified Files:
config.in
Log Message:
Added initial Dreamcast PowerVR2DC and hardware support
Index: config.in
===================================================================
RCS file: /cvsroot/linuxdc/linux/arch/sh/config.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** config.in 2001/02/09 16:27:14 1.3
--- config.in 2001/02/21 15:22:11 1.4
***************
*** 41,45 ****
BareCPU CONFIG_SH_UNKNOWN" Generic
! define_bool CONFIG_SH_RTC y
if [ "$CONFIG_SH_HP620" = "y" -o "$CONFIG_SH_HP680" = "y" -o \
--- 41,49 ----
BareCPU CONFIG_SH_UNKNOWN" Generic
! if [ "$CONFIG_SH_DREAMCAST" = "y" ]; then
! define_bool CONFIG_SH_RTC n
! else
! define_bool CONFIG_SH_RTC y
! fi
if [ "$CONFIG_SH_HP620" = "y" -o "$CONFIG_SH_HP680" = "y" -o \
***************
*** 85,89 ****
define_hex CONFIG_MEMORY_START 02000000
else
! hex 'Physical memory start address' CONFIG_MEMORY_START 08000000
fi
fi
--- 89,97 ----
define_hex CONFIG_MEMORY_START 02000000
else
! if [ "$CONFIG_SH_DREAMCAST" = "y" ]; then
! define_hex CONFIG_MEMORY_START 0c010000
! else
! hex 'Physical memory start address' CONFIG_MEMORY_START 08000000
! fi
fi
fi
|