Skip to content

Commit

Permalink
treewide: fix shellscript syntax errors/typos
Browse files Browse the repository at this point in the history
Fix multiple syntax errors in shelscripts (of packages only)
These errors were causing many conditions to not working properly

Signed-off-by: Lorenzo Santina <lorenzo.santina@edu.unito.it>
[increase PKG_RELEASE, drop command substitution from directip.sh]
Signed-off-by: Mathias Kresin <dev@kresin.em>
  • Loading branch information
BigNerd95 authored and mkresin committed Sep 13, 2017
1 parent 4f162ac commit d33f790
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package/kernel/mac80211/Makefile
Expand Up @@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=mac80211

PKG_VERSION:=2017-01-31
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
PKG_BACKPORT_VERSION:=
PKG_HASH:=75e6d39e34cf156212a2509172a4a62b673b69eb4a1d9aaa565f7fa719fa2317
Expand Down
2 changes: 1 addition & 1 deletion package/kernel/mac80211/files/lib/wifi/mac80211.sh
Expand Up @@ -92,7 +92,7 @@ detect_mac80211() {
htmode="VHT80"
}

[ -n $htmode ] && ht_capab="set wireless.radio${devidx}.htmode=$htmode"
[ -n "$htmode" ] && ht_capab="set wireless.radio${devidx}.htmode=$htmode"

if [ -x /usr/bin/readlink -a -h /sys/class/ieee80211/${dev} ]; then
path="$(readlink -f /sys/class/ieee80211/${dev}/device)"
Expand Down
2 changes: 1 addition & 1 deletion package/network/config/gre/Makefile
Expand Up @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=gre
PKG_VERSION:=1
PKG_RELEASE:=6
PKG_RELEASE:=7
PKG_LICENSE:=GPL-2.0

include $(INCLUDE_DIR)/package.mk
Expand Down
2 changes: 1 addition & 1 deletion package/network/config/gre/files/gre.sh
Expand Up @@ -25,7 +25,7 @@ gre_generic_setup() {
json_add_string mode "$mode"
json_add_int mtu "${mtu:-1280}"
[ -n "$df" ] && json_add_boolean df "$df"
[ -n "ttl" ] && json_add_int ttl "$ttl"
[ -n "$ttl" ] && json_add_int ttl "$ttl"
[ -n "$tos" ] && json_add_string tos "$tos"
json_add_boolean multicast "$multicast"
json_add_string local "$local"
Expand Down
2 changes: 1 addition & 1 deletion package/network/services/hostapd/Makefile
Expand Up @@ -7,7 +7,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=hostapd
PKG_RELEASE:=3
PKG_RELEASE:=4

PKG_SOURCE_URL:=http://w1.fi/hostap.git
PKG_SOURCE_PROTO:=git
Expand Down
2 changes: 1 addition & 1 deletion package/network/services/hostapd/files/hostapd.sh
Expand Up @@ -620,7 +620,7 @@ wpa_supplicant_add_network() {
scan_ssid=""
}

[[ "$_w_mode" = "adhoc" -o "$_w_mode" = "mesh" ]] && append network_data "$_w_modestr" "$N$T"
[ "$_w_mode" = "adhoc" -o "$_w_mode" = "mesh" ] && append network_data "$_w_modestr" "$N$T"

case "$auth_type" in
none) ;;
Expand Down
2 changes: 1 addition & 1 deletion package/network/utils/comgt/Makefile
Expand Up @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=comgt
PKG_VERSION:=0.32
PKG_RELEASE:=28
PKG_RELEASE:=29

PKG_SOURCE:=$(PKG_NAME).$(PKG_VERSION).tgz
PKG_SOURCE_URL:=@SF/comgt
Expand Down
2 changes: 1 addition & 1 deletion package/network/utils/comgt/files/3g.sh
Expand Up @@ -109,4 +109,4 @@ proto_3g_teardown() {
proto_kill_command "$interface"
}

[ -z "NOT_INCLUDED" ] || add_protocol 3g
[ -z "$NOT_INCLUDED" ] || add_protocol 3g
3 changes: 1 addition & 2 deletions package/network/utils/comgt/files/directip.sh
Expand Up @@ -44,8 +44,7 @@ proto_directip_setup() {
return 1
}

cardinfo=$(gcom -d "$device" -s /etc/gcom/getcardinfo.gcom)
[ -n $(echo "$cardinfo" | grep -q "Sierra Wireless") ] || {
gcom -d "$device" -s /etc/gcom/getcardinfo.gcom | grep -q "Sierra Wireless" || {
proto_notify_error "$interface" BAD_DEVICE
proto_block_restart "$interface"
return 1
Expand Down
2 changes: 1 addition & 1 deletion scripts/om-fwupgradecfg-gen.sh
@@ -1,4 +1,4 @@
#/bin/sh
#!/bin/sh
#
# Copyright (C) 2011 OpenWrt.org
#
Expand Down

0 comments on commit d33f790

Please sign in to comment.