svn commit: r366545 - in head/sys: conf i386/conf modules/syscons modules/syscons/apm
Warner Losh
imp at FreeBSD.org
Thu Oct 8 20:56:06 UTC 2020
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 <bsd.subdir.mk>
More information about the svn-src-all
mailing list