summaryrefslogtreecommitdiffstats
path: root/target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio
diff options
context:
space:
mode:
authorThomas Petazzoni2010-12-05 21:53:07 +0100
committerPeter Korsgaard2010-12-16 15:04:07 +0100
commitc874dea8a2b415f1c8f92e6a653999884bf3fa02 (patch)
tree2675c4f961c0a158ea42860700f4d6ab07bfe87f /target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio
parentboard: update and minimize atstk100x_defconfig (diff)
downloadbuildroot-c874dea8a2b415f1c8f92e6a653999884bf3fa02.tar.gz
buildroot-c874dea8a2b415f1c8f92e6a653999884bf3fa02.tar.xz
buildroot-c874dea8a2b415f1c8f92e6a653999884bf3fa02.zip
board: remove atstk1005_defconfig
Neither the kernel nor U-Boot have support for a 1005 board, so let's get rid of this board configuration, the corresponding target skeleton, kernel and busybox configuration and device table. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio')
-rw-r--r--target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio142
1 files changed, 0 insertions, 142 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
deleted file mode 100644
index 7c07f2801..000000000
--- a/target/device/Atmel/atstk1005/target_skeleton/etc/init.d/S99gpio
+++ /dev/null
@@ -1,142 +0,0 @@
-#!/bin/sh
-
-echo -n "Get board type for GPIO: "
-if [ ! -e "/etc/release" ]; then
- echo "missing";
- exit 1
-fi
-
-BOARD=`cat /etc/release | cut -d ' ' -f1`
-
-if [ "${BOARD}" = "" ]; then
- echo "none";
-elif [ "${BOARD}" = "NGW" ]; then
- echo "'${BOARD}'"
-
- echo -n " boot LED: "
- if mkdir /config/gpio/bootled > /dev/null 2> /dev/null; then
- if ! echo 0 > /config/gpio/bootled/gpio_id; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0x10000 > /config/gpio/bootled/pin_mask; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0x10000 > /config/gpio/bootled/oe_mask; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 1 > /config/gpio/bootled/enabled; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0x10000 > /dev/gpio0; then
- echo "failed"
- exit 1
- fi
-
- echo "done"
- else
- echo "failed"
- exit 1
- fi
-
- echo -n " LED A: "
- if mkdir /config/gpio/leda > /dev/null 2> /dev/null; then
- if ! echo 0 > /config/gpio/leda/gpio_id; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0x80000 > /config/gpio/leda/pin_mask; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0x80000 > /config/gpio/leda/oe_mask; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 1 > /config/gpio/leda/enabled; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0 > /dev/gpio1; then
- echo "failed"
- exit 1
- fi
-
- echo "done"
- else
- echo "failed"
- exit 1
- fi
-
- echo -n " LED B: "
- if mkdir /config/gpio/ledb > /dev/null 2> /dev/null; then
- if ! echo 4 > /config/gpio/ledb/gpio_id; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0x80000 > /config/gpio/ledb/pin_mask; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0x80000 > /config/gpio/ledb/oe_mask; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 1 > /config/gpio/ledb/enabled; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0 > /dev/gpio2; then
- echo "failed"
- exit 1
- fi
-
- echo "done"
- else
- echo "failed"
- exit 1
- fi
-elif [ "${BOARD}" = "STK1000" ]; then # end NGW
- echo "'${BOARD}'"
-
- echo -n " switches: "
- if mkdir /config/gpio/switches > /dev/null 2> /dev/null; then
- if ! echo 1 > /config/gpio/switches/gpio_id; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 0xff > /config/gpio/switches/pin_mask; then
- echo "failed"
- exit 1
- fi
-
- if ! echo 1 > /config/gpio/switches/enabled; then
- echo "failed"
- exit 1
- fi
-
- echo "done"
- else
- echo "failed"
- exit 1
- fi
-else # end STK1000
- echo "'${BOARD}'"
- echo " WARNING: no GPIO for this board"
-fi