From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QcQ6p-0004zW-Sy for garchives@archives.gentoo.org; Thu, 30 Jun 2011 22:53:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46EFB1C004; Thu, 30 Jun 2011 22:53:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 149371C004 for ; Thu, 30 Jun 2011 22:53:11 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72A051B4063 for ; Thu, 30 Jun 2011 22:53:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 80CB98003C for ; Thu, 30 Jun 2011 22:53:10 +0000 (UTC) From: "Wiktor W Brodlo" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Wiktor W Brodlo" Message-ID: <2cb6a5b059ec591b9b9fad295d8db2f8a657bb91.wiktor@gentoo> Subject: [gentoo-commits] proj/anaconda:master commit in: / X-VCS-Repository: proj/anaconda X-VCS-Files: installclass.py X-VCS-Directories: / X-VCS-Committer: wiktor X-VCS-Committer-Name: Wiktor W Brodlo X-VCS-Revision: 2cb6a5b059ec591b9b9fad295d8db2f8a657bb91 Date: Thu, 30 Jun 2011 22:53:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: c1b7136a5d88312be2690d11d0525ac9 commit: 2cb6a5b059ec591b9b9fad295d8db2f8a657bb91 Author: wiktor w brodlo brodlo net> AuthorDate: Thu Jun 30 22:52:53 2011 +0000 Commit: Wiktor W Brodlo brodlo net> CommitDate: Thu Jun 30 22:52:53 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;= a=3Dcommit;h=3D2cb6a5b0 installclass.py: add makeconf step --- installclass.py | 34 +++++++++++++++++++++++++++------- 1 files changed, 27 insertions(+), 7 deletions(-) diff --git a/installclass.py b/installclass.py index 1917080..d3d347a 100644 --- a/installclass.py +++ b/installclass.py @@ -80,26 +80,48 @@ class BaseInstallClass(object): def setSteps(self, anaconda): dispatch =3D anaconda.dispatch dispatch.setStepList( + # Welcome=20 + "welcome", "language", "keyboard", - "welcome", + "betanag", + + # Preparing the Disks "filtertype", "filter", "storageinit", "findrootparts", - "betanag", "installtype", "cleardiskssel", "parttype", "autopartitionexecute", "partition", "storagedone", - "bootloadersetup", =20 - "bootloader", - "network", + "enablefilesystems", =20 + + # Installing the Gentoo Installation Files + "makeconf",=20 + + # Installing the Gentoo Base System + + # Configuring the Kernel "timezone", + "setuptime", + + # Configuring your System + "network", "accounts", + + # Installing Necessary System Tools + + # Configuring the Bootloader + "bootloadersetup", =20 + "bootloader", + + # Finalizing your Gentoo Installation "useraccounts", + + # Misc "reposetup", "basepkgsel", "tasksel", =20 @@ -107,8 +129,6 @@ class BaseInstallClass(object): "confirminstall", "reipl", "install", - "enablefilesystems", - "setuptime", "preinstallconfig", "installpackages", "postinstallconfig",