From: Stefan E. <se...@us...> - 2004-02-10 01:41:16
|
Update of /cvsroot/blob/blob In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20308 Modified Files: configure.in Log Message: PCMCIA CLEANUP Remove PCMCIA mess and do it like the ethernet driver stuff. Probably breaks SA1111 PCMCIA stuff, but I'm the only one who uses that anyway, and I'll fix. The SA11x0 stuff is still missing. Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.79 retrieving revision 1.80 diff -u -d -r1.79 -r1.80 --- configure.in 4 Dec 2003 21:51:23 -0000 1.79 +++ configure.in 9 Feb 2004 19:25:12 -0000 1.80 @@ -197,6 +197,7 @@ BLOB_NETWORK_DRIVER_OBJS="ether-smc9196.o" BLOB_LED_STARTCODE="ledasm-sa11x0.o" BLOB_FLASH_OBJS="intel32.o" + BLOB_PCMCIA_DRIVER_OBJS="pcmcia-sa11x0.o" DIAG_PLATFORM_OBJS="dafit.o" use_cpu="sa1110" use_lcd="yes" @@ -205,10 +206,11 @@ board_name="Prueftechnik RotAlign Alpha" AC_DEFINE(RA_ALPHA,1,[PT RotAlign Alpha]) BLOB_PLATFORM_OBJS="ra_alpha.o" - dnl BLOB_NETWORK_DRIVER_OBJS="ether-smc9196.o" + BLOB_NETWORK_DRIVER_OBJS="ether-smc9196.o" BLOB_LED_DRIVER_OBJS="led-pxa.o" BLOB_LED_STARTCODE="ledasm-pxa.o" BLOB_FLASH_OBJS="intel32.o" + BLOB_PCMCIA_DRIVER_OBJS="pcmcia-pxa.o" DIAG_PLATFORM_OBJS="ra_alpha.o" use_cpu="pxa250" use_lcd="no" @@ -378,6 +380,7 @@ BLOB_LED_STARTCODE="ledasm-sa11x0.o" BLOB_FLASH_OBJS="intel32.o" DIAG_PLATFORM_OBJS="system3.o" + BLOB_PCMCIA_DRIVER_OBJS="pcmcia-sa1111.o" use_cpu="sa1110" use_lcd="yes" ;; @@ -735,7 +738,7 @@ dnl Check wether or not pcmcia support is wanted if test "x$pcmcia_flag" = "xyes" ; then - BLOB_PCMCIA_OBJS="pcmcia.o" + BLOB_PCMCIA_OBJS="pcmcia.o $BLOB_PCMCIA_DRIVER_OBJS" AC_DEFINE(CONFIG_PCMCIA_SUPPORT,no,"PCMCIA support") fi |