From 46b46fbb9169e6be4c33a11f30d700dd72c547ff Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 24 Jan 2011 02:39:30 +0100 Subject: 200MiB memory is a bit tight in some cases, round up to 256MiB --- debian/changelog | 2 +- debian/local/runsystem | 4 ++-- 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 -- cgit v1.2.3