diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-12-28 20:13:50 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-12-28 23:59:56 +0100 |
commit | eae3926cf3efec6fbc3ce2b7df32c2ac37f90c77 (patch) | |
tree | a45091162ea1a5d7a058dee5abb93b26047670f7 /source/a | |
parent | 45d4b225c605681c5d3570a2dc96140db758e9fb (diff) | |
download | current-eae3926cf3efec6fbc3ce2b7df32c2ac37f90c77.tar.gz current-eae3926cf3efec6fbc3ce2b7df32c2ac37f90c77.tar.xz |
Mon Dec 28 20:13:50 UTC 202020201228201350
a/eudev-3.2.9-x86_64-3.txz: Rebuilt.
Blacklist the snd-pcsp module. Thanks to Paulo2.
Fix typo in watchdog.conf: ebc_c384_wdt -> ebc-c384_wdt.
Thanks to Robby Workman.
ap/terminus-font-4.49-noarch-1.txz: Upgraded.
extra/brltty/brltty-6.2-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/a')
-rw-r--r-- | source/a/eudev/config/modprobe.d/pcspkr.conf | 7 | ||||
-rw-r--r-- | source/a/eudev/config/modprobe.d/snd-pcsp.conf | 10 | ||||
-rw-r--r-- | source/a/eudev/config/modprobe.d/watchdog.conf | 2 | ||||
-rwxr-xr-x | source/a/eudev/eudev.SlackBuild | 4 |
4 files changed, 17 insertions, 6 deletions
diff --git a/source/a/eudev/config/modprobe.d/pcspkr.conf b/source/a/eudev/config/modprobe.d/pcspkr.conf index 66de6b749..d6f804bcb 100644 --- a/source/a/eudev/config/modprobe.d/pcspkr.conf +++ b/source/a/eudev/config/modprobe.d/pcspkr.conf @@ -2,8 +2,9 @@ # Do not edit this file; instead, copy it to /etc/modprobe.d/ and edit that ############################################################################## -# PC Speaker support: -# This one is loaded by /etc/rc.d/rc.modules. If you don't like -# the beeps and buzz from speaker, edit /etc/rc.d/rc.modules. +# Standard PC speaker support: +# This is the standard driver for the PC motherboard speaker, capable of +# outputting simple tones of a given frequency. Most users will have better +# audio hardware and will want this module blacklisted. blacklist pcspkr diff --git a/source/a/eudev/config/modprobe.d/snd-pcsp.conf b/source/a/eudev/config/modprobe.d/snd-pcsp.conf new file mode 100644 index 000000000..21143d7d7 --- /dev/null +++ b/source/a/eudev/config/modprobe.d/snd-pcsp.conf @@ -0,0 +1,10 @@ +############################################################################## +# Do not edit this file; instead, copy it to /etc/modprobe.d/ and edit that +############################################################################## + +# ALSA/PCM support for the standard PC speaker: +# This is an ALSA driver that attempts to output full PCM sound using the very +# limited hardware of the built-in PC speaker. It doesn't work very well. Most +# users will have better audio hardware and will want this module blacklisted. +blacklist snd-pcsp + diff --git a/source/a/eudev/config/modprobe.d/watchdog.conf b/source/a/eudev/config/modprobe.d/watchdog.conf index ad112cb6c..b5d1e65e7 100644 --- a/source/a/eudev/config/modprobe.d/watchdog.conf +++ b/source/a/eudev/config/modprobe.d/watchdog.conf @@ -14,7 +14,7 @@ blacklist cpu5wdt blacklist da9062_wdt blacklist da9063_wdt blacklist dw_wdt -blacklist ebc_c384_wdt +blacklist ebc-c384_wdt blacklist eurotechwdt blacklist f71808e_wdt blacklist hpwdt diff --git a/source/a/eudev/eudev.SlackBuild b/source/a/eudev/eudev.SlackBuild index 926fe34ef..ebe991d12 100755 --- a/source/a/eudev/eudev.SlackBuild +++ b/source/a/eudev/eudev.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2006, 2008, 2009, 2010, 2011, 2012, 2013, 2015, 2017, 2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2006, 2008, 2009, 2010, 2011, 2012, 2013, 2015, 2017, 2018, 2020 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=eudev VERSION=${VERSION:-$(echo eudev-*.tar.* | cut -d - -f 2 | rev | cut -f 3- -d . | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "} |