diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-04 23:43:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-04 23:43:13 +0000 |
commit | 96a9e68b613b161948af09cf3e81a82b45bc3980 (patch) | |
tree | 39172012d1983ff81fabb8384504caf8a71f3731 /distrib/hppa/ramdisk | |
parent | 70efc716c63d9d00939e569e5b22a93e2ba64300 (diff) |
bsd.rd's physical memory usage collided with the bootblocks... The
bootblocks have been moved, but we want 4.2 to be upgradeable. So
reduce the footprint of the bsd.rd by shrinking the ramdisk filesystem
because it is way too large. tested by sthen and kettenis
Diffstat (limited to 'distrib/hppa/ramdisk')
-rw-r--r-- | distrib/hppa/ramdisk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/hppa/ramdisk/Makefile b/distrib/hppa/ramdisk/Makefile index 7383129d669..b6b81bb9652 100644 --- a/distrib/hppa/ramdisk/Makefile +++ b/distrib/hppa/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2008/01/11 10:16:40 espie Exp $ +# $OpenBSD: Makefile,v 1.13 2008/03/04 23:43:11 deraadt Exp $ CBIN= instbin ARCHDIR= ${.CURDIR}/.. @@ -18,7 +18,7 @@ DISKTYPE= rdroot PID!= echo $$$$ REALIMAGE!= echo /tmp/image.${PID} IMAGE?= ramdisk${REV}.fs -IMAGESIZE?= 5120 # 2.5MB in 512 byte blocks +IMAGESIZE?= 4608 # 2.25MB in 512 byte blocks NEWFS_WILL_FAIL?=false RDSETROOT?= elfrdsetroot CRUNCHGENOPTS?=-E |