aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--init/init.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ebd629..0884096 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -75,3 +75,8 @@
2004/11/21
- flx : fix build with gcc-3.3
+
+2004/12/07
+ - removed debugging defines from init which prevented it from working anymore
+ in 0.1.24
+
diff --git a/init/init.c b/init/init.c
index 0f6cf8b..ab97ece 100644
--- a/init/init.c
+++ b/init/init.c
@@ -1154,7 +1154,7 @@ int main(int argc, char **argv, char **envp) {
* can safely ignore and overwrite /dev in case of linuxrc, reason why
* we don't test the presence of /dev/console.
*/
-#if 0
+#ifndef I_AM_REALLY_DEBUGGING
if (linuxrc || stat(dev_console, &statf) == -1) {
print("init/info: /dev/console not found, rebuilding /dev.\n");
if (mount(dev_name, dev_name, tmpfs_fs, MS_MGC_VAL, dev_options) == -1)