diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-10-26 16:42:07 +0100 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-10-26 16:42:07 +0100 |
commit | 26834267421183e1abef0dc880ac0a0ad5a9c6a1 (patch) | |
tree | b2cba45cd5732640298a43009234c6bf34382e48 /recipes/open-iscsi/open-iscsi-kernel_2.0-871.bb | |
parent | d7e9f09e299b037f6a749a77e9e3385dfb1768f3 (diff) |
open-iscsi: added recipe; still needs stress-testing
Diffstat (limited to 'recipes/open-iscsi/open-iscsi-kernel_2.0-871.bb')
-rw-r--r-- | recipes/open-iscsi/open-iscsi-kernel_2.0-871.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/open-iscsi/open-iscsi-kernel_2.0-871.bb b/recipes/open-iscsi/open-iscsi-kernel_2.0-871.bb new file mode 100644 index 0000000000..c58e142f4f --- /dev/null +++ b/recipes/open-iscsi/open-iscsi-kernel_2.0-871.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "Open-iSCSI project is a high performance, transport independent, multi-platform implementation of RFC3720." +HOMEPAGE = "http://www.open-iscsi.org/" +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "http://www.open-iscsi.org/bits/open-iscsi-${PV}.tar.gz" +S = "${WORKDIR}/open-iscsi-${PV}" +TARGET_CC_ARCH += "${LDFLAGS}" + +inherit module + +do_compile () { + oe_runmake 'KSRC=${STAGING_KERNEL_DIR}' LDFLAGS="" kernel +} + +do_install() { + oe_runmake 'KSRC=${STAGING_KERNEL_DIR}' LDFLAGS="" DESTDIR="${D}" install_kernel +} + |