mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-07 21:19:47 -04:00
41 lines
998 B
Plaintext
41 lines
998 B
Plaintext
# $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
|