2fe8fb192f
There is important information about booting non-ack images in docs/UPDATING. ack/aout-format images can't be built any more, and booting clang/ELF-format ones is a little different. Updating to the new boot monitor is recommended. Changes in this commit: . drop boot monitor -> allowing dropping ack support . facility to copy ELF boot files to /boot so that old boot monitor can still boot fairly easily, see UPDATING . no more ack-format libraries -> single-case libraries . some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases . drop several ack toolchain commands, but not all support commands (e.g. aal is gone but acksize is not yet). . a few libc files moved to netbsd libc dir . new /bin/date as minix date used code in libc/ . test compile fix . harmonize includes . /usr/lib is no longer special: without ack, /usr/lib plays no kind of special bootstrapping role any more and bootstrapping is done exclusively through packages, so releases depend even less on the state of the machine making them now. . rename nbsd_lib* to lib* . reduce mtree
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
#ifndef _SYS_UTSNAME_H_
|
|
#define _SYS_UTSNAME_H_
|
|
|
|
#include <sys/featuretest.h>
|
|
|
|
#define _SYS_NMLN 256
|
|
|
|
#if defined(_NETBSD_SOURCE)
|
|
#define SYS_NMLN _SYS_NMLN
|
|
#endif
|
|
|
|
struct utsname {
|
|
char sysname[_SYS_NMLN]; /* Name of this OS. */
|
|
char nodename[_SYS_NMLN]; /* Name of this network node. */
|
|
char release[_SYS_NMLN]; /* Release level. */
|
|
char version[_SYS_NMLN]; /* Version level. */
|
|
char machine[_SYS_NMLN]; /* Hardware type. */
|
|
char arch[_SYS_NMLN];
|
|
};
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
int uname(struct utsname *);
|
|
#ifdef __minix
|
|
int sysuname(int _req, int _field, char *_value, size_t _len);
|
|
#endif
|
|
__END_DECLS
|
|
|
|
#ifdef __minix
|
|
/* req: Get or set a string. */
|
|
#define _UTS_GET 0
|
|
#define _UTS_SET 1
|
|
|
|
/* field: What field to get or set. These values can't be changed lightly. */
|
|
#define _UTS_ARCH 0
|
|
#define _UTS_KERNEL 1
|
|
#define _UTS_MACHINE 2
|
|
#define _UTS_HOSTNAME 3
|
|
#define _UTS_NODENAME 4
|
|
#define _UTS_RELEASE 5
|
|
#define _UTS_VERSION 6
|
|
#define _UTS_SYSNAME 7
|
|
#define _UTS_BUS 8
|
|
#define _UTS_MAX 9 /* Number of strings. */
|
|
#endif /* __minix */
|
|
|
|
#endif /* !_SYS_UTSNAME_H_ */
|