mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
wireless tools: Update 28-pre6 to 29-pre10 to work with 2.6.17 kernel
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@511 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -0,0 +1,34 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# /etc/network/if-pre-up.d/zzz-wireless
|
||||||
|
# by Stefan Tomanek (stefan@pico.ruhr.de)
|
||||||
|
|
||||||
|
|
||||||
|
IWCONFIG=/sbin/iwconfig
|
||||||
|
IFCONFIG=/sbin/ifconfig
|
||||||
|
GREP=/bin/grep
|
||||||
|
LOGGER=/usr/bin/logger
|
||||||
|
SLEEP=/bin/sleep
|
||||||
|
|
||||||
|
# How long do we wait for association?
|
||||||
|
RETRIES=15
|
||||||
|
SLEEPTIME=1
|
||||||
|
|
||||||
|
# Only sleep if we use DHCP (add others methods seperated by spaces)
|
||||||
|
ONLY_FOR="static dhcp"
|
||||||
|
|
||||||
|
if [ -z "$IF_WIRELESS_TYPE" ] && echo "$ONLY_FOR" | grep -q "$METHOD" ; then
|
||||||
|
$IFCONFIG $IFACE up
|
||||||
|
$LOGGER Checking for WLAN association...
|
||||||
|
while ( [ $RETRIES -gt 0 ] && ($IWCONFIG "$IFACE" | $GREP -q "Access Point: Not-Associated") ); do
|
||||||
|
$LOGGER No association yet, $RETRIES retries until timeout
|
||||||
|
RETRIES=$(($RETRIES-1))
|
||||||
|
$SLEEP $SLEEPTIME
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $RETRIES -eq 0 ]; then
|
||||||
|
$LOGGER Timeout waiting for association, continuing anyway...
|
||||||
|
else
|
||||||
|
$LOGGER Found association!
|
||||||
|
fi
|
||||||
|
fi
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
DESCRIPTION = "Tools for the Linux Standard Wireless Extension Subsystem"
|
|
||||||
HOMEPAGE = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
|
|
||||||
SECTION = "base"
|
|
||||||
PRIORITY = "optional"
|
|
||||||
DEPENDS = "virtual/kernel"
|
|
||||||
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
|
|
||||||
LICENSE = "GPL"
|
|
||||||
PR = "r6"
|
|
||||||
|
|
||||||
SRC_URI = "http://pcmcia-cs.sourceforge.net/ftp/contrib/wireless_tools.${PV}.tar.gz \
|
|
||||||
file://man.patch;patch=1 \
|
|
||||||
file://wireless-tools.if-pre-up"
|
|
||||||
S = "${WORKDIR}/wireless_tools.${PV}"
|
|
||||||
|
|
||||||
inherit module-base
|
|
||||||
|
|
||||||
do_configure() {
|
|
||||||
rm -f wireless.h
|
|
||||||
}
|
|
||||||
|
|
||||||
do_compile() {
|
|
||||||
unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
|
|
||||||
oe_runmake KERNEL_SRC=${KERNEL_SOURCE} KERNEL_VERSION=${KERNEL_VERSION} BUILD_SHARED=y
|
|
||||||
}
|
|
||||||
|
|
||||||
do_install() {
|
|
||||||
oe_runmake PREFIX=${D} install
|
|
||||||
install -d ${D}${sysconfdir}/network/if-pre-up.d
|
|
||||||
install ${WORKDIR}/wireless-tools.if-pre-up ${D}${sysconfdir}/network/if-pre-up.d/wireless-tools
|
|
||||||
}
|
|
||||||
|
|
||||||
FILES_${PN} = "${bindir} ${sbindir} ${libexecdir} ${libdir}/lib*.so.* \
|
|
||||||
${sysconfdir} ${sharedstatedir} ${localstatedir} \
|
|
||||||
/bin /sbin /lib/*.so* ${datadir}/${PN} ${libdir}/${PN} \
|
|
||||||
/etc/network"
|
|
||||||
+8
-8
@@ -2,16 +2,15 @@ DESCRIPTION = "Tools for the Linux Standard Wireless Extension Subsystem"
|
|||||||
HOMEPAGE = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
|
HOMEPAGE = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html"
|
||||||
SECTION = "base"
|
SECTION = "base"
|
||||||
PRIORITY = "optional"
|
PRIORITY = "optional"
|
||||||
#DEPENDS = "virtual/kernel"
|
|
||||||
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
|
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
|
||||||
LICENSE = "GPL"
|
LICENSE = "GPL"
|
||||||
PR = "r1"
|
PR = "r1"
|
||||||
|
|
||||||
SRC_URI = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.${PV}.tar.gz \
|
SRC_URI = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.28.pre13.tar.gz \
|
||||||
file://man.patch;patch=1 \
|
file://man.patch;patch=1 \
|
||||||
file://fixheaders.patch;patch=1 \
|
file://wireless-tools.if-pre-up \
|
||||||
file://wireless-tools.if-pre-up"
|
file://zzz-wireless.if-pre-up"
|
||||||
S = "${WORKDIR}/wireless_tools.${PV}"
|
S = "${WORKDIR}/wireless_tools.28"
|
||||||
|
|
||||||
CFLAGS =+ "-I${S}"
|
CFLAGS =+ "-I${S}"
|
||||||
EXTRA_OEMAKE = "-e 'BUILD_SHARED=y' \
|
EXTRA_OEMAKE = "-e 'BUILD_SHARED=y' \
|
||||||
@@ -24,16 +23,17 @@ do_compile() {
|
|||||||
oe_runmake all libiw.a
|
oe_runmake all libiw.a
|
||||||
}
|
}
|
||||||
|
|
||||||
do_stage () {
|
do_stage() {
|
||||||
install -m 0644 wireless.h ${STAGING_INCDIR}/
|
install -m 0644 wireless.h ${STAGING_INCDIR}/
|
||||||
install -m 0644 iwlib.h ${STAGING_INCDIR}/
|
install -m 0644 iwlib.h ${STAGING_INCDIR}/
|
||||||
oe_libinstall -a -so libiw ${STAGING_LIBDIR}/
|
oe_libinstall -a -so libiw ${STAGING_LIBDIR}/
|
||||||
}
|
}
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
oe_runmake PREFIX=${D} install install-static
|
oe_runmake PREFIX=${D} install-iwmulticall install-dynamic
|
||||||
install -d ${D}${sysconfdir}/network/if-pre-up.d
|
install -d ${D}${sysconfdir}/network/if-pre-up.d
|
||||||
install ${WORKDIR}/wireless-tools.if-pre-up ${D}${sysconfdir}/network/if-pre-up.d/wireless-tools
|
install ${WORKDIR}/wireless-tools.if-pre-up ${D}${sysconfdir}/network/if-pre-up.d/wireless-tools
|
||||||
|
install ${WORKDIR}/zzz-wireless.if-pre-up ${D}${sysconfdir}/network/if-pre-up.d/zzz-wireless
|
||||||
}
|
}
|
||||||
|
|
||||||
PACKAGES = "libiw libiw-dev libiw-doc ${PN} ${PN}-doc"
|
PACKAGES = "libiw libiw-dev libiw-doc ${PN} ${PN}-doc"
|
||||||
Reference in New Issue
Block a user