aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-06-30 18:44:08 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-06-30 18:44:08 +0000
commit337cbe6b78809ed278d4412df2d13dd69c323834 (patch)
tree667fce48f1727c253c6db9cc25826efe2565efa3 /dispatch.py
parentui/systools.glade: syslog and cron (diff)
downloadanaconda-337cbe6b78809ed278d4412df2d13dd69c323834.tar.gz
anaconda-337cbe6b78809ed278d4412df2d13dd69c323834.tar.bz2
anaconda-337cbe6b78809ed278d4412df2d13dd69c323834.zip
Rearranged the screen order in the dispatcher to follow the handbook
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py32
1 files changed, 27 insertions, 5 deletions
diff --git a/dispatch.py b/dispatch.py
index 66eb052..de4ea7e 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -66,20 +66,18 @@ log = logging.getLogger("anaconda")
# All install steps take the anaconda object as their sole argument. This
# gets passed in when we call the function.
installSteps = [
+ # Welcome
("welcome", ),
("language", ),
("keyboard", ),
("betanag", betaNagScreen, ),
+
+ # Preparing the Disks
("filtertype", ),
("filter", ),
("storageinit", storageInitialize, ),
("findrootparts", findRootParts, ),
("findinstall", ),
- ("network", ),
- ("timezone", ),
- ("accounts", ),
- ("useraccounts", ),
- ("setuptime", setupTimezone, ),
("parttype", ),
("cleardiskssel", ),
("autopartitionexecute", doAutoPartition, ),
@@ -93,9 +91,33 @@ installSteps = [
("upgrademigratefs", ),
("storagedone", storageComplete, ),
("enablefilesystems", turnOnFilesystems, ),
+
+ # Installing the Gentoo Installation Files
+ # make.conf
+
+ # Installing the Gentoo Base System
+ # mirrorselect
+ # profile
+ # use
+
+ # Configuring your System
+ ("network", ),
+ ("accounts", ),
+ ("timezone", ),
+ ("setuptime", setupTimezone, ),
+
+ # Installing Necessary System Tools
+ # syslog and cron
+
+ # Configuring the Bootloader
("upgbootloader", ),
("bootloadersetup", bootloaderSetupChoices, ),
("bootloader", ),
+
+ # Finalizing your Gentoo Installation
+ ("useraccounts", ),
+
+ # Install
("reposetup", doBackendSetup, ),
("tasksel", ),
("basepkgsel", doBasePackageSelect, ),