| 1 |
# ChangeLog for Gentoo Linux Installer |
| 2 |
# Copyright 2004 Gentoo Technologies, Inc. |
| 3 |
# $Header: /var/cvsroot/gentoo/src/installer/ChangeLog,v 1.15 2004/12/20 07:18:58 agaffney Exp $ |
| 4 |
|
| 5 |
*GLI-0.01 (9 Feb 2004) |
| 6 |
|
| 7 |
19 Dec 2004; Andrew Gaffney <agaffney@gentoo.org> |
| 8 |
Added get_extended_partition() to GLIStorageDevice. Rewrote get_logicals() to |
| 9 |
actually work. Commented out resizability checking code for speed. |
| 10 |
|
| 11 |
17 Dec 2004; Andrew Gaffney <agaffney@gentoo.org> |
| 12 |
Switched to using dumpe2fs to determine free space left in ext2/3 filesystem in |
| 13 |
GLIStorageDevice at the suggestion of plors |
| 14 |
|
| 15 |
10 Dec 2004; Andrew Gaffney <agaffney@gentoo.org> |
| 16 |
Added a function to GLIUtility to pull a value from a make.conf-style config |
| 17 |
file. Minor type fix to GLIInstallProfile.py |
| 18 |
|
| 19 |
09 Dec 2004; Andrew Gaffney <agaffney@gentoo.org> |
| 20 |
Added code in GLIArchitectureTemplate.py to write netmounts into fstab. Separated |
| 21 |
network mounts from partition data structure in GLIInstallProfile |
| 22 |
|
| 23 |
27 Nov 2004; Andrew Gaffney <agaffney@gentoo.org> |
| 24 |
Changed the way GLIStorageDevice.py determines the amount a ext2/3 filesystem |
| 25 |
can be resized. |
| 26 |
|
| 27 |
27 Oct 2004; Preston Cody <codeman@gentoo.org> |
| 28 |
Added some of the final functions to GLIInstallTemplate. |
| 29 |
Yes this project is still active despite rare use of the Changelog! |
| 30 |
|
| 31 |
11 Jun 2004; Nathaniel McCallum <npmccallum@gentoo.org> |
| 32 |
Added the GLIPartitionTools.py file. This is a temporary insertion of |
| 33 |
partitioning tools that will eventually go into their own package. |
| 34 |
|
| 35 |
27 Mar 2004; Nathaniel McCallum <npmccallum@gentoo.org> |
| 36 |
Added InstallProfileTODO.txt. Added GLIClientConfiguration.py (contains run-time |
| 37 |
for the program). Added __init__(install_profile, client_configuration) to |
| 38 |
GLI.InstallProfile. This sets install_profile and client_configuration once so as |
| 39 |
to avoid constantly passing stuff every time we call a method. |
| 40 |
|
| 41 |
26 Mar 2004; Nathaniel McCallum <npmccallum@gentoo.org> |
| 42 |
|
| 43 |
Added another private method to GLI.InstallTemplate. _edit_config() modifies config |
| 44 |
files without messing up all the other stuff in them. This will be used for making |
| 45 |
changes to make.conf, rc.conf, /etc/conf.d/net, etc... |
| 46 |
|
| 47 |
25 Mar 2004; Nathaniel McCallum <npmccallum@gentoo.org> |
| 48 |
|
| 49 |
Added GLI.InstallTemplate framework. This is not yet functional. However, it does |
| 50 |
have a few basic things. I added two private methods. One is _depends(). This |
| 51 |
will be used for dependency checking (ie. unpacking a tarball requires that |
| 52 |
partitioning has been done). The other is _exec_in_chroot(). This is the exact |
| 53 |
same syntax as os.system(), however, instead of being run in the liveCD |
| 54 |
environment, it runs in the chroot. This requires a bit of fork() magic, so I |
| 55 |
isolated the code. Hope to work more this week to get this class formed... |
| 56 |
|
| 57 |
14 Feb 2004; Eric Sammer <esammer@gentoo.org> |
| 58 |
|
| 59 |
Added SAX parsing. Made GLI.InstallProfile a subclass of xml.sax.ContentHandler for |
| 60 |
obvious reasons. Switched kernel_modules and users to be lists instead of tuples |
| 61 |
to allow for easier modification (mutable, rather than immutable objects). Updated |
| 62 |
existing pydoc and added more. Implemented body of GLI.InstallProfile.parse(). |
| 63 |
Cleaned file format of GLI.py a bit. Fixed all accessors to use self references. |
| 64 |
Added initial unit test code. |
| 65 |
|
| 66 |
9 Feb 2004; Eric Sammer <esammer@gentoo.org> |
| 67 |
|
| 68 |
Added initial changelog. Setting up the basic structure of the CVS repository |
| 69 |
for the project. Added the UML class diagram in docs. Added a skeletal GLI |
| 70 |
python module. Added misc files such news, authors, etc. |