diff options
| author | Jeremy Katz <katzj@redhat.com> | 2005-09-23 19:28:19 +0000 |
|---|---|---|
| committer | Jeremy Katz <katzj@redhat.com> | 2005-09-23 19:28:19 +0000 |
| commit | ed00d10e697f1e4e56412e93cdcc965f64ff867e (patch) | |
| tree | a3e5b4e7115b7c26c8b5e3135530611093fb9c62 | |
| parent | 2635536279fa9b4c14a3f79f920a89d9c0add6e9 (diff) | |
2005-09-23 Jeremy Katz <katzj@redhat.com>
* loader2/urlinstall.c: Silly fix for constant.
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | loader2/urlinstall.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2005-09-23 Jeremy Katz <katzj@redhat.com> + * loader2/urlinstall.c: Silly fix for constant. + * loader2/loader.c: Don't load parallel port module. (#169135) * loader2/loader.h (LOADER_FLAGS_NOPARPORT): Remove unused flag. * loader2/hardware.c (initializeParallelPort): Remove unused code. diff --git a/loader2/urlinstall.c b/loader2/urlinstall.c index b32f4e4a2..91cfa809a 100644 --- a/loader2/urlinstall.c +++ b/loader2/urlinstall.c @@ -122,7 +122,7 @@ static int loadUrlImages(struct iurlinfo * ui, int flags) { /* require 128MB for use of graphical stage 2 due to size of image */ if (FL_TEXT(flags) || totalMemory() < GUI_STAGE2_RAM) { stage2img = "netstg2.img"; - if (totalMemory() < 128000) + if (totalMemory() < GUI_STAGE2_RAM) logMessage(WARNING, "URLINSTALL falling back to non-GUI stage2 " "due to insufficient RAM"); } else { |
