From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/ark3116/ark3116-0.4.1/Makefile.patch | 19 +++++++++++++++++++ recipes/ark3116/ark3116-0.4.1/ark3116.c.patch | 17 +++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 recipes/ark3116/ark3116-0.4.1/Makefile.patch create mode 100644 recipes/ark3116/ark3116-0.4.1/ark3116.c.patch (limited to 'recipes/ark3116/ark3116-0.4.1') diff --git a/recipes/ark3116/ark3116-0.4.1/Makefile.patch b/recipes/ark3116/ark3116-0.4.1/Makefile.patch new file mode 100644 index 0000000000..427d970227 --- /dev/null +++ b/recipes/ark3116/ark3116-0.4.1/Makefile.patch @@ -0,0 +1,19 @@ +*** ark3116/Makefile.orig 2006-04-29 15:42:08.000000000 +0200 +--- ark3116/Makefile 2006-04-29 15:43:26.000000000 +0200 +*************** +*** 7,13 **** + EXTRA_CFLAGS += -I/usr/src/linux/drivers/usb/serial + + modules: +! $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) -I/usr/src/linux/drivers/usb/serial modules + + install: modules + install -d $(KMISC) +--- 7,13 ---- + EXTRA_CFLAGS += -I/usr/src/linux/drivers/usb/serial + + modules: +! $(MAKE) -C $(KERNEL_SOURCE) M=$(PWD) -I/usr/src/linux/drivers/usb/serial modules + + install: modules + install -d $(KMISC) diff --git a/recipes/ark3116/ark3116-0.4.1/ark3116.c.patch b/recipes/ark3116/ark3116-0.4.1/ark3116.c.patch new file mode 100644 index 0000000000..6080abefaa --- /dev/null +++ b/recipes/ark3116/ark3116-0.4.1/ark3116.c.patch @@ -0,0 +1,17 @@ +*** ark3116/ark3116.c.orig 2006-04-29 16:00:34.000000000 +0200 +--- ark3116/ark3116.c 2006-04-29 16:00:27.000000000 +0200 +*************** +*** 443,452 **** +--- 443,454 ---- + tty = port->tty; + if (tty && urb->actual_length) { + for (i = 0; i < urb->actual_length ; ++i) { ++ #if 0 + /* if we insert more than TTY_FLIPBUF_SIZE characters, we drop them. */ + if(tty->flip.count >= TTY_FLIPBUF_SIZE) { + tty_flip_buffer_push(tty); + } ++ #endif + /* this doesn't actually push the data through unless tty->low_latency is set */ + tty_insert_flip_char(tty, data[i], 0); + } -- cgit 1.2.3-korg