aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-07-05 13:54:57 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-07-05 13:54:57 +0000
commit559bda2a9472f03be99235be80fe262e41b03663 (patch)
treef477f0a35739e095b08c7c90ff7e44c61c259cf6 /gentoo/livecd.py
parentgentoo/utils.py: stupid editor putting tabs instead of spaces (diff)
downloadanaconda-559bda2a9472f03be99235be80fe262e41b03663.tar.gz
anaconda-559bda2a9472f03be99235be80fe262e41b03663.tar.bz2
anaconda-559bda2a9472f03be99235be80fe262e41b03663.zip
Fix profile selection
Diffstat (limited to 'gentoo/livecd.py')
-rw-r--r--gentoo/livecd.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gentoo/livecd.py b/gentoo/livecd.py
index 40c8005..c9e7402 100644
--- a/gentoo/livecd.py
+++ b/gentoo/livecd.py
@@ -57,8 +57,8 @@ class LiveCDCopyBackend(backend.AnacondaBackend):
self._root = anaconda.rootPath
self.osimg = anaconda.methodstr[8:]
- # On Gentoo we're using a stage3 as an installation source
- # FIXME: Replace this with checking for stage3
+ # On Gentoo we're using a stage3 as an installation source
+ # FIXME: Replace this with checking for stage3
#if not os.path.ismount(self.osimg):
# anaconda.intf.messageWindow(_("Unable to find image"),
# _("The given location [%s] isn't a valid %s "
@@ -112,11 +112,11 @@ class LiveCDCopyBackend(backend.AnacondaBackend):
self._progress.set_label(_("Installing Gentoo onto hard drive."))
self._progress.set_fraction(0.0)
- self._gentoo_install.copy_portage()
# Actually install
self._gentoo_install.live_install()
# Now copy the portage tree
+ self._gentoo_install.copy_portage()
self._gentoo_install.set_profile()
self._gentoo_install.install_setup_tools()
@@ -137,7 +137,7 @@ class LiveCDCopyBackend(backend.AnacondaBackend):
self._gentoo_install.setup_audio()
self._gentoo_install.setup_xorg()
self._gentoo_install.remove_proprietary_drivers()
- # TODO: This needs to be tried and fixed properly on Gentoo once installing X works
+ # TODO: This needs to be tried and fixed properly on Gentoo once installing X works
try:
self._gentoo_install.setup_nvidia_legacy()
except Exception as e: