diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-13 05:09:34 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-13 05:09:34 +0000 |
commit | f788b3f04d3286baa4278138550579f35ab14b0d (patch) | |
tree | 98428bc08b3230514a85172f044b23a96b0cc120 | |
parent | 7b96796a72f59117d800cf5406c3de05cad1d43c (diff) | |
download | FreeBSD-src-f788b3f04d3286baa4278138550579f35ab14b0d.zip FreeBSD-src-f788b3f04d3286baa4278138550579f35ab14b0d.tar.gz |
Match the default newfs UFS block size.
-rw-r--r-- | sys/boot/sparc64/boot1/boot1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/sparc64/boot1/boot1.c b/sys/boot/sparc64/boot1/boot1.c index d575775..2760e3c 100644 --- a/sys/boot/sparc64/boot1/boot1.c +++ b/sys/boot/sparc64/boot1/boot1.c @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #define _PATH_LOADER "/boot/loader" #define _PATH_KERNEL "/boot/kernel/kernel" -#define BSIZEMAX 8192 +#define BSIZEMAX 16384 typedef int putc_func_t(int c, void *arg); typedef int32_t ofwh_t; |