[Packages] utils/lcd4linux:
* Update to lcd4linux trunk revision 847 * Add an simple init script and config file * Cleanup Makefile git-svn-id: svn://svn.openwrt.org/openwrt/packages@9646 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
Index: lcd4linux-0.10.0+cvs20051015.orig/drv_RouterBoard.c
|
||||
Index: lcd4linux-847/drv_RouterBoard.c
|
||||
===================================================================
|
||||
--- lcd4linux-0.10.0+cvs20051015.orig.orig/drv_RouterBoard.c 2007-07-07 14:02:56.000000000 +0200
|
||||
+++ lcd4linux-0.10.0+cvs20051015.orig/drv_RouterBoard.c 2007-07-07 14:02:56.000000000 +0200
|
||||
@@ -120,7 +120,7 @@
|
||||
--- lcd4linux-847.orig/drv_RouterBoard.c 2007-12-01 17:15:10.000000000 +0100
|
||||
+++ lcd4linux-847/drv_RouterBoard.c 2007-12-01 17:15:10.000000000 +0100
|
||||
@@ -106,7 +106,7 @@
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
|
@ -1,150 +0,0 @@
|
||||
Index: lcd4linux-0.10.0+cvs20051015.orig/udelay.c
|
||||
===================================================================
|
||||
--- lcd4linux-0.10.0+cvs20051015.orig.orig/udelay.c 2007-07-07 14:02:55.000000000 +0200
|
||||
+++ lcd4linux-0.10.0+cvs20051015.orig/udelay.c 2007-07-07 14:02:56.000000000 +0200
|
||||
@@ -134,28 +134,11 @@
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
-#ifdef USE_OLD_UDELAY
|
||||
-
|
||||
-#include <time.h>
|
||||
-
|
||||
-#else
|
||||
-
|
||||
-#include <math.h>
|
||||
-#include <unistd.h>
|
||||
-#include <fcntl.h>
|
||||
-#include <errno.h>
|
||||
-#include <string.h>
|
||||
-#include <sys/time.h>
|
||||
-
|
||||
-#ifdef HAVE_ASM_MSR_H
|
||||
-#include <asm/msr.h>
|
||||
-#endif
|
||||
-
|
||||
-#endif
|
||||
-
|
||||
-
|
||||
#include "debug.h"
|
||||
#include "udelay.h"
|
||||
+
|
||||
+#include <time.h>
|
||||
+#include <errno.h>
|
||||
|
||||
#ifdef USE_OLD_UDELAY
|
||||
|
||||
@@ -163,16 +146,30 @@
|
||||
|
||||
void ndelay(const unsigned long nsec)
|
||||
{
|
||||
+#if 0
|
||||
unsigned long loop = (nsec * loops_per_usec + 999) / 1000;
|
||||
|
||||
__asm__(".align 16\n" "1:\tdecl %0\n" "\tjne 1b": /* no result */
|
||||
:"a"(loop));
|
||||
+#endif
|
||||
+ struct timespec val;
|
||||
+ struct timespec rem;
|
||||
+ int ret;
|
||||
+
|
||||
+ val.tv_sec = 0;
|
||||
+ val.tv_nsec = nsec;
|
||||
+
|
||||
+ do {
|
||||
+ ret = nanosleep(&val, &rem);
|
||||
+ val = rem;
|
||||
+ } while ((ret == -1) && (errno == EINTR));
|
||||
}
|
||||
|
||||
/* adopted from /usr/src/linux/init/main.c */
|
||||
|
||||
void udelay_calibrate(void)
|
||||
{
|
||||
+#if 0
|
||||
clock_t tick;
|
||||
unsigned long bit;
|
||||
|
||||
@@ -197,12 +194,13 @@
|
||||
if (clock() > tick)
|
||||
loops_per_usec &= ~bit;
|
||||
}
|
||||
+#endif
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
static unsigned int ticks_per_usec = 0;
|
||||
-
|
||||
+#if 0
|
||||
static void getCPUinfo(int *hasTSC, double *MHz)
|
||||
{
|
||||
int fd;
|
||||
@@ -249,10 +247,11 @@
|
||||
}
|
||||
|
||||
}
|
||||
-
|
||||
+#endif
|
||||
|
||||
void udelay_init(void)
|
||||
{
|
||||
+#if 0
|
||||
#ifdef HAVE_ASM_MSR_H
|
||||
|
||||
int tsc;
|
||||
@@ -274,12 +273,13 @@
|
||||
ticks_per_usec = 0;
|
||||
info("udelay: using gettimeofday() delay loop");
|
||||
}
|
||||
+#endif
|
||||
}
|
||||
|
||||
|
||||
void ndelay(const unsigned long nsec)
|
||||
{
|
||||
-
|
||||
+#if 0
|
||||
#ifdef HAVE_ASM_MSR_H
|
||||
|
||||
if (ticks_per_usec) {
|
||||
@@ -313,6 +313,20 @@
|
||||
gettimeofday(&now, NULL);
|
||||
} while (now.tv_sec == end.tv_sec ? now.tv_usec < end.tv_usec : now.tv_sec < end.tv_sec);
|
||||
}
|
||||
+#endif
|
||||
+
|
||||
+ struct timespec val;
|
||||
+ struct timespec rem;
|
||||
+ int ret;
|
||||
+
|
||||
+ val.tv_sec = 0;
|
||||
+ val.tv_nsec = nsec;
|
||||
+
|
||||
+ do {
|
||||
+ ret = nanosleep(&val, &rem);
|
||||
+ val = rem;
|
||||
+ } while ((ret == -1) && (errno == EINTR));
|
||||
+
|
||||
}
|
||||
|
||||
#endif
|
||||
Index: lcd4linux-0.10.0+cvs20051015.orig/udelay.h
|
||||
===================================================================
|
||||
--- lcd4linux-0.10.0+cvs20051015.orig.orig/udelay.h 2007-07-07 14:02:56.000000000 +0200
|
||||
+++ lcd4linux-0.10.0+cvs20051015.orig/udelay.h 2007-07-07 14:02:56.000000000 +0200
|
||||
@@ -72,12 +72,14 @@
|
||||
#ifndef _UDELAY_H_
|
||||
#define _UDELAY_H_
|
||||
|
||||
+#if 0
|
||||
/* stolen from linux/asm-i386/processor.h */
|
||||
/* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */
|
||||
static inline void rep_nop(void)
|
||||
{
|
||||
__asm__ __volatile__("rep; nop");
|
||||
}
|
||||
+#endif
|
||||
|
||||
|
||||
#ifdef USE_OLD_UDELAY
|
@ -1,8 +1,8 @@
|
||||
Index: lcd4linux-0.10.0+cvs20051015.orig/drv_generic_parport.c
|
||||
Index: lcd4linux-847/drv_generic_parport.c
|
||||
===================================================================
|
||||
--- lcd4linux-0.10.0+cvs20051015.orig.orig/drv_generic_parport.c 2007-07-07 14:02:55.000000000 +0200
|
||||
+++ lcd4linux-0.10.0+cvs20051015.orig/drv_generic_parport.c 2007-07-07 14:02:57.000000000 +0200
|
||||
@@ -117,16 +117,6 @@
|
||||
--- lcd4linux-847.orig/drv_generic_parport.c 2007-12-01 17:15:10.000000000 +0100
|
||||
+++ lcd4linux-847/drv_generic_parport.c 2007-12-01 17:15:11.000000000 +0100
|
||||
@@ -39,16 +39,6 @@
|
||||
#include <sys/stat.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
@ -19,7 +19,7 @@ Index: lcd4linux-0.10.0+cvs20051015.orig/drv_generic_parport.c
|
||||
#if defined (HAVE_LINUX_PARPORT_H) && defined (HAVE_LINUX_PPDEV_H)
|
||||
#define WITH_PPDEV
|
||||
#include <linux/parport.h>
|
||||
@@ -143,6 +133,11 @@
|
||||
@@ -65,6 +55,11 @@
|
||||
#define PARPORT_STATUS_BUSY 0x80
|
||||
#endif
|
||||
|
||||
@ -27,7 +27,7 @@ Index: lcd4linux-0.10.0+cvs20051015.orig/drv_generic_parport.c
|
||||
+#define inb(foo) 0
|
||||
+#define outb(foo,bar) 0
|
||||
+#endif
|
||||
+
|
||||
+
|
||||
#if !defined(WITH_OUTB) && !defined(WITH_PPDEV)
|
||||
#error neither outb() nor ppdev() possible
|
||||
#error cannot compile parallel port driver
|
||||
|
@ -1,16 +0,0 @@
|
||||
Index: lcd4linux-0.10.0+cvs20051015.orig/plugin_wireless.c
|
||||
===================================================================
|
||||
--- lcd4linux-0.10.0+cvs20051015.orig.orig/plugin_wireless.c 2007-07-07 14:02:55.000000000 +0200
|
||||
+++ lcd4linux-0.10.0+cvs20051015.orig/plugin_wireless.c 2007-07-07 14:02:57.000000000 +0200
|
||||
@@ -92,6 +92,11 @@
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
#include <net/if_arp.h>
|
||||
+#include <linux/version.h>
|
||||
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
|
||||
+#include <linux/types.h>
|
||||
+#include <linux/if.h>
|
||||
+#endif
|
||||
#include <linux/wireless.h>
|
||||
#include <math.h>
|
||||
|
@ -1,24 +1,24 @@
|
||||
Index: lcd4linux-0.10.0+cvs20051015.orig/drv_T6963.c
|
||||
Index: lcd4linux-847/drv_T6963.c
|
||||
===================================================================
|
||||
--- lcd4linux-0.10.0+cvs20051015.orig.orig/drv_T6963.c 2007-07-07 14:02:55.000000000 +0200
|
||||
+++ lcd4linux-0.10.0+cvs20051015.orig/drv_T6963.c 2007-07-07 14:02:57.000000000 +0200
|
||||
@@ -170,7 +170,9 @@
|
||||
--- lcd4linux-847.orig/drv_T6963.c 2007-12-01 17:15:10.000000000 +0100
|
||||
+++ lcd4linux-847/drv_T6963.c 2007-12-01 17:15:11.000000000 +0100
|
||||
@@ -114,7 +114,9 @@
|
||||
/* wait for STA0=1 and STA1=1 */
|
||||
n = 0;
|
||||
do {
|
||||
+#if 0
|
||||
+#if 0
|
||||
rep_nop();
|
||||
+#endif
|
||||
+#endif
|
||||
if (++n > 1000) {
|
||||
debug("hang in status1");
|
||||
bug = 1;
|
||||
@@ -206,7 +208,9 @@
|
||||
@@ -150,7 +152,9 @@
|
||||
/* wait for STA3=1 */
|
||||
n = 0;
|
||||
do {
|
||||
+#if 0
|
||||
+#if 0
|
||||
rep_nop();
|
||||
+#endif
|
||||
+#endif
|
||||
if (++n > 1000) {
|
||||
debug("hang in status2");
|
||||
bug = 1;
|
||||
|
Reference in New Issue
Block a user