xref: /netbsd-src/external/bsd/am-utils/lib/libamu/mkconf (revision d15ef32f05ad104c90be0f76beb436d0cfd3750d)
1*d15ef32fSchristos#	$NetBSD: mkconf,v 1.2 2009/06/12 15:44:58 christos Exp $
2b7899253Schristos#
3b7899253Schristos# mkconf
4b7899253Schristos# Generate local configuration parameters for amd
5b7899253Schristos#
6b7899253Schristoscat << __EOF
7b7899253Schristos
8b7899253Schristos/* Automatically generated file, do not edit! */
9b7899253Schristos
10b7899253Schristos/* Define name of host machine's architecture (eg. sun4) */
11b7899253Schristos#define HOST_ARCH MACHINE
12b7899253Schristos
13b7899253Schristos/* Define name of host machine's cpu (eg. sparc) */
14b7899253Schristos#define HOST_CPU MACHINE_ARCH
15b7899253Schristos
16b7899253Schristos/* Define the header version of (linux) hosts (eg. 2.2.10) */
17b7899253Schristos#define HOST_HEADER_VERSION "$1"
18b7899253Schristos
19b7899253Schristos/* Define name of host */
20b7899253Schristos#define HOST_NAME "unknown"
21b7899253Schristos
22b7899253Schristos/* Define name and version of host machine (eg. solaris2.5.1) */
23b7899253Schristos#define HOST_OS "netbsd$1"
24b7899253Schristos
25b7899253Schristos/* Define only name of host machine OS (eg. solaris2) */
26*d15ef32fSchristos#define HOST_OS_NAME "netbsd"
27b7899253Schristos
28b7899253Schristos/* Define only version of host machine (eg. 2.5.1) */
29b7899253Schristos#define HOST_OS_VERSION "$1"
30b7899253Schristos
31b7899253Schristos/* Define name of host machine's vendor (eg. sun) */
32b7899253Schristos#define HOST_VENDOR "The NetBSD Foundation, Inc."
33b7899253Schristos
34b7899253Schristos/* Define user name */
35b7899253Schristos#define USER_NAME "unknown"
36b7899253Schristos
37b7899253Schristos/* Define configuration date */
38b7899253Schristos#define CONFIG_DATE "unknown"
39b7899253Schristos
40b7899253Schristos__EOF
41