From b3facf5a7d6731f9971173c844e9ba9395096cd3 Mon Sep 17 00:00:00 2001 From: lukem Date: Fri, 17 May 2002 18:53:34 +0000 Subject: [PATCH] reduce MACPPC_BOOT_BLOCK_MAX_SIZE from 6K to 2K, to fit what bootxx is limited to (and a CDROM limitation as well?) --- sys/sys/bootblock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/bootblock.h b/sys/sys/bootblock.h index c07efc898218..607b116388f7 100644 --- a/sys/sys/bootblock.h +++ b/sys/sys/bootblock.h @@ -1,4 +1,4 @@ -/* $NetBSD: bootblock.h,v 1.6 2002/05/15 13:32:10 lukem Exp $ */ +/* $NetBSD: bootblock.h,v 1.7 2002/05/17 18:53:34 lukem Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -252,7 +252,7 @@ struct apple_part_map_entry { #define MACPPC_BOOT_BLOCK_OFFSET 2048 #define MACPPC_BOOT_BLOCK_BLOCKSIZE 512 -#define MACPPC_BOOT_BLOCK_MAX_SIZE (512 * 12) +#define MACPPC_BOOT_BLOCK_MAX_SIZE 2048 /* XXX: could be up to 6144 */ /* Magic string -- 32 bytes long (including the NUL) */ #define MACPPC_BBINFO_MAGIC "NetBSD/macppc bootxx 20020515"