| 1 | """ |
1 | """ |
| 2 | Gentoo Linux Installer |
2 | Gentoo Linux Installer |
| 3 | |
3 | |
| 4 | $Id: x86ArchitectureTemplate.py,v 1.1 2004/11/30 21:38:57 samyron Exp $ |
4 | $Id: x86ArchitectureTemplate.py,v 1.2 2005/01/04 09:05:43 codeman Exp $ |
| 5 | Copyright 2004 Gentoo Technologies Inc. |
5 | Copyright 2004 Gentoo Technologies Inc. |
| 6 | |
6 | |
| 7 | |
7 | |
| 8 | This fills in x86 specific functions. |
8 | This fills in x86 specific functions. |
| 9 | """ |
9 | """ |
| … | |
… | |
| 15 | |
15 | |
| 16 | class x86ArchitectureTemplate(ArchitectureTemplate): |
16 | class x86ArchitectureTemplate(ArchitectureTemplate): |
| 17 | def __init__(self,configuration=None, install_profile=None, client_controller=None): |
17 | def __init__(self,configuration=None, install_profile=None, client_controller=None): |
| 18 | ArchitectureTemplate.__init__(self, configuration, install_profile, client_controller) |
18 | ArchitectureTemplate.__init__(self, configuration, install_profile, client_controller) |
| 19 | self._architecture_name = 'x86' |
19 | self._architecture_name = 'x86' |
| 20 | self._install_steps = [self.stage1, self.stage2, self.stage3] |
20 | # self._install_steps = [self.stage1, self.stage2, self.stage3] um, we ain't doin this this way anymore folks. |
| 21 | |
21 | |
| 22 | def partition(self): |
22 | def partition(self): |
| 23 | GLIUtility.run_bash("cfdisk") |
23 | GLIUtility.run_bash("cfdisk") |
| 24 | |
24 | |