Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src/sys/arch/i386/stand/lib Pull up following revision(s) (re...
details: https://anonhg.NetBSD.org/src/rev/0081c6a31406
branches: netbsd-8
changeset: 434600:0081c6a31406
user: martin <martin%NetBSD.org@localhost>
date: Sun Feb 04 12:46:04 2018 +0000
description:
Pull up following revision(s) (requested by pgoyette in ticket #521):
sys/arch/i386/stand/lib/bootinfo.h: revision 1.12
Recent changes have increased the number of "things" the bootloader
needs to deal with. Increase the table size so we don't overflow.
diffstat:
sys/arch/i386/stand/lib/bootinfo.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 53dda3ec4719 -r 0081c6a31406 sys/arch/i386/stand/lib/bootinfo.h
--- a/sys/arch/i386/stand/lib/bootinfo.h Sun Feb 04 12:43:57 2018 +0000
+++ b/sys/arch/i386/stand/lib/bootinfo.h Sun Feb 04 12:46:04 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bootinfo.h,v 1.11 2016/06/05 14:13:57 maxv Exp $ */
+/* $NetBSD: bootinfo.h,v 1.11.10.1 2018/02/04 12:46:04 martin Exp $ */
/*
* Copyright (c) 1997
@@ -35,7 +35,7 @@
extern struct bootinfo *bootinfo;
-#define BTINFO_MAX 32
+#define BTINFO_MAX 64
#define BI_ALLOC(max) (bootinfo = alloc(sizeof(struct bootinfo) \
+ ((max) - 1) * sizeof(uint32_t))) \
Home |
Main Index |
Thread Index |
Old Index