summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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