[oe-commits] org.oe.dev ezxd: work around bug in makedevs (doesn't do subdirs) and make the devnod in do_install

koen commit openembedded-commits at lists.openembedded.org
Sun Sep 23 16:49:35 UTC 2007


ezxd: work around bug in makedevs (doesn't do subdirs) and make the devnod in do_install

Author: koen at openembedded.org
Branch: org.openembedded.dev
Revision: 95e8730c119c888791c0f69dd7c86c80e56e4519
ViewMTN: http://monotone.openembedded.org/revision/info/95e8730c119c888791c0f69dd7c86c80e56e4519
Files:
1
packages/ezx/ezxd_svn.bb
Diffs:

#
# mt diff -r2ae6102121608ca2009c2836841b4c50cf749b89 -r95e8730c119c888791c0f69dd7c86c80e56e4519
#
# 
# 
# patch "packages/ezx/ezxd_svn.bb"
#  from [b56176292b0c3556aa88055dc138488378e86453]
#    to [da9cb81d38e8d11e3e0ab84d48abfb9575ddf6aa]
# 
============================================================
--- packages/ezx/ezxd_svn.bb	b56176292b0c3556aa88055dc138488378e86453
+++ packages/ezx/ezxd_svn.bb	da9cb81d38e8d11e3e0ab84d48abfb9575ddf6aa
@@ -1,10 +1,10 @@ PV = "0.0+svnr${SRCREV}"
 DESCRIPTION = "Open implementation of motorola's tapisrv, replaces opentapi"
 LICENSE = "GPLv2"
 SECTION = "devel"
 AUTHOR = "Daniel Ribeiro"
 
 PV = "0.0+svnr${SRCREV}"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "svn://svn.openezx.org/trunk/src/userspace/;module=ezxd;proto=http \
            file://ezxd.init \
@@ -21,8 +21,11 @@ do_configure() {
         sed -i -e s:CROSS:CC:g Makefile
 }
 
-do_install() {
-	install -d ${D}${bindir}
+fakeroot do_install() {
+        install -d ${D}/dev/input
+        mknod ${D}/dev/input/uinput c 10 223
+
+        install -d ${D}${bindir}
 	install -m 755 ezxd ${D}${bindir}
 
 	install -d ${D}${libdir}/ezxd
@@ -33,3 +36,5 @@ do_install() {
         install -m 0755 ${WORKDIR}/ezxd.init ${D}${sysconfdir}/init.d/ezxd
 }
 
+FILES_${PN} += "/dev"
+






More information about the Openembedded-commits mailing list