summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/stage1.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-11-04 17:59:25 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-11-04 17:59:25 +0000
commit7e51f93bebf1015500cb0786254963aa2a3d21ce (patch)
tree905a6e0e48aa09e26cdd6df4e316aa72bb41450b /mdk-stage1/stage1.c
parent53b29b4e08fb1f5c5e55f24aa8bd0030f0a7399c (diff)
downloaddrakx-backup-do-not-use-7e51f93bebf1015500cb0786254963aa2a3d21ce.tar
drakx-backup-do-not-use-7e51f93bebf1015500cb0786254963aa2a3d21ce.tar.gz
drakx-backup-do-not-use-7e51f93bebf1015500cb0786254963aa2a3d21ce.tar.bz2
drakx-backup-do-not-use-7e51f93bebf1015500cb0786254963aa2a3d21ce.tar.xz
drakx-backup-do-not-use-7e51f93bebf1015500cb0786254963aa2a3d21ce.zip
hack up a warning message when we're in low mem. chosen 120 mbytes, need to be refined later.
Diffstat (limited to 'mdk-stage1/stage1.c')
-rw-r--r--mdk-stage1/stage1.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mdk-stage1/stage1.c b/mdk-stage1/stage1.c
index 618f393c7..8f92e7f98 100644
--- a/mdk-stage1/stage1.c
+++ b/mdk-stage1/stage1.c
@@ -588,6 +588,9 @@ int main(int argc __attribute__ ((unused)), char **argv __attribute__ ((unused))
}
#ifdef MANDRAKE_MOVE
+ if (total_memory() < MEM_LIMIT_MOVE)
+ stg1_error_message(DISTRIB_NAME " typically needs more than %d Mbytes of memory (detected %d Mbytes). You may proceed, but the machine may crash or lock up for no apparent reason. Continue at your own risk. Alternatively, you may reboot your system now.",
+ MEM_LIMIT_MOVE, total_memory());
if (mandrake_move_pre() != RETURN_OK)
stg1_error_message("Fatal error when preparing Mandrake Move.");
#endif