mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 12:38:27 +02:00
24 lines
913 B
Plaintext
24 lines
913 B
Plaintext
|
diff -Nur linux-mips-cvs/drivers/pcmcia/Makefile linux-broadcom/drivers/pcmcia/Makefile
|
||
|
--- linux-mips-cvs/drivers/pcmcia/Makefile 2004-04-16 23:05:25.000000000 +0200
|
||
|
+++ linux-broadcom/drivers/pcmcia/Makefile 2005-01-31 13:13:14.000000000 +0100
|
||
|
@@ -72,6 +72,10 @@
|
||
|
au1000_ss-objs-$(CONFIG_MIPS_HYDROGEN3) += au1000_hydrogen3.o
|
||
|
au1000_ss-objs-$(CONFIG_MIPS_XXS1500) += au1000_xxs1500.o
|
||
|
|
||
|
+obj-$(CONFIG_PCMCIA_BCM4710) += bcm4710_ss.o
|
||
|
+bcm4710_ss-objs := bcm4710_generic.o
|
||
|
+bcm4710_ss-objs += bcm4710_pcmcia.o
|
||
|
+
|
||
|
obj-$(CONFIG_PCMCIA_SA1100) += sa1100_cs.o
|
||
|
obj-$(CONFIG_PCMCIA_M8XX) += m8xx_pcmcia.o
|
||
|
obj-$(CONFIG_PCMCIA_SIBYTE) += sibyte_generic.o
|
||
|
@@ -110,5 +114,8 @@
|
||
|
au1x00_ss.o: $(au1000_ss-objs-y)
|
||
|
$(LD) -r -o $@ $(au1000_ss-objs-y)
|
||
|
|
||
|
+bcm4710_ss.o: $(bcm4710_ss-objs)
|
||
|
+ $(LD) -r -o $@ $(bcm4710_ss-objs)
|
||
|
+
|
||
|
yenta_socket.o: $(yenta_socket-objs)
|
||
|
$(LD) $(LD_RFLAG) -r -o $@ $(yenta_socket-objs)
|