bf3fe05dfb
This needs some more testing before it's on by default. If the card is otherwise functioning, these messages may be confusing to the user. If the card is not functioning, the driver can be reloaded with debug to check for this condition. Signed-off-by: Shaun Ruffell <sruffell@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9205 a0bf4364-ded3-4de4-8d8a-66a801d63aff
21 lines
538 B
Makefile
21 lines
538 B
Makefile
# Install firmwares and initialization scripts for the Astribank
|
|
# drivers
|
|
|
|
FPGA_FW = FPGA_FXS.hex FPGA_1141.hex FPGA_1151.hex FPGA_1161.hex
|
|
PIC_FW = PIC_TYPE_1.hex PIC_TYPE_2.hex PIC_TYPE_3.hex PIC_TYPE_4.hex
|
|
FIRMWARES = USB_FW.hex $(FPGA_FW) $(PIC_FW)
|
|
PROTO_VER = 30
|
|
SCRIPTS_BASE = $(patsubst %,init_card_%_$(PROTO_VER),1 2 3 4)
|
|
SCRIPTS = $(SCRIPTS_BASE:%=../%)
|
|
TARGET = $(DESTDIR)/usr/share/dahdi
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
install:
|
|
mkdir -p $(TARGET)
|
|
install $(SCRIPTS) $(TARGET)/
|
|
install -m 644 ../XppConfig.pm $(FIRMWARES) $(TARGET)/
|
|
|