diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-06-14 22:50:48 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1997-06-14 22:50:48 +0000 |
commit | 1adc91c0f4c32a116a86b113b213b26b975df575 (patch) | |
tree | 78d0a6ed9eb4cf8e41a007132c85567aa0b8df94 /arch | |
parent | 2b683bd1bded39054b048e66388437091b5686c1 (diff) |
Fix the load address of the SGI kernel so that the special handling of the
current variable works again. Add RCS Id to the head.
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index f4d67f24c..7909bf042 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -1,4 +1,6 @@ # +# $Id:$ +# # arch/mips/Makefile # # This file is included by the global makefile so that you can add your own @@ -135,7 +137,12 @@ endif ifdef CONFIG_SGI LIBS += arch/mips/sgi/kernel/sgikern.a arch/mips/sgi/prom/promlib.a SUBDIRS += arch/mips/sgi/kernel arch/mips/sgi/prom -LOADADDR += 0x88069000 +# +# Set LOADADDR to >= 0x88069000 if you want to leave space for symmon, +# 0x88002000 for production kernels. Note that the value must be +# 8kb aligned or the handling of the current variable will break. +# +LOADADDR += 0x88002000 HOSTCC = cc endif |