Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: /
Date: Sun, 03 Jul 2011 20:00:31
Message-Id: 8b5fe6832d8bb26e7a4d451b4acec76a730c0f85.wiktor@gentoo
1 commit: 8b5fe6832d8bb26e7a4d451b4acec76a730c0f85
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Sun Jul 3 16:20:53 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Sun Jul 3 16:20:53 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=8b5fe683
7
8 installclass.py: add mirrorselect
9
10 ---
11 installclass.py | 135 ++++++++++++++++++++++++++++---------------------------
12 1 files changed, 68 insertions(+), 67 deletions(-)
13
14 diff --git a/installclass.py b/installclass.py
15 index d3d347a..5c0f5d2 100644
16 --- a/installclass.py
17 +++ b/installclass.py
18 @@ -79,73 +79,74 @@ class BaseInstallClass(object):
19
20 def setSteps(self, anaconda):
21 dispatch = anaconda.dispatch
22 - dispatch.setStepList(
23 - # Welcome
24 - "welcome",
25 - "language",
26 - "keyboard",
27 - "betanag",
28 -
29 - # Preparing the Disks
30 - "filtertype",
31 - "filter",
32 - "storageinit",
33 - "findrootparts",
34 - "installtype",
35 - "cleardiskssel",
36 - "parttype",
37 - "autopartitionexecute",
38 - "partition",
39 - "storagedone",
40 - "enablefilesystems",
41 -
42 - # Installing the Gentoo Installation Files
43 - "makeconf",
44 -
45 - # Installing the Gentoo Base System
46 -
47 - # Configuring the Kernel
48 - "timezone",
49 - "setuptime",
50 -
51 - # Configuring your System
52 - "network",
53 - "accounts",
54 -
55 - # Installing Necessary System Tools
56 -
57 - # Configuring the Bootloader
58 - "bootloadersetup",
59 - "bootloader",
60 -
61 - # Finalizing your Gentoo Installation
62 - "useraccounts",
63 -
64 - # Misc
65 - "reposetup",
66 - "basepkgsel",
67 - "tasksel",
68 - "postselection",
69 - "confirminstall",
70 - "reipl",
71 - "install",
72 - "preinstallconfig",
73 - "installpackages",
74 - "postinstallconfig",
75 - "writeconfig",
76 - "firstboot",
77 - "instbootloader",
78 - "dopostaction",
79 - "postscripts",
80 - "writeksconfig",
81 - "methodcomplete",
82 - "copylogs",
83 - "setfilecon",
84 - "complete"
85 - )
86 -
87 - if not BETANAG:
88 - dispatch.skipStep("betanag", permanent=1)
89 + dispatch.setStepList(
90 + # Welcome
91 + "welcome",
92 + "language",
93 + "keyboard",
94 + "betanag",
95 +
96 + # Preparing the Disks
97 + "filtertype",
98 + "filter",
99 + "storageinit",
100 + "findrootparts",
101 + "installtype",
102 + "cleardiskssel",
103 + "parttype",
104 + "autopartitionexecute",
105 + "partition",
106 + "storagedone",
107 + "enablefilesystems",
108 +
109 + # Installing the Gentoo Installation Files
110 + "makeconf",
111 +
112 + # Installing the Gentoo Base System
113 + "mirrorselect",
114 +
115 + # Configuring the Kernel
116 + "timezone",
117 + "setuptime",
118 +
119 + # Configuring your System
120 + "network",
121 + "accounts",
122 +
123 + # Installing Necessary System Tools
124 +
125 + # Configuring the Bootloader
126 + "bootloadersetup",
127 + "bootloader",
128 +
129 + # Finalizing your Gentoo Installation
130 + "useraccounts",
131 +
132 + # Misc
133 + "reposetup",
134 + "basepkgsel",
135 + "tasksel",
136 + "postselection",
137 + "confirminstall",
138 + "reipl",
139 + "install",
140 + "preinstallconfig",
141 + "installpackages",
142 + "postinstallconfig",
143 + "writeconfig",
144 + "firstboot",
145 + "instbootloader",
146 + "dopostaction",
147 + "postscripts",
148 + "writeksconfig",
149 + "methodcomplete",
150 + "copylogs",
151 + "setfilecon",
152 + "complete"
153 + )
154 +
155 + if not BETANAG:
156 + dispatch.skipStep("betanag", permanent=1)
157
158 if not iutil.isX86():
159 dispatch.skipStep("bootloader", permanent=1)