From owner-svn-src-head@freebsd.org Thu Oct 8 20:56:06 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B1238430EC0; Thu, 8 Oct 2020 20:56:06 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C6k4y6J8gz4T8Z; Thu, 8 Oct 2020 20:56:02 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DA2DCEB2C; Thu, 8 Oct 2020 20:56:01 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 098Ku1i2057373; Thu, 8 Oct 2020 20:56:01 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 098Ku14p057370; Thu, 8 Oct 2020 20:56:01 GMT (envelope-from imp@FreeBSD.org) Message-Id: <202010082056.098Ku14p057370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Thu, 8 Oct 2020 20:56:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r366545 - in head/sys: conf i386/conf modules/syscons modules/syscons/apm X-SVN-Group: head X-SVN-Commit-Author: imp X-SVN-Commit-Paths: in head/sys: conf i386/conf modules/syscons modules/syscons/apm X-SVN-Commit-Revision: 366545 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Oct 2020 20:56:06 -0000 Author: imp Date: Thu Oct 8 20:56:00 2020 New Revision: 366545 URL: https://svnweb.freebsd.org/changeset/base/366545 Log: Remove apm screen saver. APM BIOS support is about to be removed. Remove the apm screen saver and its module. They are about to be irrelevant. Deleted: head/sys/modules/syscons/apm/Makefile Modified: head/sys/conf/files.i386 head/sys/i386/conf/NOTES head/sys/modules/syscons/Makefile Modified: head/sys/conf/files.i386 ============================================================================== --- head/sys/conf/files.i386 Thu Oct 8 20:55:55 2020 (r366544) +++ head/sys/conf/files.i386 Thu Oct 8 20:56:00 2020 (r366545) @@ -119,7 +119,6 @@ dev/sbni/if_sbni_isa.c optional sbni isa dev/sbni/if_sbni_pci.c optional sbni pci dev/speaker/spkr.c optional speaker dev/superio/superio.c optional superio isa -dev/syscons/apm/apm_saver.c optional apm_saver apm dev/syscons/scvesactl.c optional sc vga vesa dev/syscons/scvgarndr.c optional sc vga dev/tpm/tpm.c optional tpm Modified: head/sys/i386/conf/NOTES ============================================================================== --- head/sys/i386/conf/NOTES Thu Oct 8 20:55:55 2020 (r366544) +++ head/sys/i386/conf/NOTES Thu Oct 8 20:56:00 2020 (r366545) @@ -275,7 +275,6 @@ device nvram # Access to rtc cmos via /dev/nvram device speaker #Play IBM BASIC-style noises out your speaker envvar hint.speaker.0.at="isa" envvar hint.speaker.0.port="0x61" -device apm_saver # Requires APM ##################################################################### Modified: head/sys/modules/syscons/Makefile ============================================================================== --- head/sys/modules/syscons/Makefile Thu Oct 8 20:55:55 2020 (r366544) +++ head/sys/modules/syscons/Makefile Thu Oct 8 20:56:00 2020 (r366545) @@ -1,7 +1,6 @@ # $FreeBSD$ -SUBDIR= ${_apm} \ - beastie \ +SUBDIR= beastie \ blank \ daemon \ dragon \ @@ -14,9 +13,5 @@ SUBDIR= ${_apm} \ snake \ star \ warp - -.if ${MACHINE_CPUARCH} == "i386" -_apm= apm -.endif .include