sysident.S revision 1.1 1 1.1 joerg /* $NetBSD: sysident.S,v 1.1 2010/08/07 18:01:33 joerg Exp $ */
2 1.1 joerg
3 1.1 joerg /*
4 1.1 joerg * Copyright (c) 1997 Christopher G. Demetriou
5 1.1 joerg * All rights reserved.
6 1.1 joerg *
7 1.1 joerg * Redistribution and use in source and binary forms, with or without
8 1.1 joerg * modification, are permitted provided that the following conditions
9 1.1 joerg * are met:
10 1.1 joerg * 1. Redistributions of source code must retain the above copyright
11 1.1 joerg * notice, this list of conditions and the following disclaimer.
12 1.1 joerg * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 joerg * notice, this list of conditions and the following disclaimer in the
14 1.1 joerg * documentation and/or other materials provided with the distribution.
15 1.1 joerg * 3. All advertising materials mentioning features or use of this software
16 1.1 joerg * must display the following acknowledgement:
17 1.1 joerg * This product includes software developed for the
18 1.1 joerg * NetBSD Project. See http://www.NetBSD.org/ for
19 1.1 joerg * information about NetBSD.
20 1.1 joerg * 4. The name of the author may not be used to endorse or promote products
21 1.1 joerg * derived from this software without specific prior written permission.
22 1.1 joerg *
23 1.1 joerg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 joerg * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 joerg * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 joerg * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 joerg * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 joerg * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 joerg * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 joerg * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 joerg * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 joerg * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 joerg *
34 1.1 joerg * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
35 1.1 joerg */
36 1.1 joerg
37 1.1 joerg /*
38 1.1 joerg * Here we define the NetBSD OS Version in an ELF .note section, structured
39 1.1 joerg * like:
40 1.1 joerg *
41 1.1 joerg * [NOTE HEADER]
42 1.1 joerg * long name size
43 1.1 joerg * long description size
44 1.1 joerg * long note type
45 1.1 joerg *
46 1.1 joerg * [NOTE DATUM]
47 1.1 joerg * string OS name
48 1.1 joerg *
49 1.1 joerg * OSVERSION notes also have:
50 1.1 joerg * long OS version (__NetBSD_Version__ constant from param.h)
51 1.1 joerg *
52 1.1 joerg * The DATUM fields should be padded out such that their actual (not
53 1.1 joerg * declared) sizes % 4 == 0.
54 1.1 joerg *
55 1.1 joerg * These are used by the kernel to determine if this binary is really a
56 1.1 joerg * NetBSD binary, or some other OS's.
57 1.1 joerg */
58 1.1 joerg
59 1.1 joerg #include "sysident_assym.h"
60 1.1 joerg
61 1.1 joerg .section ".note.netbsd.ident", "a"
62 1.1 joerg .align 4
63 1.1 joerg
64 1.1 joerg .long ELF_NOTE_NETBSD_NAMESZ
65 1.1 joerg .long ELF_NOTE_NETBSD_DESCSZ
66 1.1 joerg .long ELF_NOTE_TYPE_NETBSD_TAG
67 1.1 joerg .ascii "NetBSD\0\0" /* ELF_NOTE_NETBSD_NAME */
68 1.1 joerg .long __NetBSD_Version__
69 1.1 joerg
70 1.1 joerg .section ".note.netbsd.pax", "a"
71 1.1 joerg .align 4
72 1.1 joerg
73 1.1 joerg .long ELF_NOTE_PAX_NAMESZ
74 1.1 joerg .long ELF_NOTE_PAX_DESCSZ
75 1.1 joerg .long ELF_NOTE_TYPE_PAX_TAG
76 1.1 joerg .ascii "PaX\0" /* ELF_NOTE_PAX_NAME */
77 1.1 joerg .long 0
78