summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2011-01-24 02:39:30 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2011-01-24 02:39:30 +0100
commit46b46fbb9169e6be4c33a11f30d700dd72c547ff (patch)
treed8c75c465dbff577cabd5389ed1a4dae4c70b43f
parent85c40d444ada77ff0fd05cc32211fbbe7dba6054 (diff)
200MiB memory is a bit tight in some cases, round up to 256MiB
-rw-r--r--debian/changelog2
-rwxr-xr-xdebian/local/runsystem4
2 files changed, 3 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 82c007c7..5afc194d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,7 +5,7 @@ hurd (20101029-1) UNRELEASED; urgency=low
* debian/local/setup-translators: Add inet6 -> 26 symlink.
* debian/local/finish-install.d/51hurd_config-target-network: Set pfinet
translator on /servers/socket/26 too.
- * debian/local/runsystem: Don't let d-i start if there is less then 200MiB
+ * debian/local/runsystem: Don't let d-i start if there is less then 256MiB
memory. Tell the user he needs to be patient while the d-i templates get
loaded.
diff --git a/debian/local/runsystem b/debian/local/runsystem
index ea014477..9019d191 100755
--- a/debian/local/runsystem
+++ b/debian/local/runsystem
@@ -9,10 +9,10 @@ export PATH
/hurd/mach-defpager
mem=`vmstat-hurd --size -k`
-if [ "$mem" -lt 190000 ]
+if [ "$mem" -lt 240000 ]
then
echo "You only have ${mem}KiB memory."
- echo "Debian GNU/Hurd installation currently needs at least 200MiB memory, sorry."
+ echo "Debian GNU/Hurd installation currently needs at least 256MiB memory, sorry."
while true
do
sleep 60