changeset 238:acc6809a6d76

Set image size back down to 256 megs. If you need space, add a /dev/hdb.
author Rob Landley <rob@landley.net>
date Tue, 30 Oct 2007 16:05:53 -0500
parents 735ee8a5ca35
children c36355e307b4
files package-mini-native.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/package-mini-native.sh	Tue Oct 30 05:42:21 2007 -0500
+++ b/package-mini-native.sh	Tue Oct 30 16:05:53 2007 -0500
@@ -10,7 +10,7 @@
 
 # A 256 meg sparse image
 rm -f "$IMAGE"
-dd if=/dev/zero of="$IMAGE" bs=1024 seek=$[2048*1024-1] count=1 &&
+dd if=/dev/zero of="$IMAGE" bs=1024 seek=$[256*1024-1] count=1 &&
 /sbin/mke2fs -b 1024 -F "$IMAGE" &&
 
 # User User Mode Linux to package this, until toybox mke2fs is ready.