diff options
author | Yann E. MORIN <yann.morin.1998@anciens.enib.fr> | 2010-09-20 23:26:07 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-09-30 22:08:56 +0200 |
commit | 5c6320f1b550b3607cc4ed42a95811381d31395f (patch) | |
tree | f4f4c34308764a2814126be8713722516db454ae /target/device/Atmel/atstk1005/target_skeleton/etc | |
parent | d12bc6294a37d52150fe14292d4e84d7a70e4861 (diff) | |
download | buildroot-novena-5c6320f1b550b3607cc4ed42a95811381d31395f.tar.gz buildroot-novena-5c6320f1b550b3607cc4ed42a95811381d31395f.zip |
skeleton: fix atstk1005, ststk100x and atngw100 for POSIX compliance
Using two '=' for string comparison is a bashism.
Revert to using one, as stated in POSIX 1003.1-2008.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target/device/Atmel/atstk1005/target_skeleton/etc')
-rw-r--r-- | target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio b/target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio index 967761aaf..7c07f2801 100644 --- a/target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio +++ b/target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio @@ -8,9 +8,9 @@ fi BOARD=`cat /etc/release | cut -d ' ' -f1` -if [ "${BOARD}" == "" ]; then +if [ "${BOARD}" = "" ]; then echo "none"; -elif [ "${BOARD}" == "NGW" ]; then +elif [ "${BOARD}" = "NGW" ]; then echo "'${BOARD}'" echo -n " boot LED: " @@ -111,7 +111,7 @@ elif [ "${BOARD}" == "NGW" ]; then echo "failed" exit 1 fi -elif [ "${BOARD}" == "STK1000" ]; then # end NGW +elif [ "${BOARD}" = "STK1000" ]; then # end NGW echo "'${BOARD}'" echo -n " switches: " |