diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-13 23:25:12 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-13 23:25:12 +0000 |
commit | 6bc647f9679bdc5afaf50aa368dc4f81f202803e (patch) | |
tree | 40388a12f817b9c65e4dbd77711bc8b495270a31 | |
parent | 19e8c6a44eafb0ce27164034e4d5c7244ac40678 (diff) | |
download | drakx-6bc647f9679bdc5afaf50aa368dc4f81f202803e.tar drakx-6bc647f9679bdc5afaf50aa368dc4f81f202803e.tar.gz drakx-6bc647f9679bdc5afaf50aa368dc4f81f202803e.tar.bz2 drakx-6bc647f9679bdc5afaf50aa368dc4f81f202803e.tar.xz drakx-6bc647f9679bdc5afaf50aa368dc4f81f202803e.zip |
when detected too little memory in ftp/http, inform user that he/she may try an nfs install
-rw-r--r-- | mdk-stage1/network.c | 4 |
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; } |