11.2Sriastrad/*	$NetBSD: autoconf.h,v 1.2 2014/03/18 18:20:41 riastradh Exp $	*/
21.1Smatt
31.1Smatt/*
41.1Smatt * Copyright (c) 1996 Charles D. Cranor
51.1Smatt * All rights reserved.
61.1Smatt *
71.1Smatt * Redistribution and use in source and binary forms, with or without
81.1Smatt * modification, are permitted provided that the following conditions
91.1Smatt * are met:
101.1Smatt * 1. Redistributions of source code must retain the above copyright
111.1Smatt *    notice, this list of conditions and the following disclaimer.
121.1Smatt * 2. Redistributions in binary form must reproduce the above copyright
131.1Smatt *    notice, this list of conditions and the following disclaimer in the
141.1Smatt *    documentation and/or other materials provided with the distribution.
151.1Smatt *
161.1Smatt * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
171.1Smatt * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
181.1Smatt * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
191.1Smatt * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
201.1Smatt * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
211.1Smatt * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
221.1Smatt * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
231.1Smatt * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
241.1Smatt * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
251.1Smatt * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
261.1Smatt */
271.1Smatt
281.1Smatt/*
291.1Smatt * autoconf.h
301.1Smatt */
311.1Smatt#ifndef _EVBCF_AUTOCONF_H
321.1Smatt#define _EVBCF_AUTOCONF_H
331.1Smatt
341.1Smatt/* the following are from the prom/bootblocks */
351.1Smattextern void	*bootaddr;	/* PA of boot device */
361.1Smattextern int	bootctrllun;	/* ctrl_lun of boot device */
371.1Smattextern int	bootdevlun;	/* dev_lun of boot device */
381.1Smattextern int	bootpart;	/* boot partition (disk) */
391.1Smatt
401.1Smatt#endif /* _EVBCF_AUTOCONF_H */
41