summaryrefslogtreecommitdiffstats
path: root/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
diff options
context:
space:
mode:
authorUlf Samuelsson <ulf.samuelsson@atmel.com>2007-08-17 13:02:52 +0000
committerUlf Samuelsson <ulf.samuelsson@atmel.com>2007-08-17 13:02:52 +0000
commitee80e9b39b39878ef00a541e4cfd3f1e97e01fd1 (patch)
tree46c57d508679f9a5ee807af2da78a8b67972f52b /target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
parent24c980292843b7b9aebc9f1831c6c1e8ba49c148 (diff)
downloadbuildroot-novena-ee80e9b39b39878ef00a541e4cfd3f1e97e01fd1.tar.gz
buildroot-novena-ee80e9b39b39878ef00a541e4cfd3f1e97e01fd1.zip
Update atstk1002 target skeleton
Diffstat (limited to 'target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname')
-rwxr-xr-xtarget/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname8
1 files changed, 4 insertions, 4 deletions
diff --git a/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname b/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
index fcad428af..cf858ed62 100755
--- a/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
+++ b/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
@@ -2,7 +2,7 @@
PROGRAM=/bin/hostname
-echo -n "Setting hostname:"
+echo -n "Setting hostname: "
[ -x ${PROGRAM} ] || (echo " missing"; exit 0)
if [ -f /etc/hostname ]; then
@@ -12,10 +12,10 @@ else
fi
start() {
- if ${PROGRAM} "${HOST}" > /dev/null 2> /dev/null; then
- echo " '${HOST}'"
+ if ${PROGRAM} "${HOST}"; then
+ echo "'${HOST}'"
else
- echo " failed"
+ echo "failed"
exit 1
fi
}