[oe-commits] org.oe.dev mISDN: initial "early and often"-release. Partly closes bug 240.

Laibsch commit openembedded-commits at lists.openembedded.org
Sun May 27 16:09:53 UTC 2007


mISDN: initial "early and often"-release.  Partly closes bug 240.
* compilation runs through
* no functionality tests on-device, yet
* hfcs_usb_endianchecks.diff committed, but does not apply cleanly
  Disabled in bb

Author: Laibsch at openembedded.org
Branch: org.openembedded.dev
Revision: 13de3530d0b45b0d66661bd65455130493abbaa4
ViewMTN: http://monotone.openembedded.org/revision.psp?id=13de3530d0b45b0d66661bd65455130493abbaa4
Files:
1
packages/mISDN
packages/mISDN/files
packages/mISDN/files/Makefile
packages/mISDN/files/hfcs_usb_endianchecks.diff
packages/mISDN/misdn_cvs.bb
Diffs:

#
# mt diff -r76a73b54e1aca7e6533b51a040842d7330dda9ca -r13de3530d0b45b0d66661bd65455130493abbaa4
#
# 
# 
# add_dir "packages/mISDN"
# 
# add_dir "packages/mISDN/files"
# 
# add_file "packages/mISDN/files/Makefile"
#  content [ae4ba1d1d78da0a8e996e575f070bb6b2eab249a]
# 
# add_file "packages/mISDN/files/hfcs_usb_endianchecks.diff"
#  content [4068d04ec1f523da0057c29f6bfe8e237848e8cc]
# 
# add_file "packages/mISDN/misdn_cvs.bb"
#  content [31c94d552e008078de77171c9283bcaea7b9087f]
# 
============================================================
--- packages/mISDN/files/Makefile	ae4ba1d1d78da0a8e996e575f070bb6b2eab249a
+++ packages/mISDN/files/Makefile	ae4ba1d1d78da0a8e996e575f070bb6b2eab249a
@@ -0,0 +1,4 @@
+PWD     := $(shell pwd)
+SELECTION := CONFIG_MISDN_DRV=m CONFIG_MISDN_DSP=m CONFIG_MISDN_HFCUSB=m
+default modules:
+	$(MAKE) -C $(KDIR) SUBDIRS=${PWD}/drivers/isdn/hardware/mISDN/  EXTRA_CFLAGS=-I${PWD}/include modules ${SELECTION} 
============================================================
--- packages/mISDN/files/hfcs_usb_endianchecks.diff	4068d04ec1f523da0057c29f6bfe8e237848e8cc
+++ packages/mISDN/files/hfcs_usb_endianchecks.diff	4068d04ec1f523da0057c29f6bfe8e237848e8cc
@@ -0,0 +1,58 @@
+--- mISDN.org/drivers/isdn/hardware/mISDN/hfcs_usb.c	2005-06-23 18:43:36.000000000 +0200
++++ mISDN/drivers/isdn/hardware/mISDN/hfcs_usb.c	2005-08-12 16:16:24.000000000 +0200
+@@ -2038,9 +2038,9 @@
+ 
+ 	vend_idx = 0xffff;
+ 	for (i = 0; hfcsusb_idtab[i].idVendor; i++) {
+-		if (dev->descriptor.idVendor == hfcsusb_idtab[i].idVendor
++		if (dev->descriptor.idVendor == le16_to_cpu(hfcsusb_idtab[i].idVendor)
+ 		    && dev->descriptor.idProduct ==
+-		    hfcsusb_idtab[i].idProduct) {
++		    le16_to_cpu(hfcsusb_idtab[i].idProduct)) {
+ 			vend_idx = i;
+ 			continue;
+ 		}
+@@ -2160,8 +2160,8 @@
+ 							    usb_transfer_mode
+ 							    = USB_INT;
+ 							packet_size =
+-							    ep->desc.
+-							    wMaxPacketSize;
++							    le16_to_cpu(ep->desc.
++							    wMaxPacketSize);
+ 							break;
+ 						case USB_ENDPOINT_XFER_BULK:
+ 							if (ep_addr & 0x80)
+@@ -2189,8 +2189,8 @@
+ 							    usb_transfer_mode
+ 							    = USB_BULK;
+ 							packet_size =
+-							    ep->desc.
+-							    wMaxPacketSize;
++							    le16_to_cpu(ep->desc.
++							    wMaxPacketSize);
+ 							break;
+ 						case USB_ENDPOINT_XFER_ISOC:
+ 							if (ep_addr & 0x80)
+@@ -2218,8 +2218,8 @@
+ 							    usb_transfer_mode
+ 							    = USB_ISOC;
+ 							iso_packet_size =
+-							    ep->desc.
+-							    wMaxPacketSize;
++							    le16_to_cpu(ep->desc.
++							    wMaxPacketSize);
+ 							break;
+ 						default:
+ 							card->
+@@ -2234,8 +2234,8 @@
+ 						    card;
+ 						card->fifos[cidx].
+ 						    usb_packet_maxlen =
+-						    ep->desc.
+-						    wMaxPacketSize;
++						    le16_to_cpu(ep->desc.
++						    wMaxPacketSize);
+ 						card->fifos[cidx].
+ 						    intervall =
+ 						    ep->desc.bInterval;
============================================================
--- packages/mISDN/misdn_cvs.bb	31c94d552e008078de77171c9283bcaea7b9087f
+++ packages/mISDN/misdn_cvs.bb	31c94d552e008078de77171c9283bcaea7b9087f
@@ -0,0 +1,35 @@
+DESCRIPTION = "mISDN kernel packages"
+PRIORITY = "optional"
+SECTION = "kernel/modules"
+LICENSE = "GPL"
+PR = "r0"
+
+DEFAULT_PREFERENCE = "-1"
+
+# hfcs_usb_endianchecks.diff does not apply cleanly anymore (cf. bug 240)
+# without it the package at least compiles.  no guarantees about functionality.
+SRC_URI = "cvs://anonymous:readonly@cvs.isdn4linux.de/i4ldev;module=mISDN;method=pserver \
+#	   file://hfcs_usb_endianchecks.diff;patch=1 \
+	   file://Makefile"
+
+S = "${WORKDIR}/mISDN/"
+
+inherit module
+
+do_compile_prepend() {
+	cp -f ${WORKDIR}/Makefile ${S}/
+	cp ${S}/drivers/isdn/hardware/mISDN/Makefile.v2.6 ${S}/drivers/isdn/hardware/mISDN/Makefile
+}
+
+do_compile () {
+        unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
+        oe_runmake 'KDIR=${STAGING_KERNEL_DIR}' \
+		   'CC=${KERNEL_CC}' \
+                   'LD=${KERNEL_LD}' 
+}
+
+do_install() {   
+        install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/isdn/hardware/mISDN/
+        install -m 0644 ${S}/drivers/isdn/hardware/mISDN/*${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/isdn/hardware/mISDN
+}
+






More information about the Openembedded-commits mailing list