diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
commit | 72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch) | |
tree | a5cd9d8f47e909834d3dbc44f895556e68bcf18f /miscutils/fbsplash.c | |
parent | 75d151e31d135ebab083307ded4e9b98970baa75 (diff) |
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/fbsplash.c')
-rw-r--r-- | miscutils/fbsplash.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/miscutils/fbsplash.c b/miscutils/fbsplash.c index 4c891deb0..9ac91e01e 100644 --- a/miscutils/fbsplash.c +++ b/miscutils/fbsplash.c @@ -25,20 +25,20 @@ //config: default y //config: select PLATFORM_LINUX //config: help -//config: Shows splash image and progress bar on framebuffer device. -//config: Can be used during boot phase of an embedded device. ~2kb. -//config: Usage: -//config: - use kernel option 'vga=xxx' or otherwise enable fb device. -//config: - put somewhere fbsplash.cfg file and an image in .ppm format. -//config: - $ setsid fbsplash [params] & +//config: Shows splash image and progress bar on framebuffer device. +//config: Can be used during boot phase of an embedded device. +//config: Usage: +//config: - use kernel option 'vga=xxx' or otherwise enable fb device. +//config: - put somewhere fbsplash.cfg file and an image in .ppm format. +//config: - $ setsid fbsplash [params] & //config: -c: hide cursor //config: -d /dev/fbN: framebuffer device (if not /dev/fb0) //config: -s path_to_image_file (can be "-" for stdin) //config: -i path_to_cfg_file (can be "-" for stdin) //config: -f path_to_fifo (can be "-" for stdin) -//config: - if you want to run it only in presence of kernel parameter: +//config: - if you want to run it only in presence of kernel parameter: //config: grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params] & -//config: - commands for fifo: +//config: - commands for fifo: //config: "NN" (ASCII decimal number) - percentage to show on progress bar //config: "exit" - well you guessed it |