blob: 7fe6137c245d15e73ee3e8e1ee9213e631b3f027 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
DESCRIPTION = "Utilities and system configuration files for the Linux PCMCIA card services"
SECTION = "base"
PRIORITY = "required"
LICENSE = "GPL"
DEPENDS = "virtual/kernel"
SRC_URI = "${SOURCEFORGE_MIRROR}/pcmcia-cs/pcmcia-cs-${PV}.tar.gz"
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() {
./Configure --noprompt --sysv --nopnp --rcdir=${sysconfdir} --arch="${ARCH}" --kernel="${KERNEL_SOURCE}" \
--srctree --nocardbus --ucc="${CC}" --ld="${LD}" --uflags="${CFLAGS}" --target=.
oe_runmake all HAS_XPM= FLIBS="" XMANDIR=""
}
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
cp -a etc/* ${D}/${sysconfdir}/pcmcia/
install -m 0755 etc/rc.pcmcia ${D}/${sysconfdir}/init.d/pcmcia
}
FILES_${PN} = "${sbindir} ${sysconfdir}"
|