Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Amiga don't need its own fbio.h anymore; screenblank(8) uses...



details:   https://anonhg.NetBSD.org/src/rev/4ecc84a8e018
branches:  trunk
changeset: 515225:4ecc84a8e018
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Wed Sep 19 16:40:52 2001 +0000

description:
Amiga don't need its own fbio.h anymore; screenblank(8) uses <dev/sun/fbio.h>,
and the ioctl that this file defines is compatible.

diffstat:

 distrib/sets/lists/comp/md.amiga       |   3 +-
 distrib/sets/lists/comp/obsolete.amiga |   2 +
 sys/arch/amiga/include/Makefile        |   4 +-
 sys/arch/amiga/include/fbio.h          |  46 ----------------------------------
 4 files changed, 5 insertions(+), 50 deletions(-)

diffs (91 lines):

diff -r 09cdc736d647 -r 4ecc84a8e018 distrib/sets/lists/comp/md.amiga
--- a/distrib/sets/lists/comp/md.amiga  Wed Sep 19 16:32:04 2001 +0000
+++ b/distrib/sets/lists/comp/md.amiga  Wed Sep 19 16:40:52 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: md.amiga,v 1.42 2001/04/15 17:14:26 kleink Exp $
+# $NetBSD: md.amiga,v 1.43 2001/09/19 16:40:52 thorpej Exp $
 ./usr/include/amiga    comp-c-include
 ./usr/include/amiga/_G_config.h        comp-c-include
 ./usr/include/amiga/ansi.h     comp-c-include
@@ -15,7 +15,6 @@
 ./usr/include/amiga/elf_machdep.h      comp-c-include
 ./usr/include/amiga/endian.h   comp-c-include
 ./usr/include/amiga/endian_machdep.h   comp-c-include
-./usr/include/amiga/fbio.h     comp-c-include
 ./usr/include/amiga/float.h    comp-c-include
 ./usr/include/amiga/frame.h    comp-c-include
 ./usr/include/amiga/ieee.h     comp-c-include
diff -r 09cdc736d647 -r 4ecc84a8e018 distrib/sets/lists/comp/obsolete.amiga
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/distrib/sets/lists/comp/obsolete.amiga    Wed Sep 19 16:40:52 2001 +0000
@@ -0,0 +1,2 @@
+# $NetBSD: obsolete.amiga,v 1.1 2001/09/19 16:40:52 thorpej Exp $
+/usr/include/amiga/fbio.h
diff -r 09cdc736d647 -r 4ecc84a8e018 sys/arch/amiga/include/Makefile
--- a/sys/arch/amiga/include/Makefile   Wed Sep 19 16:32:04 2001 +0000
+++ b/sys/arch/amiga/include/Makefile   Wed Sep 19 16:40:52 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.13 2001/04/15 17:13:05 kleink Exp $
+#      $NetBSD: Makefile,v 1.14 2001/09/19 16:40:52 thorpej Exp $
 
 KDIR=  /sys/arch/amiga/include
 INCSDIR= /usr/include/amiga
@@ -8,7 +8,7 @@
        cdefs.h conf.h cpu.h cpufunc.h \
        db_machdep.h disklabel.h \
        elf_machdep.h endian.h endian_machdep.h \
-       fbio.h float.h frame.h \
+       float.h frame.h \
        ieee.h ieeefp.h \
        int_const.h int_fmtio.h int_limits.h int_mwgwtypes.h int_types.h \
        intr.h \
diff -r 09cdc736d647 -r 4ecc84a8e018 sys/arch/amiga/include/fbio.h
--- a/sys/arch/amiga/include/fbio.h     Wed Sep 19 16:32:04 2001 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,46 +0,0 @@
-/* $NetBSD: fbio.h,v 1.3 1999/02/16 23:34:12 is Exp $ */
-
-/*-
- * Copyright (c) 1996 The NetBSD Foundation, Inc.
- * All rights reserved.
- *
- * This code is derived from software contributed to The NetBSD Foundation
- * by Ignatios Souvatzis.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *        This product includes software developed by the NetBSD
- *        Foundation, Inc. and its contributors.
- * 4. Neither the name of The NetBSD Foundation nor the names of its
- *    contributors may be used to endorse or promote products derived
- *    from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
-
-/*
- * FBIO compatible video control.
- */
-#define        FBVIDEO_OFF             0
-#define        FBVIDEO_ON              1
-
-#define        FBIOSVIDEO      _IOW('F', 7, int)
-#define        FBIOGVIDEO      _IOR('F', 8, int)



Home | Main Index | Thread Index | Old Index