summaryrefslogtreecommitdiff
path: root/extra/dracut
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-04 23:52:30 +0100
committerdavidovski <david@davidovski.xyz>2022-05-04 23:52:30 +0100
commit739c65c54cb0e957df5e9b76f93fb02554e5cac3 (patch)
tree09ddfa0a342f3ea9de136cb50abdd79821bf1b53 /extra/dracut
parent4c585ad54388285500fd18a6aaa516894e0f2c16 (diff)
moved everything to new file formatting
Diffstat (limited to 'extra/dracut')
-rw-r--r--extra/dracut/fix-sbase-coreutils.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/extra/dracut/fix-sbase-coreutils.patch b/extra/dracut/fix-sbase-coreutils.patch
deleted file mode 100644
index 0ff740f..0000000
--- a/extra/dracut/fix-sbase-coreutils.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-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;
- }
-