diff options
author | Jeremy Katz <katzj@redhat.com> | 2007-12-06 17:38:24 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2007-12-06 17:40:09 -0500 |
commit | f7a7f8030ffae0ed0ec53cf44f2074050faf50a2 (patch) | |
tree | 25fff7ae11bcdd0817edafa8b38fc37a258b53e1 /backend.py | |
parent | de4110589716ccc7449eeb070819bc1c68c7a6a6 (diff) | |
download | anaconda-f7a7f8030ffae0ed0ec53cf44f2074050faf50a2.tar.gz anaconda-f7a7f8030ffae0ed0ec53cf44f2074050faf50a2.tar.xz anaconda-f7a7f8030ffae0ed0ec53cf44f2074050faf50a2.zip |
Just drop driver disks into /tmp instead of /tmp/ramfs
Diffstat (limited to 'backend.py')
-rw-r--r-- | backend.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend.py b/backend.py index a1e11c072..adbaa1538 100644 --- a/backend.py +++ b/backend.py @@ -62,7 +62,7 @@ class AnacondaBackend: def copyFirmware(self, anaconda): # Multiple driver disks may be loaded, so we need to glob for all # the firmware files in all the driver disk directories. - for f in glob.glob("/tmp/ramfs/DD-*/firmware/*"): + for f in glob.glob("/tmp/DD-*/firmware/*"): try: shutil.copyfile(f, "%s/lib/firmware/" % anaconda.rootPath) except IOError, e: @@ -75,7 +75,7 @@ class AnacondaBackend: for (n, arch, tag) in self.kernelVersionList(anaconda.rootPath): packages.recreateInitrd(n, anaconda.rootPath) - for d in glob.glob("/tmp/ramfs/DD-*"): + for d in glob.glob("/tmp/DD-*"): shutil.copytree(d, "/root/" + os.path.basename(d)) sys.stdout.flush() |