diff options
author | Piotr Dymacz <pepe2k@gmail.com> | 2016-12-13 22:30:11 +0100 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-12-20 09:35:36 +0100 |
commit | 35ed3be59fb3fb0c0501fa70e79251b71d963784 (patch) | |
tree | e01297804bc4bdbdcf3ccc7df681abbad230abb9 /package/boot/uboot-envtools/files/kirkwood | |
parent | f70a2adca1ea942e86037a2b5d18d53c4d565311 (diff) | |
download | upstream-35ed3be59fb3fb0c0501fa70e79251b71d963784.tar.gz upstream-35ed3be59fb3fb0c0501fa70e79251b71d963784.tar.bz2 upstream-35ed3be59fb3fb0c0501fa70e79251b71d963784.zip |
uboot-envtools: fix code formatting style in uci-defaults files
Few minor code formatting style fixes, including:
- keep one board per line
- always use "|\" (for consistency)
- remove redundant double quotes and empty lines
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
Diffstat (limited to 'package/boot/uboot-envtools/files/kirkwood')
-rw-r--r-- | package/boot/uboot-envtools/files/kirkwood | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/package/boot/uboot-envtools/files/kirkwood b/package/boot/uboot-envtools/files/kirkwood index b4a4d4e1c1..055e0eba42 100644 --- a/package/boot/uboot-envtools/files/kirkwood +++ b/package/boot/uboot-envtools/files/kirkwood @@ -14,16 +14,16 @@ touch /etc/config/ubootenv board=$(kirkwood_board_name) case "$board" in -"dockstar" | \ -"guruplug-server-plus" | \ -"ib62x0" | \ -"linksys-viper" | \ -"pogo_e02" | \ -"sheevaplug" | \ -"sheevaplug-esata" ) +dockstar|\ +guruplug-server-plus|\ +ib62x0|\ +linksys-viper|\ +pogo_e02|\ +sheevaplug|\ +sheevaplug-esata) ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000" ;; -"linksys-audi") +linksys-audi) ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x4000" "0x4000" ;; esac |