1209878Snwhitehorn/*-
2209878Snwhitehorn * Copyright (c) 2002 Peter Grehan.
3209878Snwhitehorn * All rights reserved.
4209878Snwhitehorn *
5209878Snwhitehorn * Redistribution and use in source and binary forms, with or without
6209878Snwhitehorn * modification, are permitted provided that the following conditions
7209878Snwhitehorn * are met:
8209878Snwhitehorn * 1. Redistributions of source code must retain the above copyright
9209878Snwhitehorn *    notice, this list of conditions and the following disclaimer.
10209878Snwhitehorn * 2. Redistributions in binary form must reproduce the above copyright
11209878Snwhitehorn *    notice, this list of conditions and the following disclaimer in the
12209878Snwhitehorn *    documentation and/or other materials provided with the distribution.
13209878Snwhitehorn *
14209878Snwhitehorn * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15209878Snwhitehorn * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16209878Snwhitehorn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17209878Snwhitehorn * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18209878Snwhitehorn * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19209878Snwhitehorn * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20209878Snwhitehorn * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21209878Snwhitehorn * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22209878Snwhitehorn * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23209878Snwhitehorn * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24209878Snwhitehorn * SUCH DAMAGE.
25209878Snwhitehorn */
26209878Snwhitehorn/*      $NetBSD: setlogin.S,v 1.3 1998/11/24 11:14:57 tsubai Exp $      */
27209878Snwhitehorn
28209878Snwhitehorn#include <machine/asm.h>
29209878Snwhitehorn__FBSDID("$FreeBSD$");
30209878Snwhitehorn
31209878Snwhitehorn#include "SYS.h"
32209878Snwhitehorn
33209878Snwhitehorn	.globl  CNAME(_logname_valid)		/* in _getlogin() */
34209878Snwhitehorn
35209878SnwhitehornSYSCALL(setlogin)
36209878Snwhitehorn	addis	%r4,%r2,CNAME(_logname_valid)@toc@ha
37209878Snwhitehorn	li	%r5,0
38209878Snwhitehorn	stw	%r5,CNAME(_logname_valid)@toc@l(%r4)
39209878Snwhitehorn	blr
40217398Skib
41217398Skib	.section .note.GNU-stack,"",%progbits
42