1*b1c4ba4aSLionel Sambuc /* $NetBSD: param.h,v 1.2 2002/02/12 06:58:19 thorpej Exp $ */ 2*b1c4ba4aSLionel Sambuc 3*b1c4ba4aSLionel Sambuc /* 4*b1c4ba4aSLionel Sambuc * Copyright (c) 1994,1995 Mark Brinicombe. 5*b1c4ba4aSLionel Sambuc * All rights reserved. 6*b1c4ba4aSLionel Sambuc * 7*b1c4ba4aSLionel Sambuc * Redistribution and use in source and binary forms, with or without 8*b1c4ba4aSLionel Sambuc * modification, are permitted provided that the following conditions 9*b1c4ba4aSLionel Sambuc * are met: 10*b1c4ba4aSLionel Sambuc * 1. Redistributions of source code must retain the above copyright 11*b1c4ba4aSLionel Sambuc * notice, this list of conditions and the following disclaimer. 12*b1c4ba4aSLionel Sambuc * 2. Redistributions in binary form must reproduce the above copyright 13*b1c4ba4aSLionel Sambuc * notice, this list of conditions and the following disclaimer in the 14*b1c4ba4aSLionel Sambuc * documentation and/or other materials provided with the distribution. 15*b1c4ba4aSLionel Sambuc * 3. All advertising materials mentioning features or use of this software 16*b1c4ba4aSLionel Sambuc * must display the following acknowledgement: 17*b1c4ba4aSLionel Sambuc * This product includes software developed by the RiscBSD team. 18*b1c4ba4aSLionel Sambuc * 4. The name "RiscBSD" nor the name of the author may be used to 19*b1c4ba4aSLionel Sambuc * endorse or promote products derived from this software without specific 20*b1c4ba4aSLionel Sambuc * prior written permission. 21*b1c4ba4aSLionel Sambuc * 22*b1c4ba4aSLionel Sambuc * THIS SOFTWARE IS PROVIDED BY RISCBSD ``AS IS'' AND ANY EXPRESS OR IMPLIED 23*b1c4ba4aSLionel Sambuc * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 24*b1c4ba4aSLionel Sambuc * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 25*b1c4ba4aSLionel Sambuc * IN NO EVENT SHALL RISCBSD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 26*b1c4ba4aSLionel Sambuc * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 27*b1c4ba4aSLionel Sambuc * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 28*b1c4ba4aSLionel Sambuc * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29*b1c4ba4aSLionel Sambuc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30*b1c4ba4aSLionel Sambuc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31*b1c4ba4aSLionel Sambuc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32*b1c4ba4aSLionel Sambuc * SUCH DAMAGE. 33*b1c4ba4aSLionel Sambuc */ 34*b1c4ba4aSLionel Sambuc 35*b1c4ba4aSLionel Sambuc #ifndef _EVBARM_PARAM_H_ 36*b1c4ba4aSLionel Sambuc #define _EVBARM_PARAM_H_ 37*b1c4ba4aSLionel Sambuc 38*b1c4ba4aSLionel Sambuc /* 39*b1c4ba4aSLionel Sambuc * Machine dependent constants 40*b1c4ba4aSLionel Sambuc */ 41*b1c4ba4aSLionel Sambuc 42*b1c4ba4aSLionel Sambuc #define _MACHINE evbarm 43*b1c4ba4aSLionel Sambuc #define MACHINE "evbarm" 44*b1c4ba4aSLionel Sambuc 45*b1c4ba4aSLionel Sambuc #include <arm/arm32/param.h> 46*b1c4ba4aSLionel Sambuc 47*b1c4ba4aSLionel Sambuc #endif /* _EVBARM_PARAM_H_ */ 48