1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
}
|