aboutsummaryrefslogtreecommitdiffstats
path: root/shfs
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
committerChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
commita780643c4b6aa11e1a36965a69df7116477c7b4c (patch)
tree17e81e77bde19931facf9b30fa5b5981df796071 /shfs
parent88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff)
downloadopenembedded-a780643c4b6aa11e1a36965a69df7116477c7b4c.tar.gz
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb 2004/12/07 04:58:25-06:00 ti.com!kergoth More updates per the core rename. 2004/12/07 04:46:51-06:00 ti.com!kergoth Update soundtracker per the core rename. 2004/12/07 04:44:14-06:00 ti.com!kergoth Merge 2004/12/07 04:42:38-06:00 ti.com!kergoth Updates per the recent rename of the oe core from 'oe' to 'bitbake'. BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'shfs')
-rw-r--r--shfs/shfs-modules_0.35.bb0
-rw-r--r--shfs/shfs-modules_0.35.oe29
-rw-r--r--shfs/shfs-utils_0.35.bb0
-rw-r--r--shfs/shfs-utils_0.35.oe25
4 files changed, 0 insertions, 54 deletions
diff --git a/shfs/shfs-modules_0.35.bb b/shfs/shfs-modules_0.35.bb
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/shfs/shfs-modules_0.35.bb
diff --git a/shfs/shfs-modules_0.35.oe b/shfs/shfs-modules_0.35.oe
deleted file mode 100644
index 1ae7fffe18..0000000000
--- a/shfs/shfs-modules_0.35.oe
+++ /dev/null
@@ -1,29 +0,0 @@
-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 = "kernel/modules"
-PRIORITY = "optional"
-MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
-LICENSE = "GPL"
-PR = "r3"
-
-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=${STAGING_KERNEL_DIR} KERNEL=${KERNEL_VERSION} \
- CC="${KERNEL_CC}" LD="${KERNEL_LD}" LINKER="${KERNEL_LD}" LDFLAGS=-r
-}
-
-do_stage() {
- install -m 0644 shfs_fs.h shfs.h ${STAGING_INCDIR}/
-}
-
-do_install() {
- install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/fs/shfs/
- install -m 0644 shfs.o ${D}/lib/modules/${KERNEL_VERSION}/kernel/fs/shfs/shfs.o
-}
diff --git a/shfs/shfs-utils_0.35.bb b/shfs/shfs-utils_0.35.bb
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/shfs/shfs-utils_0.35.bb
diff --git a/shfs/shfs-utils_0.35.oe b/shfs/shfs-utils_0.35.oe
deleted file mode 100644
index f98cc2c383..0000000000
--- a/shfs/shfs-utils_0.35.oe
+++ /dev/null
@@ -1,25 +0,0 @@
-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 = "kernel/userland"
-PRIORITY = "optional"
-MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
-LICENSE = "GPL"
-RDEPENDS = "shfs-modules (${PV})"
-DEPENDS = "virtual/kernel"
-
-SRC_URI = "${SOURCEFORGE_MIRROR}/shfs/shfs-${PV}.tar.gz"
-S = "${WORKDIR}/shfs-${PV}/shfsmount"
-
-KERNEL_VERSION = "${@base_read_file('${STAGING_DIR}/${HOST_SYS}/kernel/kernel-abiversion')}"
-KV = "${@base_read_file('${STAGING_DIR}/${HOST_SYS}/kernel/kernel-abiversion')[:3]}"
-
-CFLAGS_append=' -DVERSION=\\"${KERNEL_VERSION}\\" -DSHFS_VERSION=\\"${PV}\\" -I../shfs/Linux-${KV}'
-
-do_compile() {
- oe_runmake LINKER="${CC}"
-}
-
-do_install() {
- install -d ${D}/${bindir}
- install -m 0755 shfsmount shfsumount ${D}/${bindir}
-}