diff options
author | Andreas Larsson <andreas@gaisler.com> | 2014-10-30 09:29:35 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-30 21:28:39 +0100 |
commit | 43b78e7285e1d744c304b72a03fe1e9f2d2e047a (patch) | |
tree | cfed85115ed628e9656400fd23554cb445b496d4 /arch/Config.in.sparc | |
parent | fd0a51de452dc7f1cbfd02fb1ab9d6200d43ede4 (diff) | |
download | buildroot-43b78e7285e1d744c304b72a03fe1e9f2d2e047a.tar.gz buildroot-43b78e7285e1d744c304b72a03fe1e9f2d2e047a.zip |
arch: sparc: Add leon3 cpu type and remove sparc{s,h}fleon{,v8}
There is support for -mcpu=leon3 from gcc 4.8.3. Use this for LEON systems
instead of the non-mainline targets sparcsfleon, sparchfleon, sparcsfleonv8, and
sparchfleonv8.
[Thomas: add Config.in.legacy handling for the removed options.]
Signed-off-by: Andreas Larsson <andreas@gaisler.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'arch/Config.in.sparc')
-rw-r--r-- | arch/Config.in.sparc | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/arch/Config.in.sparc b/arch/Config.in.sparc index 657c8259af..cd845b2da3 100644 --- a/arch/Config.in.sparc +++ b/arch/Config.in.sparc @@ -7,14 +7,8 @@ choice config BR2_sparc_v8 bool "v8" -config BR2_sparc_sparchfleon - bool "hfleon" -config BR2_sparc_sparchfleonv8 - bool "hfleonv8" -config BR2_sparc_sparcsfleon - bool "sfleon" -config BR2_sparc_sparcsfleonv8 - bool "sfleonv8" +config BR2_sparc_leon3 + bool "leon3" endchoice config BR2_ARCH @@ -30,7 +24,4 @@ config BR2_GCC_TARGET_TUNE default "v8" if BR2_sparc_v8 config BR2_GCC_TARGET_CPU - default "sparchfleon" if BR2_sparc_sparchfleon - default "sparchfleonv8" if BR2_sparc_sparchfleonv8 - default "sparcsfleon" if BR2_sparc_sparcsfleon - default "sparcsfleonv8" if BR2_sparc_sparcsfleonv8 + default "leon3" if BR2_sparc_leon3 |