summaryrefslogtreecommitdiffstats
path: root/0035-dracut-install-error-out-if-ldd-reports-no-execution.patch
diff options
context:
space:
mode:
authorHarald Hoyer <harald@redhat.com>2013-06-12 15:18:54 +0200
committerHarald Hoyer <harald@redhat.com>2013-06-12 15:18:54 +0200
commitac2958243963d0fcdf5617efa3cc7d61b4cf4281 (patch)
treed5e2ded98bce3cb36ad1628eaffdb990b5e154d3 /0035-dracut-install-error-out-if-ldd-reports-no-execution.patch
parent44345d3ce100f7e4840b4f5495d6a12c2f48ce1d (diff)
downloaddracut-ac2958243963d0fcdf5617efa3cc7d61b4cf4281.tar.gz
dracut-ac2958243963d0fcdf5617efa3cc7d61b4cf4281.tar.xz
dracut-ac2958243963d0fcdf5617efa3cc7d61b4cf4281.zip
dracut-028-1
- lvm: fixed "thin" recognition Resolves: rhbz#921235 - install libs also from one dir above fixes booting power6 generated initramfs on power7 - setup correct system time and time zone in initrd - cms fixups Resolves: rhbz#970982 rhbz#971025 rhbz#825199 - iso-scan/filename fixes Resolves: rhbz#972337 - add udev rules for persistent network naming Resolves: rhbz#972662
Diffstat (limited to '0035-dracut-install-error-out-if-ldd-reports-no-execution.patch')
-rw-r--r--0035-dracut-install-error-out-if-ldd-reports-no-execution.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/0035-dracut-install-error-out-if-ldd-reports-no-execution.patch b/0035-dracut-install-error-out-if-ldd-reports-no-execution.patch
deleted file mode 100644
index ade0303..0000000
--- a/0035-dracut-install-error-out-if-ldd-reports-no-execution.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From b4dc22cab7b8b071c8a150b9c61edaa247bacb6a Mon Sep 17 00:00:00 2001
-From: Harald Hoyer <harald@redhat.com>
-Date: Thu, 18 Apr 2013 12:54:55 +0200
-Subject: [PATCH] dracut-install: error out, if ldd reports no execution
- permission
-
-This turns off lazy resolving on noexec mounted tmp directories.
-
-https://bugzilla.redhat.com/show_bug.cgi?id=953426
----
- install/dracut-install.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/install/dracut-install.c b/install/dracut-install.c
-index 5040dea..2d0412c 100644
---- a/install/dracut-install.c
-+++ b/install/dracut-install.c
-@@ -285,6 +285,12 @@ static int resolve_deps(const char *src)
-
- log_debug("ldd: '%s'", buf);
-
-+ if (strstr(buf, "you do not have execution permission")) {
-+ log_error(buf);
-+ ret+=1;
-+ break;
-+ }
-+
- if (strstr(buf, "not a dynamic executable"))
- break;
-