diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
commit | a780643c4b6aa11e1a36965a69df7116477c7b4c (patch) | |
tree | 17e81e77bde19931facf9b30fa5b5981df796071 /pcmcia-cs | |
parent | 88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff) |
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb
2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.
2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.
2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge
2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.
BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'pcmcia-cs')
-rw-r--r-- | pcmcia-cs/pcmcia-cs_3.2.8.bb | 0 | ||||
-rw-r--r-- | pcmcia-cs/pcmcia-cs_3.2.8.oe | 86 |
2 files changed, 0 insertions, 86 deletions
diff --git a/pcmcia-cs/pcmcia-cs_3.2.8.bb b/pcmcia-cs/pcmcia-cs_3.2.8.bb new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/pcmcia-cs/pcmcia-cs_3.2.8.bb diff --git a/pcmcia-cs/pcmcia-cs_3.2.8.oe b/pcmcia-cs/pcmcia-cs_3.2.8.oe deleted file mode 100644 index 6ebd1c55d3..0000000000 --- a/pcmcia-cs/pcmcia-cs_3.2.8.oe +++ /dev/null @@ -1,86 +0,0 @@ -DESCRIPTION = "Utilities and system configuration files for the Linux PCMCIA card services" -SECTION = "base" -PRIORITY = "required" -LICENSE = "GPL" -DEPENDS = "virtual/kernel" -PR = "r10" - -SRC_URI = "${SOURCEFORGE_MIRROR}/pcmcia-cs/pcmcia-cs-${PV}.tar.gz \ - file://busybox.patch;patch=1 \ - file://network.patch;patch=1 \ - file://pcic-extra.patch;patch=1 \ - file://pcmcia \ - file://ide.opts \ - file://wireless.opts \ - file://network.conf \ - file://wnv.conf" -S = "${WORKDIR}/pcmcia-cs-${PV}" - -INITSCRIPT_NAME = "pcmcia" -INITSCRIPT_PARAMS = "defaults" - -inherit update-rc.d - -export KERNEL_SOURCE = ${@base_read_file('${STAGING_DIR}/${HOST_SYS}/kernel/kernel-source')} - -sbindir = "/sbin" - -do_configure() { - touch .prereq.ok - touch config.out - cat >config.mk <<EOF -UCC=${CC} -UFLAGS=${CFLAGS} -I${S}/include -HAS_WORDEXP=y -SYSV_INIT=y -RC_DIR=/etc -CONFIG_PNP_BIOS=n -ARCH=${ARCH} -CONFIG_CARDBUS=n -CONFIG_PCMCIA=y -CONFIG_INET=y -CONFIG_SCSI=y -DO_IDE=y -EOF - cat >include/pcmcia/autoconf.h <<EOF -#define HAS_WORDEXP 1 -EOF -} - -do_compile() { - oe_runmake all HAS_XPM= FLIBS="" XMANDIR="" -} - -INSTALL_ETC = "ftl ide ieee1394 memory network parport scsi serial wireless" -INSTALL_ETC_DATA = "config config.opts ftl.opts ieee1394.opts memory.opts network.opts parport.opts scsi.opts serial.opts shared" - -do_install() { - install -d ${D}/${sbindir} - for f in cardmgr/cardctl cardmgr/cardmgr cardmgr/ide_info cardmgr/ifport cardmgr/ifuser cardmgr/pcinitrd flash/ftl_check flash/ftl_format - do - install -m 0755 $f ${D}/${sbindir}/ - done - install -d ${D}/${sysconfdir}/init.d \ - ${D}/${sysconfdir}/pcmcia \ - ${D}/${sysconfdir}/pcmcia/cis - - install -m 0644 ${WORKDIR}/network.conf ${D}/${sysconfdir}/pcmcia/ - install -m 0644 ${WORKDIR}/wnv.conf ${D}/${sysconfdir}/pcmcia/ - - for i in ${INSTALL_ETC}; do - install etc/${i} ${D}/${sysconfdir}/pcmcia/ - done - for i in ${INSTALL_ETC_DATA}; do - install -m 0644 etc/${i} ${D}/${sysconfdir}/pcmcia/ - done - install -m 0644 ${WORKDIR}/ide.opts ${D}/${sysconfdir}/pcmcia/ - install -m 0644 ${WORKDIR}/wireless.opts ${D}/${sysconfdir}/pcmcia/ - for i in etc/cis/*; do - install -m 0644 $i ${D}/${sysconfdir}/pcmcia/cis/ - done - install -m 0755 etc/rc.pcmcia ${D}/${sysconfdir}/init.d/pcmcia - install -d ${D}/${sysconfdir}/sysconfig - install -m 0755 ${WORKDIR}/pcmcia ${D}/${sysconfdir}/sysconfig/pcmcia -} - -FILES_${PN} = "${sbindir} ${sysconfdir}" |