1 1.9 christos /* $NetBSD: ultrix_exec_ecoff.c,v 1.9 2005/12/11 12:20:30 christos Exp $ */ 2 1.1 jdolecek 3 1.1 jdolecek /* 4 1.1 jdolecek * Copyright (c) 1995, 1997 Jonathan Stone (hereinafter referred to as the author) 5 1.1 jdolecek * All rights reserved. 6 1.1 jdolecek * 7 1.1 jdolecek * Redistribution and use in source and binary forms, with or without 8 1.1 jdolecek * modification, are permitted provided that the following conditions 9 1.1 jdolecek * are met: 10 1.1 jdolecek * 1. Redistributions of source code must retain the above copyright 11 1.1 jdolecek * notice, this list of conditions and the following disclaimer. 12 1.1 jdolecek * 2. Redistributions in binary form must reproduce the above copyright 13 1.1 jdolecek * notice, this list of conditions and the following disclaimer in the 14 1.1 jdolecek * documentation and/or other materials provided with the distribution. 15 1.1 jdolecek * 3. All advertising materials mentioning features or use of this software 16 1.1 jdolecek * must display the following acknowledgement: 17 1.1 jdolecek * This product includes software developed by Jonathan Stone for 18 1.1 jdolecek * the NetBSD Project. 19 1.1 jdolecek * 4. The name of the author may not be used to endorse or promote products 20 1.1 jdolecek * derived from this software without specific prior written permission. 21 1.1 jdolecek * 22 1.1 jdolecek * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND 23 1.1 jdolecek * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 1.1 jdolecek * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 1.1 jdolecek * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE 26 1.1 jdolecek * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 1.1 jdolecek * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 1.1 jdolecek * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 1.1 jdolecek * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 1.1 jdolecek * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 1.1 jdolecek * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 1.1 jdolecek * SUCH DAMAGE. 33 1.1 jdolecek */ 34 1.1 jdolecek 35 1.1 jdolecek /* 36 1.1 jdolecek * Copyright (c) 1992, 1993 37 1.1 jdolecek * The Regents of the University of California. All rights reserved. 38 1.1 jdolecek * 39 1.1 jdolecek * This software was developed by the Computer Systems Engineering group 40 1.1 jdolecek * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 41 1.1 jdolecek * contributed to Berkeley. 42 1.1 jdolecek * 43 1.1 jdolecek * All advertising materials mentioning features or use of this software 44 1.1 jdolecek * must display the following acknowledgement: 45 1.1 jdolecek * This product includes software developed by the University of 46 1.1 jdolecek * California, Lawrence Berkeley Laboratory. 47 1.1 jdolecek * 48 1.1 jdolecek * Redistribution and use in source and binary forms, with or without 49 1.1 jdolecek * modification, are permitted provided that the following conditions 50 1.1 jdolecek * are met: 51 1.1 jdolecek * 1. Redistributions of source code must retain the above copyright 52 1.1 jdolecek * notice, this list of conditions and the following disclaimer. 53 1.1 jdolecek * 2. Redistributions in binary form must reproduce the above copyright 54 1.1 jdolecek * notice, this list of conditions and the following disclaimer in the 55 1.1 jdolecek * documentation and/or other materials provided with the distribution. 56 1.5 agc * 3. Neither the name of the University nor the names of its contributors 57 1.1 jdolecek * may be used to endorse or promote products derived from this software 58 1.1 jdolecek * without specific prior written permission. 59 1.1 jdolecek * 60 1.1 jdolecek * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 61 1.1 jdolecek * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 62 1.1 jdolecek * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 63 1.1 jdolecek * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 64 1.1 jdolecek * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 65 1.1 jdolecek * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 66 1.1 jdolecek * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 67 1.1 jdolecek * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 68 1.1 jdolecek * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 69 1.1 jdolecek * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 70 1.1 jdolecek * SUCH DAMAGE. 71 1.1 jdolecek * 72 1.1 jdolecek * 73 1.1 jdolecek * @(#)sun_misc.c 8.1 (Berkeley) 6/18/93 74 1.1 jdolecek * 75 1.8 perry * from: Header: sun_misc.c,v 1.16 93/04/07 02:46:27 torek Exp 76 1.1 jdolecek */ 77 1.1 jdolecek 78 1.1 jdolecek /* 79 1.1 jdolecek * Ultrix compatibility module. 80 1.1 jdolecek */ 81 1.2 lukem 82 1.2 lukem #include <sys/cdefs.h> 83 1.9 christos __KERNEL_RCSID(0, "$NetBSD: ultrix_exec_ecoff.c,v 1.9 2005/12/11 12:20:30 christos Exp $"); 84 1.1 jdolecek 85 1.1 jdolecek #include <sys/param.h> 86 1.1 jdolecek #include <sys/exec.h> 87 1.1 jdolecek 88 1.1 jdolecek #include <sys/exec_ecoff.h> 89 1.1 jdolecek #include <compat/ultrix/ultrix_exec.h> 90 1.1 jdolecek 91 1.1 jdolecek /* 92 1.1 jdolecek * cpu_exec_ecoff_probe(): 93 1.6 wiz * CPU-dependent ECOFF format hook for execve(). 94 1.1 jdolecek * 95 1.1 jdolecek * Do any machine-dependent diddling of the exec package when doing ECOFF. 96 1.1 jdolecek * 97 1.1 jdolecek */ 98 1.1 jdolecek int 99 1.9 christos ultrix_exec_ecoff_probe(struct lwp *l, struct exec_package *epp) 100 1.1 jdolecek { 101 1.7 simonb 102 1.1 jdolecek /* XXX should add some check here */ 103 1.1 jdolecek return 0; 104 1.1 jdolecek } 105