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