bootinfo.h revision 1.1
11.1Spooka/* $NetBSD: bootinfo.h,v 1.1 2011/01/26 01:18:54 pooka Exp $ */ 21.1Spooka 31.1Spooka/*- 41.1Spooka * Copyright (c) 1999 The NetBSD Foundation, Inc. 51.1Spooka * All rights reserved. 61.1Spooka * 71.1Spooka * This code is derived from software contributed to The NetBSD Foundation 81.1Spooka * by Jonathan Stone, Michael Hitch and Simon Burge. 91.1Spooka * 101.1Spooka * Redistribution and use in source and binary forms, with or without 111.1Spooka * modification, are permitted provided that the following conditions 121.1Spooka * are met: 131.1Spooka * 1. Redistributions of source code must retain the above copyright 141.1Spooka * notice, this list of conditions and the following disclaimer. 151.1Spooka * 2. Redistributions in binary form must reproduce the above copyright 161.1Spooka * notice, this list of conditions and the following disclaimer in the 171.1Spooka * documentation and/or other materials provided with the distribution. 181.1Spooka * 3. All advertising materials mentioning features or use of this software 191.1Spooka * must display the following acknowledgement: 201.1Spooka * This product includes software developed by the NetBSD 211.1Spooka * Foundation, Inc. and its contributors. 221.1Spooka * 4. Neither the name of The NetBSD Foundation nor the names of its 231.1Spooka * contributors may be used to endorse or promote products derived 241.1Spooka * from this software without specific prior written permission. 251.1Spooka * 261.1Spooka * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 271.1Spooka * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 281.1Spooka * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 291.1Spooka * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 301.1Spooka * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 311.1Spooka * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 321.1Spooka * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 331.1Spooka * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 341.1Spooka * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 351.1Spooka * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 361.1Spooka * POSSIBILITY OF SUCH DAMAGE. 371.1Spooka */ 381.1Spooka 391.1Spooka#include <machine/bootinfo.h> 401.1Spooka 411.1Spookavoid bi_init (paddr_t); 421.1Spookavoid bi_add (void *, int, int); 431.1Spookaextern char *bootinfo; 44