diff options
author | Chris Lumens <clumens@redhat.com> | 2006-12-14 19:41:24 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-12-14 19:41:24 +0000 |
commit | e9e0d80df98b60be98aa143d179774235e25a6d4 (patch) | |
tree | d9176e730d78e6e2cf809afa731d18dbb0e17b3a /anaconda | |
parent | 20f317455db23c91937998ae987ba3f195efe91d (diff) | |
download | anaconda-e9e0d80df98b60be98aa143d179774235e25a6d4.tar.gz anaconda-e9e0d80df98b60be98aa143d179774235e25a6d4.tar.xz anaconda-e9e0d80df98b60be98aa143d179774235e25a6d4.zip |
Make device nodes in anaconda instead of in runRescue so cachedDrives isn't
empty.
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -738,6 +738,9 @@ if __name__ == "__main__": import rescue, instdata + iutil.makeDriveDeviceNodes() + iutil.makeCharDeviceNodes() + anaconda.id = instdata.InstallData(anaconda, [], "fd0", anaconda.methodstr, opts.display_mode) rescue.runRescue(anaconda) @@ -860,6 +863,8 @@ if __name__ == "__main__": xserver.logfile = "/tmp/ramfs/X.log" try: + import pdb + pdb.set_trace() xserver.generateConfig() xserver.addExtraScreen("Anaconda") xserver.display = ":1" |