diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-24 15:18:25 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-24 15:18:25 +0000 |
commit | 32a22905b10d03f4c54245187c8dbdd233d292c0 (patch) | |
tree | 768a6d7b7aeccb337aafe742983bed4848f92601 /shfs/shfs-modules_0.33.oe | |
parent | 54a4e9edea43e6f4bd4f660675f89ec05fd9a37b (diff) |
upgrade shfs and shfs-utils to 0.33
BKrev: 4061a6c1-EHxxF6pnO2oxdOrU1-ZoQ
Diffstat (limited to 'shfs/shfs-modules_0.33.oe')
-rw-r--r-- | shfs/shfs-modules_0.33.oe | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/shfs/shfs-modules_0.33.oe b/shfs/shfs-modules_0.33.oe index e69de29bb2..f5bfe4160a 100644 --- a/shfs/shfs-modules_0.33.oe +++ b/shfs/shfs-modules_0.33.oe @@ -0,0 +1,27 @@ +DESCRIPTION = "A simple and easy to use Linux kernel (2.4+) module which allows you to mount remote filesystems using plain shell (ssh/rsh) connection. \ +It supports some nice features like number of different caches for access speedup, target system optimisations, etc." +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +LICENSE = "GPL" + +SRC_URI = "${SOURCEFORGE_MIRROR}/shfs/shfs-${PV}.tar.gz" +S = "${WORKDIR}/shfs-${PV}/shfs/Linux-2.4" + +#FIXME depend S on kernel version + +inherit module + +do_compile() { + unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS + oe_runmake KERNEL_SOURCES=${KERNEL_SOURCE} KERNEL=${KERNEL_VERSION} LINKER=${LD} LDFLAGS=-r +} + +do_stage() { + install -m 0755 shfs_fs.h shfs.h ${STAGING_INCDIR}/ +} + +do_install() { + install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/fs/shfs/ + install -m 0755 shfs.o ${D}/lib/modules/${KERNEL_VERSION}/kernel/fs/shfs/shfs.o +} |