diff options
author | Erik Troan <ewt@redhat.com> | 2001-01-17 17:26:41 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-01-17 17:26:41 +0000 |
commit | ac0cfa6e4f784a6b2da29046ee813909cdb1c88c (patch) | |
tree | a73997a2f90b0ee3e52fcb28d4463b38ad728bf3 /loader | |
parent | b14998e5d4ab8af2b6bfe52b3310404061c75571 (diff) | |
download | anaconda-ac0cfa6e4f784a6b2da29046ee813909cdb1c88c.tar.gz anaconda-ac0cfa6e4f784a6b2da29046ee813909cdb1c88c.tar.xz anaconda-ac0cfa6e4f784a6b2da29046ee813909cdb1c88c.zip |
1) insert ipchains module
2) ideSetup() isn't needed
Diffstat (limited to 'loader')
-rw-r--r-- | loader/loader.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/loader/loader.c b/loader/loader.c index 769652c99..b4b86a72d 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -2452,6 +2452,8 @@ static void scsiSetup(moduleList modLoaded, moduleDeps modDeps, static void ideSetup(moduleList modLoaded, moduleDeps modDeps, moduleInfoSet modInfo, int flags, struct knownDevices * kd) { + +#if 0 startNewt(flags); winStatus(40, 3, _("IDE"), _("Initializing IDE modules...")); @@ -2466,6 +2468,7 @@ static void ideSetup(moduleList modLoaded, moduleDeps modDeps, newtPopWindow(); kdFindIdeList(kd, CODE_PCMCIA); +#endif } int main(int argc, char ** argv) { @@ -2776,6 +2779,7 @@ int main(int argc, char ** argv) { mlLoadModule("raid5", NULL, modLoaded, modDeps, NULL, modInfo, flags); mlLoadModule("vfat", NULL, modLoaded, modDeps, NULL, modInfo, flags); mlLoadModule("ext3", NULL, modLoaded, modDeps, NULL, modInfo, flags); + mlLoadModule("ipchains", NULL, modLoaded, modDeps, NULL, modInfo, flags); usbInitializeMouse(modLoaded, modDeps, modInfo, flags); |