1 1.1 pooka /* $NetBSD: autoconf.h,v 1.1 2011/01/26 01:18:51 pooka Exp $ */ 2 1.1 pooka 3 1.1 pooka /* 4 1.1 pooka * Copyright (c) 1994, 1995 Carnegie-Mellon University. 5 1.1 pooka * All rights reserved. 6 1.1 pooka * 7 1.1 pooka * Author: Chris G. Demetriou 8 1.1 pooka * 9 1.1 pooka * Permission to use, copy, modify and distribute this software and 10 1.1 pooka * its documentation is hereby granted, provided that both the copyright 11 1.1 pooka * notice and this permission notice appear in all copies of the 12 1.1 pooka * software, derivative works or modified versions, and any portions 13 1.1 pooka * thereof, and that both notices appear in supporting documentation. 14 1.1 pooka * 15 1.1 pooka * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 16 1.1 pooka * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 17 1.1 pooka * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. 18 1.1 pooka * 19 1.1 pooka * Carnegie Mellon requests users of this software to return to 20 1.1 pooka * 21 1.1 pooka * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU 22 1.1 pooka * School of Computer Science 23 1.1 pooka * Carnegie Mellon University 24 1.1 pooka * Pittsburgh PA 15213-3890 25 1.1 pooka * 26 1.1 pooka * any improvements or extensions that they make and grant Carnegie the 27 1.1 pooka * rights to redistribute these changes. 28 1.1 pooka */ 29 1.1 pooka 30 1.1 pooka #ifndef _EMIPS_AUTOCONF_H_ 31 1.1 pooka #define _EMIPS_AUTOCONF_H_ 32 1.1 pooka 33 1.1 pooka /* 34 1.1 pooka * Machine-dependent structures for autoconfiguration 35 1.1 pooka */ 36 1.1 pooka 37 1.1 pooka struct mainbus_attach_args { 38 1.1 pooka const char *ma_name; /* device name */ 39 1.1 pooka int ma_slot; /* CPU "slot" number; only meaningful 40 1.1 pooka when attaching CPUs */ 41 1.1 pooka }; 42 1.1 pooka 43 1.1 pooka void makebootdev __P((char *)); 44 1.1 pooka 45 1.1 pooka #endif /* !_EMIPS_AUTOCONF_H_ */ 46