commit: b2546740f479fd80b4e8f9f6bdb12187ea163dcd
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 13 00:23:09 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Apr 13 20:43:10 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b2546740
catalyst/arch: Delete some x86 configs
The Linux kernel dropped i386 support in v3.8.
Also remove the K6-3 alias for K6-2.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/arch/x86.py | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/catalyst/arch/x86.py b/catalyst/arch/x86.py
index 751ae769..a3bce255 100644
--- a/catalyst/arch/x86.py
+++ b/catalyst/arch/x86.py
@@ -115,7 +115,6 @@ def register():
"Inform main catalyst program of the contents of this plugin."
return ({
"x86" : arch_x86,
- "i386" : arch_i386,
"i486" : arch_i486,
"i586" : arch_i586,
"i686" : arch_i686,
@@ -129,7 +128,6 @@ def register():
"prescott" : arch_prescott,
"k6" : arch_k6,
"k6-2" : arch_k6_2,
- "k6-3" : arch_k6_2,
"athlon" : arch_athlon,
"athlon-xp" : arch_athlon_xp,
- }, ('i386', 'i486', 'i586', 'i686'))
+ }, ('i486', 'i586', 'i686'))