summaryrefslogtreecommitdiffstats
path: root/mdk-stage1
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-02-13 23:25:12 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-02-13 23:25:12 +0000
commit6bc647f9679bdc5afaf50aa368dc4f81f202803e (patch)
tree40388a12f817b9c65e4dbd77711bc8b495270a31 /mdk-stage1
parent19e8c6a44eafb0ce27164034e4d5c7244ac40678 (diff)
downloaddrakx-backup-do-not-use-6bc647f9679bdc5afaf50aa368dc4f81f202803e.tar
drakx-backup-do-not-use-6bc647f9679bdc5afaf50aa368dc4f81f202803e.tar.gz
drakx-backup-do-not-use-6bc647f9679bdc5afaf50aa368dc4f81f202803e.tar.bz2
drakx-backup-do-not-use-6bc647f9679bdc5afaf50aa368dc4f81f202803e.tar.xz
drakx-backup-do-not-use-6bc647f9679bdc5afaf50aa368dc4f81f202803e.zip
when detected too little memory in ftp/http, inform user that he/she may try an nfs install
Diffstat (limited to 'mdk-stage1')
-rw-r--r--mdk-stage1/network.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c
index feeda28e0..6e3449f76 100644
--- a/mdk-stage1/network.c
+++ b/mdk-stage1/network.c
@@ -693,7 +693,7 @@ enum return_type ftp_prepare(void)
enum return_type results;
if (!ramdisk_possible()) {
- stg1_error_message("FTP install needs more than %d Mbytes of memory (detected %d Mbytes).",
+ stg1_error_message("FTP install needs more than %d Mbytes of memory (detected %d Mbytes). You may want to try an NFS install.",
MEM_LIMIT_RAMDISK, total_memory());
return RETURN_ERROR;
}
@@ -780,7 +780,7 @@ enum return_type http_prepare(void)
enum return_type results;
if (!ramdisk_possible()) {
- stg1_error_message("HTTP install needs more than %d Mbytes of memory (detected %d Mbytes).",
+ stg1_error_message("HTTP install needs more than %d Mbytes of memory (detected %d Mbytes). You may want to try an NFS install.",
MEM_LIMIT_RAMDISK, total_memory());
return RETURN_ERROR;
}