summaryrefslogtreecommitdiff
path: root/external/bsd/am-utils/lib/libamu/mkconf
blob: dfc294607913c2bd9d85d7175c630e36469f0728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#	$NetBSD: mkconf,v 1.2 2009/06/12 15:44:58 christos Exp $
#
# mkconf
# Generate local configuration parameters for amd
#
cat << __EOF

/* Automatically generated file, do not edit! */

/* Define name of host machine's architecture (eg. sun4) */
#define HOST_ARCH MACHINE

/* Define name of host machine's cpu (eg. sparc) */
#define HOST_CPU MACHINE_ARCH
 
/* Define the header version of (linux) hosts (eg. 2.2.10) */
#define HOST_HEADER_VERSION "$1"

/* Define name of host */
#define HOST_NAME "unknown"

/* Define name and version of host machine (eg. solaris2.5.1) */
#define HOST_OS "netbsd$1"

/* Define only name of host machine OS (eg. solaris2) */
#define HOST_OS_NAME "netbsd"

/* Define only version of host machine (eg. 2.5.1) */
#define HOST_OS_VERSION "$1"

/* Define name of host machine's vendor (eg. sun) */
#define HOST_VENDOR "The NetBSD Foundation, Inc."

/* Define user name */
#define USER_NAME "unknown"

/* Define configuration date */
#define CONFIG_DATE "unknown"

__EOF