2020-06-21 20:17:01 +03:00
|
|
|
/* $NetBSD: machines.c,v 1.43 2020/06/21 17:17:02 thorpej Exp $ */
|
2002-04-03 09:58:44 +04:00
|
|
|
|
2002-04-11 11:56:13 +04:00
|
|
|
/*-
|
2005-11-14 03:04:34 +03:00
|
|
|
* Copyright (c) 2002-2005 The NetBSD Foundation, Inc.
|
2002-04-11 11:56:13 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Luke Mewburn of Wasabi Systems.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2002-04-03 09:58:44 +04:00
|
|
|
|
2004-06-21 02:20:14 +04:00
|
|
|
#if HAVE_NBTOOL_CONFIG_H
|
|
|
|
#include "nbtool_config.h"
|
|
|
|
#endif
|
|
|
|
|
2003-07-27 11:51:40 +04:00
|
|
|
#include <sys/cdefs.h>
|
2010-01-14 19:27:49 +03:00
|
|
|
#if !defined(__lint)
|
2020-06-21 20:17:01 +03:00
|
|
|
__RCSID("$NetBSD: machines.c,v 1.43 2020/06/21 17:17:02 thorpej Exp $");
|
2003-07-27 11:51:40 +04:00
|
|
|
#endif /* !__lint */
|
|
|
|
|
2002-04-03 09:58:44 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include "installboot.h"
|
|
|
|
|
2011-06-14 09:35:08 +04:00
|
|
|
struct ib_mach * const machines[] = {
|
2019-08-15 17:06:40 +03:00
|
|
|
#ifdef SINGLE_ARCH
|
2019-08-15 22:53:01 +03:00
|
|
|
&SINGLE_ARCH,
|
2019-08-15 17:06:40 +03:00
|
|
|
#else
|
2006-09-02 01:47:21 +04:00
|
|
|
&ib_mach_alpha,
|
|
|
|
&ib_mach_amd64,
|
|
|
|
&ib_mach_amiga,
|
2011-01-26 04:18:43 +03:00
|
|
|
&ib_mach_emips,
|
2019-05-07 08:02:41 +03:00
|
|
|
&ib_mach_evbarm,
|
2020-06-21 20:17:01 +03:00
|
|
|
&ib_mach_evbmips,
|
2006-09-02 01:47:21 +04:00
|
|
|
&ib_mach_ews4800mips,
|
|
|
|
&ib_mach_hp300,
|
2014-02-24 11:23:38 +04:00
|
|
|
&ib_mach_hppa,
|
2006-09-02 01:47:21 +04:00
|
|
|
&ib_mach_i386,
|
|
|
|
&ib_mach_landisk,
|
|
|
|
&ib_mach_macppc,
|
|
|
|
&ib_mach_news68k,
|
|
|
|
&ib_mach_newsmips,
|
|
|
|
&ib_mach_next68k,
|
|
|
|
&ib_mach_pmax,
|
|
|
|
&ib_mach_sparc,
|
|
|
|
&ib_mach_sparc64,
|
|
|
|
&ib_mach_sun2,
|
|
|
|
&ib_mach_sun3,
|
|
|
|
&ib_mach_vax,
|
|
|
|
&ib_mach_x68k,
|
2019-08-15 17:06:40 +03:00
|
|
|
#endif
|
2006-02-18 13:08:07 +03:00
|
|
|
NULL
|
2002-04-03 09:58:44 +04:00
|
|
|
};
|
2006-02-18 13:08:07 +03:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
{ "shark", no_setboot, no_clearboot, no_editboot, 0 },
|
|
|
|
#endif
|