summaryrefslogtreecommitdiffstats
path: root/source/a
diff options
context:
space:
mode:
Diffstat (limited to 'source/a')
-rw-r--r--source/a/mkinitrd/0001-Fix-LUKSTRIM-with-C-T-and-UUID.patch31
-rwxr-xr-xsource/a/mkinitrd/mkinitrd.SlackBuild7
2 files changed, 36 insertions, 2 deletions
diff --git a/source/a/mkinitrd/0001-Fix-LUKSTRIM-with-C-T-and-UUID.patch b/source/a/mkinitrd/0001-Fix-LUKSTRIM-with-C-T-and-UUID.patch
new file mode 100644
index 000000000..8166d9ffd
--- /dev/null
+++ b/source/a/mkinitrd/0001-Fix-LUKSTRIM-with-C-T-and-UUID.patch
@@ -0,0 +1,31 @@
+--- ./init.orig 2018-04-18 13:55:09.661574866 -0500
++++ ./init 2019-12-15 12:09:45.337013433 -0600
+@@ -219,11 +219,15 @@
+ fi
+
+ LUKSLIST_DEFERRED=""
+- LUKSLIST=$(echo $LUKSDEV | tr -s ':' ' ')
++ for dev in $(echo $LUKSDEV | tr -s ':' ' ') ; do
++ LUKSLIST="$LUKSLIST $(findfs $dev)"
++ done
++
++ for dev in $(echo $LUKSTRIM | tr -s ':' ' ') ; do
++ TRIMLIST="$TRIMLIST $(findfs $dev)"
++ done
++
+ for LUKSDEV in $LUKSLIST ; do
+- if echo $LUKSDEV | grep -q "LABEL=" || echo $LUKSDEV | grep -q "UUID=" ; then
+- LUKSDEV=$(findfs $LUKSDEV)
+- fi
+ if /sbin/cryptsetup isLuks ${LUKSDEV} 1>/dev/null 2>/dev/null ; then
+ if echo $ROOTDEV | grep -q "LABEL=" || echo $ROOTDEV | grep -q "UUID=" ; then
+ CRYPTDEV="luks$(basename $LUKSDEV)"
+@@ -232,7 +236,7 @@
+ else
+ CRYPTDEV="luks$(basename $LUKSDEV)"
+ fi
+- if echo $LUKSTRIM | grep -wq $LUKSDEV 2>/dev/null ; then
++ if echo "$TRIMLIST" | grep -wq "$LUKSDEV" 2>/dev/null ; then
+ LUKSOPTS="--allow-discards"
+ else
+ LUKSOPTS=""
diff --git a/source/a/mkinitrd/mkinitrd.SlackBuild b/source/a/mkinitrd/mkinitrd.SlackBuild
index 550576038..20965e3ab 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.30.1
-BUILD=${BUILD:-13}
+BUILD=${BUILD:-14}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@@ -93,12 +93,15 @@ chmod 644 $PKG/usr/share/mkinitrd/keymaps.tar.gz
tar xf $CWD/_initrd-tree.tar.gz
cat $CWD/init > init
+ # Patch init:
+ zcat $CWD/0001-Fix-LUKSTRIM-with-C-T-and-UUID.patch.gz | patch -p1 --verbose || exit 1
+
# These are useful for ARM:
mknod -m 644 dev/random c 1 8
mknod -m 644 dev/urandom c 1 9
tar czf ../initrd-tree.tar.gz .
-)
+) || exit 1
rm -rf $PKG/usr/share/mkinitrd/initrd-tree
# Add busybox docs: