summaryrefslogtreecommitdiff
path: root/repo/util/dracut/fix-sbase-coreutils.patch
diff options
context:
space:
mode:
Diffstat (limited to 'repo/util/dracut/fix-sbase-coreutils.patch')
-rw-r--r--repo/util/dracut/fix-sbase-coreutils.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/repo/util/dracut/fix-sbase-coreutils.patch b/repo/util/dracut/fix-sbase-coreutils.patch
new file mode 100644
index 0000000..0ff740f
--- /dev/null
+++ b/repo/util/dracut/fix-sbase-coreutils.patch
@@ -0,0 +1,41 @@
+diff -rNu a/Makefile b/Makefile
+--- a/Makefile 2021-05-27 13:34:19.000000000 +0100
++++ b/Makefile 2022-03-09 16:32:58.455844674 +0000
+@@ -158,7 +158,7 @@
+ ln -fs dracut-functions.sh $(DESTDIR)$(pkglibdir)/dracut-functions
+ install -m 0755 dracut-logger.sh $(DESTDIR)$(pkglibdir)/dracut-logger.sh
+ install -m 0755 dracut-initramfs-restore.sh $(DESTDIR)$(pkglibdir)/dracut-initramfs-restore
+- cp -arx modules.d $(DESTDIR)$(pkglibdir)
++ cp -ar modules.d $(DESTDIR)$(pkglibdir)
+ ifneq ($(enable_documentation),no)
+ for i in $(man1pages); do install -m 0644 $$i $(DESTDIR)$(mandir)/man1/$${i##*/}; done
+ for i in $(man5pages); do install -m 0644 $$i $(DESTDIR)$(mandir)/man5/$${i##*/}; done
+--- a/src/install/dracut-install.c 2021-05-27 13:34:19.000000000 +0100
++++ b/src/install/dracut-install.c 2022-03-29 21:40:51.220267462 +0100
+@@ -324,10 +324,10 @@
+ pid = fork();
+ if (pid == 0) {
+ if (geteuid() == 0 && no_xattr == false)
+- execlp("cp", "cp", "--reflink=auto", "--sparse=auto", "--preserve=mode,xattr,timestamps", "-fL",
++ execlp("cp", "cp", "-fL",
+ src, dst, NULL);
+ else
+- execlp("cp", "cp", "--reflink=auto", "--sparse=auto", "--preserve=mode,timestamps", "-fL", src,
++ execlp("cp", "cp", "-fL", src,
+ dst, NULL);
+ _exit(EXIT_FAILURE);
+ }
+@@ -336,10 +336,10 @@
+ if (errno != EINTR) {
+ ret = -1;
+ if (geteuid() == 0 && no_xattr == false)
+- log_error("Failed: cp --reflink=auto --sparse=auto --preserve=mode,xattr,timestamps -fL %s %s",
++ log_error("Failed: cp -fL %s %s",
+ src, dst);
+ else
+- log_error("Failed: cp --reflink=auto --sparse=auto --preserve=mode,timestamps -fL %s %s",
++ log_error("Failed: cp -fL %s %s",
+ src, dst);
+ break;
+ }
+