Module Name:    src
Committed By:   jmcneill
Date:           Thu Jun 14 10:53:40 UTC 2018

Modified Files:
        src/sys/arch/evbarm/fdt: fdt_machdep.c

Log Message:
Increase storage space for FDT data


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/evbarm/fdt/fdt_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/evbarm/fdt/fdt_machdep.c
diff -u src/sys/arch/evbarm/fdt/fdt_machdep.c:1.21 src/sys/arch/evbarm/fdt/fdt_machdep.c:1.22
--- src/sys/arch/evbarm/fdt/fdt_machdep.c:1.21	Sun Apr  1 04:35:04 2018
+++ src/sys/arch/evbarm/fdt/fdt_machdep.c	Thu Jun 14 10:53:39 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: fdt_machdep.c,v 1.21 2018/04/01 04:35:04 ryo Exp $ */
+/* $NetBSD: fdt_machdep.c,v 1.22 2018/06/14 10:53:39 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2015-2017 Jared McNeill <jmcne...@invisible.ca>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fdt_machdep.c,v 1.21 2018/04/01 04:35:04 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fdt_machdep.c,v 1.22 2018/06/14 10:53:39 jmcneill Exp $");
 
 #include "opt_machdep.h"
 #include "opt_bootconfig.h"
@@ -107,7 +107,7 @@ static uint64_t initrd_start, initrd_end
 
 #include <libfdt.h>
 #include <dev/fdt/fdtvar.h>
-#define FDT_BUF_SIZE	(128*1024)
+#define FDT_BUF_SIZE	(256*1024)
 static uint8_t fdt_data[FDT_BUF_SIZE];
 
 extern char KERNEL_BASE_phys[];

Reply via email to