diff options
author | David-John Willis <John.Willis@Distant-earth.com> | 2009-12-13 19:29:51 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-01-06 09:34:55 +0100 |
commit | bf69129951f95969d00ed6e8d9323508c2d8170b (patch) | |
tree | 915b728ba377c08f7955551a3884a9c5fdeebc90 /recipes/fuse | |
parent | 08463df7fe4a5eebe30c66b4d75c87be494372c5 (diff) |
fuse: Add 2.8.1 and checksum (no module recipe as 2.6 module has been in the kernel tree since 2.6.27 and is no longer shipped out of tree).
* Older kernels can still build the older fuse-module and use with the new userspace.
Diffstat (limited to 'recipes/fuse')
-rw-r--r-- | recipes/fuse/fuse_2.8.1.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes/fuse/fuse_2.8.1.bb b/recipes/fuse/fuse_2.8.1.bb new file mode 100644 index 0000000000..88e828c188 --- /dev/null +++ b/recipes/fuse/fuse_2.8.1.bb @@ -0,0 +1,23 @@ +require fuse.inc + +PR = "r0" + +EXTRA_OECONF = " --disable-kernel-module" + +#package utils in a sperate package and stop debian.bbclass renaming it to libfuse-utils, we want it to be fuse-utils +PACKAGES =+ "fuse-utils-dbg fuse-utils libulockmgr libulockmgr-dev libulockmgr-dbg" +FILES_${PN} += "${libdir}/libfuse.so.*" +FILES_${PN}-dev += "${libdir}/libfuse*.la" + +FILES_libulockmgr = "${libdir}/libulockmgr.so.*" +FILES_libulockmgr-dev += "${libdir}/libulock*.la" +FILES_libulockmgr-dbg += "${libdir}/.debug/libulock*" + +FILES_fuse-utils = "${bindir} ${base_sbindir}" +FILES_fuse-utils-dbg = "${bindir}/.debug ${base_sbindir}/.debug" +DEBIAN_NOAUTONAME_fuse-utils = "1" +DEBIAN_NOAUTONAME_fuse-utils-dbg = "1" + +fakeroot do_stage() { + autotools_stage_all +} |