diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-10 23:47:44 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-10 23:47:44 +0000 |
commit | ce7a3f3db827012e90ceae068572d813643e3d32 (patch) | |
tree | 0ae05de73cea41d13e2f5c537dad97ae7e34fc33 /arch/mips/Makefile | |
parent | c7c4310f7fc1485925d800628bf50b3aeab535ef (diff) |
Support for the Galileo Orion board. From Cort.
Diffstat (limited to 'arch/mips/Makefile')
-rw-r--r-- | arch/mips/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index c433f10d7..1ea5c62e9 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -143,6 +143,15 @@ LOADADDR += 0x80080000 endif # +# Orion Board +# +ifdef CONFIG_ORION +LIBS += arch/mips/orion/orionkern.a +SUBDIRS += arch/mips/orion +LINKSCRIPT = arch/mips/orion/ld.script.orion +endif + +# # Choosing incompatible machines durings configuration will result in # error messages during linking. Select a default linkscript if # none has been choosen above. @@ -181,6 +190,13 @@ balo: vmlinux endif +ifdef CONFIG_ORION +ORIONBOOT = $(MAKE) -C arch/$(ARCH)/orion + +orionboot: + $(ORIONBOOT) orionboot +endif + MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot zImage: vmlinux |