I believe that the all the 77x9 Solution Engines have 32MiB of RAM, and the
775x models have 64MiB. This patch fixes the setting of CONFIG_MEMORY_SIZE
for those boards. Unless somebody objects, I'll commit it later on today.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/linuxsh/kernel/ChangeLog,v
retrieving revision 1.349
diff -u -r1.349 ChangeLog
--- ChangeLog 2001/10/11 09:48:54 1.349
+++ ChangeLog 2001/10/12 12:22:31
@@ -1,3 +1,7 @@
+2001-10-12 David Woodhouse <dw...@re...>
+
+ * arch/sh/config.in: Set default memory sizes for Solution Engines
+
2001-10-11 NIIBE Yutaka <gn...@m1...>
* Updated to 2.4.12.
Index: arch/sh/config.in
===================================================================
RCS file: /cvsroot/linuxsh/kernel/arch/sh/config.in,v
retrieving revision 1.58
diff -u -r1.58 config.in
--- arch/sh/config.in 2001/09/14 04:32:25 1.58
+++ arch/sh/config.in 2001/10/12 12:09:42
@@ -90,8 +90,17 @@
fi
bool 'Little Endian' CONFIG_CPU_LITTLE_ENDIAN
# Platform-specific memory start and size definitions
-if [ "$CONFIG_SH_SOLUTION_ENGINE" = "y" -o "$CONFIG_SH_HP600" = "y" -o \
- "$CONFIG_SH_BIGSUR" = "y" -o "$CONFIG_SH_7751_SOLUTION_ENGINE" = "y" -o \
+if [ "$CONFIG_SH_SOLUTION_ENGINE" = "y" ]; then
+ define_hex CONFIG_MEMORY_START 0c000000
+ define_hex CONFIG_MEMORY_SIZE 02000000
+ define_bool CONFIG_MEMORY_SET y
+fi
+if [ "$CONFIG_SH_7751_SOLUTION_ENGINE" = "y" ]; then
+ define_hex CONFIG_MEMORY_START 0c000000
+ define_hex CONFIG_MEMORY_SIZE 04000000
+ define_bool CONFIG_MEMORY_SET y
+fi
+if [ "$CONFIG_SH_HP600" = "y" -o "$CONFIG_SH_BIGSUR" = "y" -o \
"$CONFIG_SH_DREAMCAST" = "y" -o "$CONFIG_SH_SH2000" = "y" ]; then
define_hex CONFIG_MEMORY_START 0c000000
define_hex CONFIG_MEMORY_SIZE 00400000
--
dwmw2
|