aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe/gtk/ExtraPackages.py')
-rw-r--r--src/fe/gtk/ExtraPackages.py19
1 files changed, 6 insertions, 13 deletions
diff --git a/src/fe/gtk/ExtraPackages.py b/src/fe/gtk/ExtraPackages.py
index 599acfd..9dca2ff 100644
--- a/src/fe/gtk/ExtraPackages.py
+++ b/src/fe/gtk/ExtraPackages.py
@@ -20,14 +20,9 @@ class Panel(GLIScreen):
_helptext = """
<b><u>Extra Packages</u></b>
-If you're doing a networkless install, all of the packages listed on the right \
-are available for the installer to install directly from the LiveCD (including \
-dependencies) without access to the internet.
-
-If you're not doing a networkless install, all of your packages will be \
-compiled from source. The list on the right is by no means comprehensive. If \
-there are other packages you wish to install, enter them below separated by \
-spaces.
+All of the packages listed on the right are available for the installer to \
+install directly from the LiveCD (including dependencies) without access to \
+the internet.
If you choose a graphical desktop such as gnome, kde, or fluxbox, be sure to \
also select xorg-x11 from the list. Otherwise, you will not have a fully \
@@ -63,6 +58,9 @@ caution. These trouble packages can be installed manually after you reboot.
self.categories = self.controller.install_profile.get_install_package_list()
self.grp_packages = GLIUtility.get_grp_pkgs_from_cd()
+
+ # Add kernel packages to the list
+ self.categories['Kernel Modules'] = (_(u"External kernel modules for additional hardware support"), GLIUtility.get_kernpkgs_from_cd())
# first load the category
for category in self.categories:
@@ -82,11 +80,6 @@ caution. These trouble packages can be installed manually after you reboot.
else:
displayname = package
- # if its a grp install, append (GRP) to the name
- if self.controller.install_profile.get_grp_install():
- if package in self.grp_packages:
- displayname = displayname + " (GRP)"
-
pack = self.Package(self, package, packages[package], displayname)
self.package_objects[package] = pack
hbox = pack.Generate_GTK()