diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2018-07-12 21:28:13 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-07-13 09:00:33 +0200 |
commit | eb3b16e594b5bdc3c8e9922f372d72fcbb8a3a55 (patch) | |
tree | dd51687be9d8ea483e5573a1b2972613916e197b /source/a | |
parent | ed7e9fe9c2c97215596d12888a7adc4a572a243b (diff) | |
download | current-eb3b16e594b5bdc3c8e9922f372d72fcbb8a3a55.tar.gz |
Thu Jul 12 21:28:13 UTC 201820180712212813
a/etc-15.0-x86_64-7.txz: Rebuilt.
Don't set a default MANPATH - it ends up overriding the config file settings.
Thanks to Nate_KS and andygoth.
a/mkinitrd-1.4.11-x86_64-8.txz: Rebuilt.
Added hid-asus module to mkinitrd_command_generator.sh. Thanks to phalange.
l/harfbuzz-1.8.3-x86_64-1.txz: Upgraded.
n/bind-9.12.2-x86_64-1.txz: Upgraded.
Looking at the BIND release schedule, it's probably better to stick with
this stable branch than to track the development/unstable which isn't due
to become bind-9.14.0 for many months. Like always, we'll move to a newer
branch if that becomes necessary.
x/xf86-input-libinput-0.28.0-x86_64-1.txz: Upgraded.
x/xf86-video-ati-20180711_f533b1f6-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/a')
-rw-r--r-- | source/a/etc/_etc/etc/csh.login.new | 1 | ||||
-rw-r--r-- | source/a/etc/_etc/etc/profile.new | 1 | ||||
-rwxr-xr-x | source/a/etc/etc.SlackBuild | 2 | ||||
-rwxr-xr-x | source/a/mkinitrd/mkinitrd.SlackBuild | 2 | ||||
-rw-r--r-- | source/a/mkinitrd/mkinitrd_command_generator.sh | 2 |
5 files changed, 3 insertions, 5 deletions
diff --git a/source/a/etc/_etc/etc/csh.login.new b/source/a/etc/_etc/etc/csh.login.new index d5de278c..1f62c45c 100644 --- a/source/a/etc/_etc/etc/csh.login.new +++ b/source/a/etc/_etc/etc/csh.login.new @@ -6,7 +6,6 @@ if ($?prompt) then set cdpath = ( /var/spool ) set notify set history = 100 - setenv MANPATH /usr/local/man:/usr/man setenv MINICOM "-c on" setenv HOSTNAME "`cat /etc/HOSTNAME`" setenv LESS "-M" diff --git a/source/a/etc/_etc/etc/profile.new b/source/a/etc/_etc/etc/profile.new index 8c5df4d8..f716d786 100644 --- a/source/a/etc/_etc/etc/profile.new +++ b/source/a/etc/_etc/etc/profile.new @@ -3,7 +3,6 @@ # Set the values for some environment variables: export MINICOM="-c on" -export MANPATH=/usr/local/man:/usr/man export HOSTNAME="`cat /etc/HOSTNAME`" export LESSOPEN="|lesspipe.sh %s" export LESS="-M" diff --git a/source/a/etc/etc.SlackBuild b/source/a/etc/etc.SlackBuild index 547e633e..35616fb6 100755 --- a/source/a/etc/etc.SlackBuild +++ b/source/a/etc/etc.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=etc VERSION=15.0 -BUILD=${BUILD:-6} +BUILD=${BUILD:-7} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/a/mkinitrd/mkinitrd.SlackBuild b/source/a/mkinitrd/mkinitrd.SlackBuild index fba5eeac..19a7f113 100755 --- a/source/a/mkinitrd/mkinitrd.SlackBuild +++ b/source/a/mkinitrd/mkinitrd.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=mkinitrd VERSION=${VERSION:-1.4.11} BB=1.28.3 -BUILD=${BUILD:-7} +BUILD=${BUILD:-8} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/a/mkinitrd/mkinitrd_command_generator.sh b/source/a/mkinitrd/mkinitrd_command_generator.sh index 33d9c9de..d6d0d1a1 100644 --- a/source/a/mkinitrd/mkinitrd_command_generator.sh +++ b/source/a/mkinitrd/mkinitrd_command_generator.sh @@ -225,7 +225,7 @@ function add_usb_keyboard() { local USBMOD if cat /proc/bus/input/devices | sed -e 's/^$/\$/g' | \ tr "\n$" " \n" | grep -q " Phys=.*usb.* .*Handlers=.*kbd.*B:"; then - USBMOD="xhci-pci:ohci-pci:ehci-pci:xhci-hcd:uhci-hcd:ehci-hcd:hid:usbhid:i2c-hid:hid_generic:hid-cherry:hid-logitech:hid-logitech-dj:hid-logitech-hidpp:hid-lenovo:hid-microsoft:hid_multitouch" + USBMOD="xhci-pci:ohci-pci:ehci-pci:xhci-hcd:uhci-hcd:ehci-hcd:hid:usbhid:i2c-hid:hid_generic:hid-asus:hid-cherry:hid-logitech:hid-logitech-dj:hid-logitech-hidpp:hid-lenovo:hid-microsoft:hid_multitouch" [ -n "$MLIST" ] && MLIST="$MLIST:$USBMOD" \ || MLIST="$USBMOD" fi |