From 9969368263a8cdeb03ab0bac9a4804d414719ea8 Mon Sep 17 00:00:00 2001 From: Brian Woods Date: Thu, 24 Oct 2019 10:50:42 -0700 Subject: Fix help message formatting in uboot-script-gen There was a mixure of spaces and tabs in the help message of uboot-script-gen. Fix it to only use tabs like disk_image's help message. Signed-off-by: Brian Woods Acked-by: Stefano Stabellini --- scripts/uboot-script-gen | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/uboot-script-gen b/scripts/uboot-script-gen index 2977066..2232f7a 100644 --- a/scripts/uboot-script-gen +++ b/scripts/uboot-script-gen @@ -146,20 +146,20 @@ function check_depends() function print_help { echo "usage:" - echo " $0 -c CONFIG_FILE -t UBOOT_TYPE -d DIRECTORY" - echo " $0 -h" + echo " $0 -c CONFIG_FILE -t UBOOT_TYPE -d DIRECTORY" + echo " $0 -h" echo "where:" echo " CONFIG_FILE - configuration file" echo " UBOOT_TYPE can be:" echo " sd - alias for \"scsi load 0:1\" for uboot load commands" echo " tftp - alias for \"tftpb\" for uboot load cammnds" - echo " < > - used for uboot load commands" + echo " < > - used for uboot load commands" echo " DIRECTORY - root directory of where the files of CONFIG_FILE" echo " -h - prints out the help message and exits " echo "Defaults:" echo " CONFIG_FILE=$cfg_file, UBOOT_TYPE=\"LOAD_CMD\" env var, DIRECTORY=$uboot_dir" echo "Example:" - echo " $0 -c ../config -d ./build42 -t \"scsi load 1:1\"" + echo " $0 -c ../config -d ./build42 -t \"scsi load 1:1\"" } while getopts ":c:t:d:h" opt; do -- cgit v1.2.3