summaryrefslogtreecommitdiffstats
path: root/loader2
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2008-02-07 20:54:21 +0100
committerJoel Andres Granados <jgranado@redhat.com>2008-02-07 20:55:26 +0100
commitded73d8bc4eace67ae7dbeb7001c76f26344a6a1 (patch)
tree5397987377a982cf1585b9568fc542911a09c79f /loader2
parent1f0f6a97c2f23716790a31a9ee5b8ba31c9f1bca (diff)
downloadanaconda-ded73d8bc4eace67ae7dbeb7001c76f26344a6a1.tar.gz
anaconda-ded73d8bc4eace67ae7dbeb7001c76f26344a6a1.tar.xz
anaconda-ded73d8bc4eace67ae7dbeb7001c76f26344a6a1.zip
The FL_TEXT flag has no reason to be here. (#207657)
Diffstat (limited to 'loader2')
-rw-r--r--loader2/urlinstall.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/loader2/urlinstall.c b/loader2/urlinstall.c
index 3fff562b3..c27a1aa6c 100644
--- a/loader2/urlinstall.c
+++ b/loader2/urlinstall.c
@@ -136,10 +136,9 @@ static int loadUrlImages(struct iurlinfo * ui) {
}
/* require 128MB for use of graphical stage 2 due to size of image */
- if (FL_TEXT(flags) || totalMemory() < GUI_STAGE2_RAM) {
- stage2img = "minstg2.img";
- if (totalMemory() < GUI_STAGE2_RAM)
- logMessage(WARNING, "URLINSTALL falling back to non-GUI stage2 "
+ if (totalMemory() < GUI_STAGE2_RAM) {
+ stage2img = "minstg2.img";
+ logMessage(WARNING, "URLINSTALL falling back to non-GUI stage2 "
"due to insufficient RAM");
} else {
stage2img = "stage2.img";