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