aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dispatch.py1
-rwxr-xr-xgui.py1
-rw-r--r--installclass.py1
-rw-r--r--iw/welcome_gui.py6
4 files changed, 9 insertions, 0 deletions
diff --git a/dispatch.py b/dispatch.py
index 6cd9744..d2e02a4 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -94,6 +94,7 @@ installSteps = [
("enablefilesystems", turnOnFilesystems, ),
# Installing the Gentoo Installation Files
+ ("installationfiles", installationfiles, )
("makeconf", ),
# Installing the Gentoo Base System
diff --git a/gui.py b/gui.py
index be3980a..f7e726f 100755
--- a/gui.py
+++ b/gui.py
@@ -78,6 +78,7 @@ stepToClass = {
"upgrademigratefs" : ("upgrade_migratefs_gui", "UpgradeMigrateFSWindow"),
# Installing the Gentoo Installation Files
+ "installationfiles" : ("makeconf_gui", "MakeconfWindow"),
"makeconf" : ("makeconf_gui", "MakeconfWindow"),
# Installing the Gentoo Base System
diff --git a/installclass.py b/installclass.py
index eb8802e..ae88810 100644
--- a/installclass.py
+++ b/installclass.py
@@ -101,6 +101,7 @@ class BaseInstallClass(object):
"enablefilesystems",
# Installing the Gentoo Installation Files
+ "installationfiles",
"makeconf",
# Installing the Gentoo Base System
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py
index 2bf674a..c38681b 100644
--- a/iw/welcome_gui.py
+++ b/iw/welcome_gui.py
@@ -55,6 +55,12 @@ class WelcomeWindow (InstallWindow):
necessary partitions. The following screens will \
help you choose the right disk configuration for \
your system."), 4)
+
+ def installationfiles(self, anaconda):
+ self.setWindow(_("Installing the Gentoo Installation Files"),
+ _("Gentoo installs work through a stage3 archive. In \
+ this chapter the installer will help you choose the \
+ right compilation options for your machine. "), 5)
def getNext(self):
return None