projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10b9dd5
)
init: use pr_cont() when displaying rotator during ramdisk loading.
author
Nicolas Schichan
<nicolas.schichan@gmail.com>
Thu, 24 Nov 2016 12:38:04 +0000
(13:38 +0100)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Thu, 24 Nov 2016 17:32:20 +0000
(09:32 -0800)
Otherwise each individual rotator char would be printed in a new line:
(...)
[ 0.642350] -
[ 0.644374] |
[ 0.646367] -
(...)
Signed-off-by: Nicolas Schichan <nicolas.schichan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
init/do_mounts_rd.c
patch
|
blob
|
history
diff --git
a/init/do_mounts_rd.c
b/init/do_mounts_rd.c
index 8a09b32e07d6c33351993c4c6beb19f5782d6c94..dd4104c9aa12c6a517ff7066d52ab6057d26e586 100644
(file)
--- a/
init/do_mounts_rd.c
+++ b/
init/do_mounts_rd.c
@@
-272,7
+272,7
@@
int __init rd_load_image(char *from)
sys_write(out_fd, buf, BLOCK_SIZE);
#if !defined(CONFIG_S390)
if (!(i % 16)) {
- pr
intk
("%c\b", rotator[rotate & 0x3]);
+ pr
_cont
("%c\b", rotator[rotate & 0x3]);
rotate++;
}
#endif