diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2007-11-17 11:13:20 +0000 |
---|---|---|
committer | Philipp Zabel <philipp.zabel@gmail.com> | 2007-11-17 11:13:20 +0000 |
commit | 3730169b8a1cbed89d5030cb56a7b912d75781ba (patch) | |
tree | 203967d9c8cedc45342653b7a1ee2e0018f4ecb1 | |
parent | b0d8fe59b111213ae0c2e1b8ce7e4993e65b6eef (diff) |
fuse-module: add 2.7.1
-rw-r--r-- | packages/fuse/fuse-module_2.7.1.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/fuse/fuse-module_2.7.1.bb b/packages/fuse/fuse-module_2.7.1.bb new file mode 100644 index 0000000000..48cc33a338 --- /dev/null +++ b/packages/fuse/fuse-module_2.7.1.bb @@ -0,0 +1,29 @@ +require fuse.inc + +RRECOMMENDS = "fuse" +PR = "r0" + +S = "${WORKDIR}/fuse-${PV}" +FILES_${PN} = "/dev ${base_libdir}/modules ${sysconfdir}" +EXTRA_OECONF = " --enable-kernel-module --with-kernel=${STAGING_KERNEL_DIR}" + +inherit module + +do_configure() { + cd ${S} ; oe_runconf +} + +do_compile(){ + LDFLAGS="" + cd ${S}/kernel + oe_runmake +} + +fakeroot do_install() { + LDFLAGS="" + install -d ${D}${sysconfdir}/udev/rules.d/ + install -m 644 util/udev.rules ${D}${sysconfdir}/udev/rules.d/ + cd ${S}/kernel + oe_runmake install DESTDIR=${D} +} + |