diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-07-13 21:14:54 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-07-13 21:14:54 +0000 |
commit | 3ba73a2df668205b13147c0c02fdbef300eb2109 (patch) | |
tree | f752d1879050ea76ba2235003adb5e5305139775 | |
parent | 769e452071b2e00bcb6a9a1f34a8b9114302a4bd (diff) | |
download | anaconda-3ba73a2df668205b13147c0c02fdbef300eb2109.tar.gz anaconda-3ba73a2df668205b13147c0c02fdbef300eb2109.tar.xz anaconda-3ba73a2df668205b13147c0c02fdbef300eb2109.zip |
2006-07-13 Jeremy Katz <katzj@redhat.com>
* loader2/hardware.c (scsiSetup): Always load iSCSI modules.
-rw-r--r-- | ChangeLog | 31 | ||||
-rw-r--r-- | loader2/hardware.c | 4 |
2 files changed, 31 insertions, 4 deletions
@@ -1,3 +1,32 @@ +2006-07-13 Jeremy Katz <katzj@redhat.com> + + * loader2/hardware.c (scsiSetup): Always load iSCSI modules. + + * iw/autopart_type.py: Support add drive button, add basic + infrastructure for adding disks, specifically for iSCSI. + + * ui/iscsi-config.glade: Change around to use a dialog for + configuring iSCSI targets. + + * ui/adddrive.glade: Glade file for adding disks. + + * ui/autopart.glade: Add add disk button. + + * iscsi.py: Rework a bit to handle multiple targets. + + * iw/partition_ui_helpers_gui.py (createAllowedDrivesStore): Split + store creation out of drive list creation so we can recreate it. + + * iw/iscsi_gui.py: Remove in favor of more integrated way of + configuring + * textw/iscsi_text.py: Likewise. + * dispatch.py (installSteps): Remove iscsi step. + * installclass.py: Likewise. + * gui.py: Likewise. + * text.py: Likewise. + + * exception.py (handleException): Don't do stdio bits for test mode. + 2006-07-13 Chris Lumens <clumens@redhat.com> * loader2/loader.h: Add noipv4 and noipv6 elements to loaderData. @@ -11,7 +40,7 @@ * anaconda.spec: Bump version -2006-07-13 Jeremy Katz <katzj@redhat.com> +2006-07-13 Jeremy Katz <katzj@redhat.com> * scripts/upd-instroot (XORG): Add xkeyboard-config to fix VT switching diff --git a/loader2/hardware.c b/loader2/hardware.c index 956c04026..3ecf28bcf 100644 --- a/loader2/hardware.c +++ b/loader2/hardware.c @@ -253,9 +253,7 @@ void scsiSetup(moduleList modLoaded, moduleDeps modDeps, #if defined(__s390__) || defined(__s390x__) mlLoadModule("zfcp", modLoaded, modDeps, modInfo, NULL); #endif - if (FL_ISCSI(flags)) - mlLoadModule("iscsi_tcp", modLoaded, modDeps, modInfo, NULL); - + mlLoadModule("iscsi_tcp", modLoaded, modDeps, modInfo, NULL); } void ideSetup(moduleList modLoaded, moduleDeps modDeps, |