Hi,
On 05/26/2010 02:50 PM, Martin Gracik wrote:
No I haven't, I just tried the updates.img with the new rescue.py,
and the LD_LIBRARY_PATH was ok.
Ok, ack then.
You mean there is a patch in master branch, we may need in rhel6-branch,
along with this patch?
I thought there might be such a patch, but if you tested things then ack.
Regards,
Hans
--
Martin Gracik
----- "Hans de Goede"<hdegoede@xxxxxxxxxx> wrote:
Hi,
IIRC there were also some changes to the loader LD_LIBRARY_PATH made
around
the same time as this patch, have you checked if we maybe need those
changes
too ?
Regards,
Hans
On 05/26/2010 11:27 AM, Martin Gracik wrote:
The hardcoded setting of LD_LIBRARY_PATH was not taking into
consideration if there are lib or lib64 directories,
and was also overwriting everything loader put there before.
Changed to just prepend "/mnt/sysimage" to the directories
we already have in the path.
---
rescue.py | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/rescue.py b/rescue.py
index 632d6ad..f360cc7 100644
--- a/rescue.py
+++ b/rescue.py
@@ -411,7 +411,9 @@ def runRescue(anaconda, instClass):
fd.close()
# set a library path to use mounted fs
- os.environ["LD_LIBRARY_PATH"] =
"/lib:/usr/lib:/usr/X11R6/lib:/lib:/mnt/usr/lib:/mnt/sysimage/lib:/mnt/sysimage/usr/lib:/mnt/sysimage/usr/X11R6/lib"
+ libdirs = os.environ["LD_LIBRARY_PATH"].split(":")
+ mounted = map(lambda dir: "/mnt/sysimage%s" % dir,
libdirs)
+ os.environ["LD_LIBRARY_PATH"] = ":".join(libdirs +
mounted)
# find groff data dir
try:
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list