diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-07-16 11:09:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-07-16 11:09:34 +0000 |
commit | c3d50a69839f8d80fc7244fde6e4a57e5e39dd36 (patch) | |
tree | c9e27baac7541384b806cce0845f28c1f59b5a2e /extra/Configs/Config.in | |
parent | 3cf731bf40f153a73373798085d1f45a80b972d6 (diff) |
Pete Popov writes:
Hi Erik,
I'm not sure why the NIOS support is not in uClibc -- perhaps the patch
was rejected or never submitted? In any case, I'm playing with some NIOS
stuff and created this patch against 0.9.26. The work was done by
Microtronix. I'm not sure who else contributed to it. It would be great
to have the NIOS support available in uClibc so developers don't have to
go searching for these bits.
Pete
Diffstat (limited to 'extra/Configs/Config.in')
-rw-r--r-- | extra/Configs/Config.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index b61a1ebfd..b1624dafd 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -44,6 +44,12 @@ config TARGET_microblaze config TARGET_mips bool "mips" +config TARGET_nios + bool "nios" + +config TARGET_nios2 + bool "nios2" + config TARGET_powerpc bool "powerpc" @@ -97,6 +103,14 @@ if TARGET_m68k source "extra/Configs/Config.m68k" endif +if TARGET_nios +source "extra/Configs/Config.nios" +endif + +if TARGET_nios2 +source "extra/Configs/Config.nios2" +endif + if TARGET_microblaze source "extra/Configs/Config.microblaze" endif |