Gentoo Archives: gentoo-commits

From: "Chris Gianelloni (wolf31o2)" <wolf31o2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] catalyst r1275 - in trunk: . arch
Date: Wed, 06 Feb 2008 22:08:42
Message-Id: E1JMsRb-0004XG-NF@stork.gentoo.org
1 Author: wolf31o2
2 Date: 2008-02-06 22:08:38 +0000 (Wed, 06 Feb 2008)
3 New Revision: 1275
4
5 Modified:
6 trunk/ChangeLog
7 trunk/arch/x86.py
8 Log:
9 Added prescott to the subarches for x86.
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2008-02-06 15:39:16 UTC (rev 1274)
14 +++ trunk/ChangeLog 2008-02-06 22:08:38 UTC (rev 1275)
15 @@ -1,15 +1,18 @@
16 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
17 # $Id: $
18
19 + 06 Feb 2008; Chris Gianelloni <wolf31o2@g.o> arch/x86.py:
20 + Added prescott to the subarches for x86.
21 +
22 06 Feb 2008; Andrew Gaffney <agaffney@g.o>
23 modules/netboot2_target.py, targets/support/kmerge.sh:
24 Add patch to enabled netboot2/linuxrc and automatically add path for
25 initramfs overlay to genkernel commandline. Thanks to Justin Bronder
26 - <jsbronder@g.o> in bug 208106
27 + <jsbronder@g.o> in bug #208106
28
29 06 Feb 2008; Andrew Gaffney <agaffney@g.o>
30 modules/netboot2_target.py:
31 - Allow root_overlay in netboot2 target for bug 208106.
32 + Allow root_overlay in netboot2 target for bug #208106.
33
34 04 Feb 2008; Chris Gianelloni <wolf31o2@g.o>
35 modules/generic_stage_target.py, modules/livecd_stage1_target.py,
36
37 Modified: trunk/arch/x86.py
38 ===================================================================
39 --- trunk/arch/x86.py 2008-02-06 15:39:16 UTC (rev 1274)
40 +++ trunk/arch/x86.py 2008-02-06 22:08:38 UTC (rev 1275)
41 @@ -59,13 +59,20 @@
42 self.settings["HOSTUSE"]=["mmx","3dnow"]
43
44 class arch_athlon_xp(generic_x86):
45 - #this handles XP and MP processors
46 + # This handles XP and MP processors
47 def __init__(self,myspec):
48 generic_x86.__init__(self,myspec)
49 self.settings["CFLAGS"]="-O2 -march=athlon-xp -pipe"
50 self.settings["CHOST"]="i686-pc-linux-gnu"
51 self.settings["HOSTUSE"]=["mmx","3dnow","sse"]
52
53 +class arch_pentium3(generic_x86):
54 + def __init__(self,myspec):
55 + generic_x86.__init__(self,myspec)
56 + self.settings["CFLAGS"]="-O2 -march=pentium3 -pipe"
57 + self.settings["CHOST"]="i686-pc-linux-gnu"
58 + self.settings["HOSTUSE"]=["mmx","sse"]
59 +
60 class arch_pentium4(generic_x86):
61 def __init__(self,myspec):
62 generic_x86.__init__(self,myspec)
63 @@ -73,16 +80,30 @@
64 self.settings["CHOST"]="i686-pc-linux-gnu"
65 self.settings["HOSTUSE"]=["mmx","sse"]
66
67 -class arch_pentium3(generic_x86):
68 +class arch_prescott(generic_x86):
69 def __init__(self,myspec):
70 generic_x86.__init__(self,myspec)
71 - self.settings["CFLAGS"]="-O2 -march=pentium3 -pipe"
72 + self.settings["CFLAGS"]="-O2 -march=prescott -pipe"
73 self.settings["CHOST"]="i686-pc-linux-gnu"
74 - self.settings["HOSTUSE"]=["mmx","sse"]
75 + self.settings["HOSTUSE"]=["mmx","sse","sse2"]
76
77 +#class arch_nocona(generic_x86):
78 +# def __init__(self,myspec):
79 +# generic_x86.__init__(self,myspec)
80 +# self.settings["CFLAGS"]="-O2 -march=nocona -pipe"
81 +# self.settings["CHOST"]="i686-pc-linux-gnu"
82 +# self.settings["HOSTUSE"]=["mmx","sse","sse2"]
83 +
84 +#class arch_core2(generic_x86):
85 +# def __init__(self,myspec):
86 +# generic_x86.__init__(self,myspec)
87 +# self.settings["CFLAGS"]="-O2 -march=core2 -pipe"
88 +# self.settings["CHOST"]="i686-pc-linux-gnu"
89 +# self.settings["HOSTUSE"]=["mmx","sse","sse2"]
90 +
91 def register():
92 "Inform main catalyst program of the contents of this plugin."
93 return ({"pentium4":arch_pentium4,"x86":arch_x86,"i386":arch_i386,"i486":arch_i486,"i586":arch_i586,"i686":arch_i686,"athlon":arch_athlon,
94 - "athlon-xp":arch_athlon_xp,"athlon-mp":arch_athlon_xp,"pentium3":arch_pentium3,"pentium-mmx":arch_pentium_mmx},
95 + "athlon-xp":arch_athlon_xp,"athlon-mp":arch_athlon_xp,"pentium3":arch_pentium3,"pentium-mmx":arch_pentium_mmx,"prescott":arch_prescott},
96 ('i386', 'i486', 'i586', 'i686'))
97
98
99 --
100 gentoo-commits@l.g.o mailing list