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