144630Smckusick /* 244630Smckusick * Copyright (c) 1990 Jan-Simon Pendry 344630Smckusick * Copyright (c) 1990 Imperial College of Science, Technology & Medicine 444630Smckusick * Copyright (c) 1990 The Regents of the University of California. 544630Smckusick * All rights reserved. 644630Smckusick * 744630Smckusick * This code is derived from software contributed to Berkeley by 844630Smckusick * Jan-Simon Pendry at Imperial College, London. 944630Smckusick * 1044630Smckusick * %sccs.include.redist.c% 1144630Smckusick * 12*49685Spendry * @(#)os-fpx4.h 5.3 (Berkeley) 05/12/91 13*49685Spendry * 14*49685Spendry * $Id: os-fpx4.h,v 5.2.1.2 91/05/07 22:19:40 jsp Alpha $ 15*49685Spendry * 16*49685Spendry * Celerity FPX 4.1/2 definitions for Amd (automounter) 17*49685Spendry * from Stephen Pope <scp@grizzly.acl.lanl.gov> 1844630Smckusick */ 1944630Smckusick 2044630Smckusick /* 2144630Smckusick * FPX wants to include sys headers multiple times 2244630Smckusick */ 2344630Smckusick #define INCLUDE_HEADERS 2444630Smckusick 2544630Smckusick /* 2644630Smckusick * FPX sys/mount.h includes sys/nfs.h; prevent this 2744630Smckusick */ 2844630Smckusick #define INCLUDED_nfs 2944630Smckusick 3044630Smckusick /* 3144630Smckusick * FPX doesn't define NMOUNT anywhere 3244630Smckusick */ 3344630Smckusick #define NMOUNT 40 3444630Smckusick 3544630Smckusick /* 3644630Smckusick * Does the compiler grok void * 3744630Smckusick */ 3844630Smckusick /* #define VOIDP */ 3944630Smckusick 4044630Smckusick /* 4144630Smckusick * Which version of the Sun RPC library we are using 4244630Smckusick * This is the implementation release number, not 4344630Smckusick * the protocol revision number. 4444630Smckusick */ 4544630Smckusick #define RPC_3 4644630Smckusick 4744630Smckusick /* 4844630Smckusick * Which version of the NFS interface are we using. 4944630Smckusick * This is the implementation release number, not 5044630Smckusick * the protocol revision number. 5144630Smckusick */ 5244630Smckusick #define NFS_3 5344630Smckusick 5444630Smckusick /* 5544630Smckusick * Byte ordering 5644630Smckusick */ 5744630Smckusick #undef ARCH_ENDIAN 5844630Smckusick #define ARCH_ENDIAN "big" 5944630Smckusick 6044630Smckusick /* 6144630Smckusick * Name of filesystem types 6244630Smckusick */ 6344630Smckusick #define MOUNT_TYPE_NFS MOUNT_NFS 6444630Smckusick #define MOUNT_TYPE_UFS MOUNT_UFS 65