Changeset c9f5e238 in mainline
- Timestamp:
- 2011-03-26T09:56:22Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 291b8bc, aee6c73, cee51fd
- Parents:
- ea696998
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/console.c
rea696998 rc9f5e238 53 53 #include <str.h> 54 54 55 /* 56 * devman produces a lot of output and by giving so many pages 57 * we to allow /app/klog to catch-up. 58 */ 59 #ifdef CONFIG_DEVMAN_EARLY_LAUNCH 60 #define KLOG_PAGES 64 61 #else 55 62 #define KLOG_PAGES 4 63 #endif 64 56 65 #define KLOG_LENGTH (KLOG_PAGES * PAGE_SIZE / sizeof(wchar_t)) 57 66 #define KLOG_LATENCY 8 -
uspace/app/init/init.c
rea696998 rc9f5e238 288 288 289 289 spawn("/srv/clip"); 290 291 #ifdef CONFIG_DEVMAN_EARLY_LAUNCH292 spawn("/srv/devman");293 #endif294 290 295 291 /* … … 318 314 getterm("term/vc6", "/app/klog", false); 319 315 320 #ifndef CONFIG_DEVMAN_EARLY_LAUNCH 316 #ifdef CONFIG_DEVMAN_EARLY_LAUNCH 317 spawn("/srv/devman"); 318 #else 321 319 getterm("term/vc7", "/srv/devman", false); 322 320 #endif
Note:
See TracChangeset
for help on using the changeset viewer.