Browse Source

[Kernel] Use stream mode to open console device.

bernard 11 years ago
parent
commit
1f3ea02c5a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/kservice.c

+ 1 - 1
src/kservice.c

@@ -1073,7 +1073,7 @@ rt_device_t rt_console_set_device(const char *name)
 
         /* set new console device */
         _console_device = new;
-        rt_device_open(_console_device, RT_DEVICE_OFLAG_RDWR);
+        rt_device_open(_console_device, RT_DEVICE_OFLAG_RDWR | RT_DEVICE_FLAG_STREAM);
     }
 
     return old;