diff options
author | Marek Vasut <marex@denx.de> | 2016-02-11 16:03:49 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2016-02-24 19:13:03 +0100 |
commit | 80da86642b41cad030a9dd249b91b6949f2e1977 (patch) | |
tree | 605533d27f0c50ac00652fcf27a7990eb3194182 /arch | |
parent | 755ff3a38d37c895a7dc4a4d706c42514d167ae0 (diff) | |
download | u-boot-imx-80da86642b41cad030a9dd249b91b6949f2e1977.zip u-boot-imx-80da86642b41cad030a9dd249b91b6949f2e1977.tar.gz u-boot-imx-80da86642b41cad030a9dd249b91b6949f2e1977.tar.bz2 |
arm: socfpga: Remove bashisms from qts filter
Weed out bashisms from the script. The echo -e does not work in dash,
which is the default /bin/sh in debian .
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Chin Liang See <clsee@altera.com>
Cc: Dalon Westergreen <dwesterg@gmail.com>
Diffstat (limited to 'arch')
-rwxr-xr-x | arch/arm/mach-socfpga/qts-filter.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/mach-socfpga/qts-filter.sh b/arch/arm/mach-socfpga/qts-filter.sh index 1adfbf7..050d6ba 100755 --- a/arch/arm/mach-socfpga/qts-filter.sh +++ b/arch/arm/mach-socfpga/qts-filter.sh @@ -187,13 +187,13 @@ usage() { echo "$0 [soc_type] [input_qts_dir] [input_bsp_dir] [output_dir]" echo "Process QTS-generated headers into U-Boot compatible ones." echo "" - echo -e " soc_type\t-\tType of SoC, either 'cyclone5' or 'arria5'." - echo -e " input_qts_dir\t-\tDirectory with compiled Quartus project" - echo -e "\t\t\t\tand containing the Quartus project file (QPF)." - echo -e " input_bsp_dir\t-\tDirectory with generated bsp containing" - echo -e "\t\t\t\tthe settings.bsp file." - echo -e " output_dir\t-\tDirectory to store the U-Boot compatible" - echo -e "\t\t\t\theaders." + echo " soc_type - Type of SoC, either 'cyclone5' or 'arria5'." + echo " input_qts_dir - Directory with compiled Quartus project" + echo " and containing the Quartus project file (QPF)." + echo " input_bsp_dir - Directory with generated bsp containing" + echo " the settings.bsp file." + echo " output_dir - Directory to store the U-Boot compatible" + echo " headers." echo "" } |