# HG changeset patch # User Dominique Corbex # Date 1241191829 -7200 # Node ID 49f0bd2ae6ad7582965a91bab7d7a9d241f55131 # Parent a460be90b0820aa97f76f2ae7ec8cddde338b96d Add: pcmcia-cis (information files for some pcmcia cards) diff -r a460be90b082 -r 49f0bd2ae6ad pcmcia-cis/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcmcia-cis/description.txt Fri May 01 17:30:29 2009 +0200 @@ -0,0 +1,15 @@ +Some PCMCIA card need a "CIS" override (sort of a "firmware" override) to work correctly, this package provides the proper files. Supported cards are: +3Com Megahertz 3CCFEM556 LAN + 56k Modem +3Com Megahertz 3CXEM556 LAN + 56k Modem +ADVANTECH COMpad-32/85 +ADVANTECH COMpad-32/85B-4 +Allied Telesis,K.K Ethernet LAN Card CentreCOM LA-PCM +LanPro EP-4000A ethernet card +LINKSYS E-CARD +LINKSYS PCMLM28 +MultiTech MT5634ZLX PCMCIA 56K DataFax +National Semiconductor Multiple Function Card LAN/Modem +NE2000-compatible Ethernet cards +PE-200 ethernet card +RS-COM 2P dual-serial-port IO card +Tamarack NE2000 card diff -r a460be90b082 -r 49f0bd2ae6ad pcmcia-cis/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcmcia-cis/receipt Fri May 01 17:30:29 2009 +0200 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="pcmcia-cis" +VERSION="3.2.8" +CATEGORY="system-tools" +SHORT_DESC="Card Information Structure files needed by some pcmcia cards" +MAINTAINER="domcox@slitaz.org" +DEPENDS="pcmciautils" +SOURCE="pcmcia-cs" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pcmcia-cs.sourceforge.net" +WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" + +genpkg_rules() +{ + # From the Linux Kernel 2.6 PCMCIA - mini-HOWTO + # http://www.kernel.org/pub/linux/utils/kernel/pcmcia/howto.html + # Get .dat files from pcmcia-cs and store it into /lib/firmware/ + mkdir -p $fs/lib/firmware + cp -a $src/etc/cis/*.dat $fs/lib/firmware + # Rename extension to .cis + cd $fs/lib/firmware + for NAME in $(ls .); do + mv -f ${NAME} ${NAME%.*}.cis + done +} +