diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/led | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
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 <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/led')
-rw-r--r-- | recipes/led/files/nokernelheader.patch | 43 | ||||
-rw-r--r-- | recipes/led/led_cvs.bb | 27 |
2 files changed, 70 insertions, 0 deletions
diff --git a/recipes/led/files/nokernelheader.patch b/recipes/led/files/nokernelheader.patch new file mode 100644 index 0000000000..d8b618583b --- /dev/null +++ b/recipes/led/files/nokernelheader.patch @@ -0,0 +1,43 @@ +--- bl.c.orig 2004-12-23 00:15:06.000000000 +0100 ++++ bl.c 2004-12-23 00:22:59.000000000 +0100 +@@ -38,8 +38,39 @@ + #include <string.h> + #include <fcntl.h> + #include <linux/ioctl.h> +-#include <linux/h3600_ts.h> + ++enum flite_mode { ++ FLITE_MODE1 = 1, ++ FLITE_AUTO_MODE = 1, /* for reference only */ ++ FLITE_MANUAL_MODE = 2, /* Use this normally? */ ++ FLITE_GET_LIGHT_SENSOR = 3 /* Returns light reading in "brightness" field */ ++}; ++enum flite_pwr { ++ FLITE_PWR_OFF = 0, ++ FLITE_PWR_ON = 1 ++}; ++ ++typedef struct h3600_ts_flite { ++ unsigned char mode; ++ unsigned char pwr; ++ unsigned char brightness; ++} FLITE_IN; ++ ++/*************************** Updated "universal" structures *******************/ ++ ++/* Sets backlight for both H3100 and H3600 models - technically "frontlight" for H3600 */ ++struct h3600_ts_backlight { ++enum flite_pwr power; /* 0 = off, 1 = on */ ++unsigned char brightness; /* 0 - 255 */ ++}; ++ ++/* Use 'f' as magic number */ ++#define IOC_H3600_TS_MAGIC 'f' ++ ++#define TS_GET_BACKLIGHT _IOR(IOC_H3600_TS_MAGIC, 20, struct h3600_ts_backlight) ++#define TS_SET_BACKLIGHT _IOW(IOC_H3600_TS_MAGIC, 20, struct h3600_ts_backlight) ++#define FLITE_ON _IOW(IOC_H3600_TS_MAGIC, 7, struct h3600_ts_flite) ++ + /* The ioctl can be called from a ts, tsraw or key file descriptor */ + #define DEV_NODE "/dev/touchscreen/0" + int debug = 0; diff --git a/recipes/led/led_cvs.bb b/recipes/led/led_cvs.bb new file mode 100644 index 0000000000..7d3b76c6f5 --- /dev/null +++ b/recipes/led/led_cvs.bb @@ -0,0 +1,27 @@ +SECTION = "base" +LICENSE= "GPL" +PV = "0.0cvs${SRCDATE}" +DESCRIPTION = "Command line tool for iPaq LED control" + +SRC_URI = "${HANDHELDS_CVS};module=apps/h3600_test \ + file://nokernelheader.patch;patch=1;pnum=0" +inherit module-base + +S = "${WORKDIR}/h3600_test" +PR = "r0" + +inherit pkgconfig + +FILES_${PN} = "${bindir}" + +do_configure (){ +} + +do_compile (){ + oe_runmake led CC="${CROSS_DIR}/bin/${TARGET_SYS}-gcc -I${STAGING_INCDIR} -I${STAGING_KERNEL_DIR}/include -L${STAGING_LIBDIR}" AS=${CROSS_DIR}/bin/${TARGET_SYS}-as LD=${CROSS_DIR}/bin/${TARGET_SYS}-ld +} + +do_install () { + install -d ${D}${bindir} + install -m 4755 ${S}/led ${D}${bindir}/led +} |