summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xanaconda10
2 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 752a2499f..4cca256fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
+2005-10-28 Jeremy Katz <katzj@redhat.com>
+
+ * anaconda: Don't make character device nodes quite that early
+
2005-10-27 Jeremy Katz <katzj@redhat.com>
+ * anaconda.spec: Bump version.
+
* upgrade.py (upgrade_remove_blacklist): Fix x86_64 traceback
* bootloader.py (writeBootloader): Handle inconsistently named
diff --git a/anaconda b/anaconda
index ad20c53ca..2acdc8c7f 100755
--- a/anaconda
+++ b/anaconda
@@ -413,11 +413,6 @@ if os.environ.has_key("LD_PRELOAD"):
# is imported
iutil.writeRpmPlatform()
-# create character device nodes if we're not running in test mode - have
-# to do this early sine it's used for Synaptics, etc.
-if not flags.test:
- iutil.makeCharDeviceNodes()
-
try:
(args, extra) = isys.getopt(theargs, 'CGTRxtdr:fm:',
[ 'graphical', 'text', 'test', 'debug', 'nofallback',
@@ -809,6 +804,11 @@ if iutil.memInstalled() < isys.MIN_RAM:
screen.finish()
sys.exit(0)
+# create character device nodes if we're not running in test mode - have
+# to do this early sine it's used for Synaptics, etc.
+if not flags.test:
+ iutil.makeCharDeviceNodes()
+
#
# handle class passed from loader
#