~vibhavp/ubuntu/raring/dahdi-tools/merge-from-debian

« back to all changes in this revision

Viewing changes to xpp/oct612x/octasic-helper

  • Committer: Vibhav Pant
  • Date: 2012-12-26 17:23:16 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: vibhavp@gmail.com-20121226172316-o2jojsfcnr0aqrme
* Merge from Debian unstable. Remaining changes:
  - Bug Fix: If linux-headers are not installed, don't block, and print
    information for the user.
  - added debian/dahdi.postinst
  - added --error-handler=init_failed to debian/rules
  - debian/control: Added gawk as dependency for dkms build (LP: #493304)
  - Changes from Debian:
    - debian/control: Change Maintainer
    - debian/control: Removed Uploaders field.
    - debian/control: Removed Debian Vcs-Svn entry and replaced with
      ubuntu-voip Vcs-Bzr, to reflect divergence in packages.
    - debian/control: Package dahdi Depends on dahdi-dkms | dahdi-source 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
#
 
4
# Jeffrey C. Ollie <jeff@ocjtech.us>
 
5
#
 
6
# $1 == information requested
 
7
# $2 == path to octasic directory
 
8
#
 
9
 
 
10
APIDIR=$2/octdeviceapi/oct6100api/oct6100_api
 
11
 
 
12
case $1 in
 
13
    objects)
 
14
        echo $APIDIR/oct6100_adpcm_chan.o \
 
15
            $APIDIR/oct6100_channel.o \
 
16
            $APIDIR/oct6100_chip_open.o \
 
17
            $APIDIR/oct6100_chip_stats.o \
 
18
            $APIDIR/oct6100_conf_bridge.o \
 
19
            $APIDIR/oct6100_debug.o \
 
20
            $APIDIR/oct6100_events.o \
 
21
            $APIDIR/oct6100_interrupts.o \
 
22
            $APIDIR/oct6100_memory.o \
 
23
            $APIDIR/oct6100_miscellaneous.o \
 
24
            $APIDIR/oct6100_mixer.o \
 
25
            $APIDIR/oct6100_phasing_tsst.o \
 
26
            $APIDIR/oct6100_playout_buf.o \
 
27
            $APIDIR/oct6100_remote_debug.o \
 
28
            $APIDIR/oct6100_tlv.o \
 
29
            $APIDIR/oct6100_tone_detection.o \
 
30
            $APIDIR/oct6100_tsi_cnct.o \
 
31
            $APIDIR/oct6100_tsst.o \
 
32
            $2/apilib/bt/octapi_bt0.o \
 
33
            $2/apilib/largmath/octapi_largmath.o \
 
34
            $2/apilib/llman/octapi_llman.o
 
35
        ;;
 
36
    cflags)
 
37
        echo -I$2/include -I$2/octdeviceapi -I$2/octdeviceapi/oct6100api
 
38
        ;;
 
39
esac