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: Thu, 30 Jun 2011 22:53:22
Message-Id: 2cb6a5b059ec591b9b9fad295d8db2f8a657bb91.wiktor@gentoo
1 commit: 2cb6a5b059ec591b9b9fad295d8db2f8a657bb91
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Thu Jun 30 22:52:53 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Thu Jun 30 22:52:53 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=2cb6a5b0
7
8 installclass.py: add makeconf step
9
10 ---
11 installclass.py | 34 +++++++++++++++++++++++++++-------
12 1 files changed, 27 insertions(+), 7 deletions(-)
13
14 diff --git a/installclass.py b/installclass.py
15 index 1917080..d3d347a 100644
16 --- a/installclass.py
17 +++ b/installclass.py
18 @@ -80,26 +80,48 @@ class BaseInstallClass(object):
19 def setSteps(self, anaconda):
20 dispatch = anaconda.dispatch
21 dispatch.setStepList(
22 + # Welcome
23 + "welcome",
24 "language",
25 "keyboard",
26 - "welcome",
27 + "betanag",
28 +
29 + # Preparing the Disks
30 "filtertype",
31 "filter",
32 "storageinit",
33 "findrootparts",
34 - "betanag",
35 "installtype",
36 "cleardiskssel",
37 "parttype",
38 "autopartitionexecute",
39 "partition",
40 "storagedone",
41 - "bootloadersetup",
42 - "bootloader",
43 - "network",
44 + "enablefilesystems",
45 +
46 + # Installing the Gentoo Installation Files
47 + "makeconf",
48 +
49 + # Installing the Gentoo Base System
50 +
51 + # Configuring the Kernel
52 "timezone",
53 + "setuptime",
54 +
55 + # Configuring your System
56 + "network",
57 "accounts",
58 +
59 + # Installing Necessary System Tools
60 +
61 + # Configuring the Bootloader
62 + "bootloadersetup",
63 + "bootloader",
64 +
65 + # Finalizing your Gentoo Installation
66 "useraccounts",
67 +
68 + # Misc
69 "reposetup",
70 "basepkgsel",
71 "tasksel",
72 @@ -107,8 +129,6 @@ class BaseInstallClass(object):
73 "confirminstall",
74 "reipl",
75 "install",
76 - "enablefilesystems",
77 - "setuptime",
78 "preinstallconfig",
79 "installpackages",
80 "postinstallconfig",