diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /sharp-binary-only/sharp-camera-support-2.4.18-rmk7-pxa3-embedix/sharpzdc | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'sharp-binary-only/sharp-camera-support-2.4.18-rmk7-pxa3-embedix/sharpzdc')
-rw-r--r-- | sharp-binary-only/sharp-camera-support-2.4.18-rmk7-pxa3-embedix/sharpzdc | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/sharp-binary-only/sharp-camera-support-2.4.18-rmk7-pxa3-embedix/sharpzdc b/sharp-binary-only/sharp-camera-support-2.4.18-rmk7-pxa3-embedix/sharpzdc deleted file mode 100644 index fbfd99d002..0000000000 --- a/sharp-binary-only/sharp-camera-support-2.4.18-rmk7-pxa3-embedix/sharpzdc +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# sharpzdc 1.00 2001/11/21 00:00:00 (Akio Tagami) -# -# Initialize or shutdown for SHARP Digital Camera Card -# -# The first argument should be either 'start' or 'stop'. The second -# argument is the base name for the device. - -if [ -r ./shared ] ; then . ./shared ; else . /etc/pcmcia/shared ; fi - -# Get device attributes -get_info $DEVICE - -# Load site-specific settings -ADDRESS="$SCHEME,$SOCKET,$SERIAL_NO" - -# cmd=$ACTION, dev=$DEVICE, id=$MAJOR, key=$ADDRESS - -case "$ACTION" in - -'start') - if [ -e /dev/$DEVICE ] ; then - rm -f /dev/$DEVICE - fi - mknod /dev/$DEVICE c $MAJOR 0 - chmod a+rw /dev/$DEVICE - ;; - -'check') - ;; - -'stop') - ;; - -'cksum') - ;; - -'suspend'|'resume') - ;; - -*) - usage - ;; - -esac - -exit 0 - |