X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=anaconda-errorhandling.patch;h=e8f8e7c1230e1ca678c0828a1cb2e465f0266e6d;hb=672971de1b1e80070d3180f255039edccf5bff9f;hp=34a3ba9bf09315ab7ac9df4b462155cc6c50cbf8;hpb=9e9f0a8beeaac18cde7096e3d5344e33a25c3e89;p=packages%2Fanaconda.git diff --git a/anaconda-errorhandling.patch b/anaconda-errorhandling.patch index 34a3ba9..e8f8e7c 100644 --- a/anaconda-errorhandling.patch +++ b/anaconda-errorhandling.patch @@ -37,3 +37,26 @@ else: os.makedirs("%s-disc%d/%s/RPMS" % (self.dist_dir, i, self.product_path)) +--- anaconda-11.0.5/fsset.py~ 2006-05-24 22:08:46.490080945 +0300 ++++ anaconda-11.0.5/fsset.py 2006-05-24 22:17:32.421824167 +0300 +@@ -1284,6 +1284,8 @@ + isys.makeDevInode(root.device.getDevice(), dev) + rdev = os.stat(dev).st_rdev + ++ if os.path.exists(instPath + "/dev/root"): ++ os.unlink(instPath + "/dev/root") + os.mknod("%s/dev/root" % (instPath,), stat.S_IFBLK | 0600, rdev) + + # return the "boot" device +--- anaconda-11.0.5/anaconda 2006-06-05 23:04:26.382957338 +0300 ++++ anaconda-11.0.5/anaconda 2006-06-05 23:04:04.572468297 +0300 +@@ -952,7 +952,8 @@ + logfile = xlogfile, + xStartedCB = doStartupX11Actions, + xQuitCB = doShutdownX11Actions, useFB = useFBX) +- except RuntimeError: ++ except RuntimeError, msg: ++ log.warning("xserver.startX: %s", msg) + xsetup_failed = True + + if xsetup_failed: