summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-04-21 20:04:15 +0000
committer Eric Hameleers <alien@slackware.com>2021-04-22 08:59:58 +0200
commite3a1852d96ae78349efc578cf9f42f72a0b1355c (patch)
tree8df2b4fb8708e6ed5d59e1b177af498ebb9c465c /source
parentb3fe11ea2cf9e0146a94e2dd76c825b874e6e944 (diff)
downloadcurrent-e3a1852d96ae78349efc578cf9f42f72a0b1355c.tar.gz
current-e3a1852d96ae78349efc578cf9f42f72a0b1355c.tar.xz
Wed Apr 21 20:04:15 UTC 202120210421200415
a/exfatprogs-1.1.1-x86_64-1.txz: Upgraded. a/kernel-firmware-20210421_cfa004c-noarch-1.txz: Upgraded. a/kernel-generic-5.10.32-x86_64-1.txz: Upgraded. a/kernel-huge-5.10.32-x86_64-1.txz: Upgraded. a/kernel-modules-5.10.32-x86_64-1.txz: Upgraded. a/sysvinit-scripts-15.0-noarch-1.txz: Upgraded. rc.S: Check to see if /proc is already mounted before mounting it. Thanks to baldzhang. d/kernel-headers-5.10.32-x86-1.txz: Upgraded. k/kernel-source-5.10.32-noarch-1.txz: Upgraded. l/libdvdnav-6.1.1-x86_64-1.txz: Upgraded. n/openvpn-2.5.2-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. testing/packages/linux-5.11.x/kernel-generic-5.11.16-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-headers-5.11.16-x86-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-huge-5.11.16-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-modules-5.11.16-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-source-5.11.16-noarch-1.txz: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source')
-rwxr-xr-xsource/a/exfatprogs/exfatprogs.SlackBuild2
-rw-r--r--source/a/sysvinit-scripts/scripts/rc.S6
-rwxr-xr-xsource/a/sysvinit-scripts/sysvinit-scripts.SlackBuild4
-rw-r--r--source/k/kernel-configs/config-generic-5.10.32 (renamed from source/k/kernel-configs/config-generic-5.10.31)2
-rw-r--r--source/k/kernel-configs/config-generic-5.10.32.x64 (renamed from source/k/kernel-configs/config-generic-5.10.31.x64)2
-rw-r--r--source/k/kernel-configs/config-generic-smp-5.10.32-smp (renamed from source/k/kernel-configs/config-generic-smp-5.10.31-smp)2
-rw-r--r--source/k/kernel-configs/config-huge-5.10.32 (renamed from source/k/kernel-configs/config-huge-5.10.31)2
-rw-r--r--source/k/kernel-configs/config-huge-5.10.32.x64 (renamed from source/k/kernel-configs/config-huge-5.10.31.x64)2
-rw-r--r--source/k/kernel-configs/config-huge-smp-5.10.32-smp (renamed from source/k/kernel-configs/config-huge-smp-5.10.31-smp)2
-rwxr-xr-xsource/l/libdvdnav/libdvdnav.SlackBuild2
10 files changed, 14 insertions, 12 deletions
diff --git a/source/a/exfatprogs/exfatprogs.SlackBuild b/source/a/exfatprogs/exfatprogs.SlackBuild
index a29b0de86..f8390aa2e 100755
--- a/source/a/exfatprogs/exfatprogs.SlackBuild
+++ b/source/a/exfatprogs/exfatprogs.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=exfatprogs
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/a/sysvinit-scripts/scripts/rc.S b/source/a/sysvinit-scripts/scripts/rc.S
index 904065463..03bd9ecec 100644
--- a/source/a/sysvinit-scripts/scripts/rc.S
+++ b/source/a/sysvinit-scripts/scripts/rc.S
@@ -7,8 +7,10 @@
PATH=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin
-# Try to mount /proc:
-/sbin/mount -v proc /proc -n -t proc 2> /dev/null
+# Mount /proc if it is not already mounted:
+if [ ! -r /proc/self/mounts ]; then
+ /sbin/mount -v proc /proc -n -t proc 2> /dev/null
+fi
# Mount sysfs next, if the kernel supports it:
if [ -d /sys ]; then
diff --git a/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild b/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild
index d97b63e28..7c1264195 100755
--- a/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild
+++ b/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild
@@ -23,9 +23,9 @@
cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=sysvinit-scripts
-VERSION=${VERSION:-2.1}
+VERSION=${VERSION:-15.0}
ARCH=noarch
-BUILD=${BUILD:-41}
+BUILD=${BUILD:-1}
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
diff --git a/source/k/kernel-configs/config-generic-5.10.31 b/source/k/kernel-configs/config-generic-5.10.32
index 613e038c8..38836eef2 100644
--- a/source/k/kernel-configs/config-generic-5.10.31
+++ b/source/k/kernel-configs/config-generic-5.10.32
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.31 Kernel Configuration
+# Linux/x86 5.10.32 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.3.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-generic-5.10.31.x64 b/source/k/kernel-configs/config-generic-5.10.32.x64
index 50be57f0d..e9b2ba65e 100644
--- a/source/k/kernel-configs/config-generic-5.10.31.x64
+++ b/source/k/kernel-configs/config-generic-5.10.32.x64
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.31 Kernel Configuration
+# Linux/x86 5.10.32 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.3.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-generic-smp-5.10.31-smp b/source/k/kernel-configs/config-generic-smp-5.10.32-smp
index c09d11a5e..49430614a 100644
--- a/source/k/kernel-configs/config-generic-smp-5.10.31-smp
+++ b/source/k/kernel-configs/config-generic-smp-5.10.32-smp
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.31 Kernel Configuration
+# Linux/x86 5.10.32 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.3.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-huge-5.10.31 b/source/k/kernel-configs/config-huge-5.10.32
index 1d1158ccc..2478b0a26 100644
--- a/source/k/kernel-configs/config-huge-5.10.31
+++ b/source/k/kernel-configs/config-huge-5.10.32
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.31 Kernel Configuration
+# Linux/x86 5.10.32 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.3.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-huge-5.10.31.x64 b/source/k/kernel-configs/config-huge-5.10.32.x64
index f4bdf5635..c78af7193 100644
--- a/source/k/kernel-configs/config-huge-5.10.31.x64
+++ b/source/k/kernel-configs/config-huge-5.10.32.x64
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.31 Kernel Configuration
+# Linux/x86 5.10.32 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.3.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-huge-smp-5.10.31-smp b/source/k/kernel-configs/config-huge-smp-5.10.32-smp
index 22d1d87ad..cf18fcae8 100644
--- a/source/k/kernel-configs/config-huge-smp-5.10.31-smp
+++ b/source/k/kernel-configs/config-huge-smp-5.10.32-smp
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.31 Kernel Configuration
+# Linux/x86 5.10.32 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.3.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/l/libdvdnav/libdvdnav.SlackBuild b/source/l/libdvdnav/libdvdnav.SlackBuild
index f8cf270d4..0c06e997c 100755
--- a/source/l/libdvdnav/libdvdnav.SlackBuild
+++ b/source/l/libdvdnav/libdvdnav.SlackBuild
@@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=libdvdnav
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-4}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then