diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2017-05-23 15:01:42 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-06-05 11:01:45 +0200 |
commit | 332b5ce49b7be2a6883828e83fb9ab129eb67ba2 (patch) | |
tree | a3a75a7e7b2b0babf1dcf1e3187bc6e2412d01f3 | |
parent | 29e111093bc97806ea5e96d1526fa93b055fac18 (diff) | |
download | meta-openembedded-332b5ce49b7be2a6883828e83fb9ab129eb67ba2.tar.gz |
ssiapi: add new recipe
Intel Rapid Storage Technology enterprise with Linux OS* Standard
Storage Interface API Library. The library allows user to manage
storage devices including creating and managing Raid arrays on
systems with Intel chipset.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/ssiapi/ssiapi_1.0.1.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/ssiapi/ssiapi_1.0.1.bb b/meta-oe/recipes-support/ssiapi/ssiapi_1.0.1.bb new file mode 100644 index 0000000000..5b951eb266 --- /dev/null +++ b/meta-oe/recipes-support/ssiapi/ssiapi_1.0.1.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Intel RSTe with Linux OS SSI API Library" | ||
2 | |||
3 | DESCRIPTION = "Intel Rapid Storage Technology enterprise with Linux OS* Standard Storage Interface API Library. \ | ||
4 | The library allows user to manage storage devices including creating and managing Raid arrays on systems with Intel chipset." | ||
5 | |||
6 | HOMEPAGE = "http://irstessi.sourceforge.net/" | ||
7 | |||
8 | LICENSE = "BSD" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=0413ff365e0bd733c4869a6797551c6f" | ||
10 | |||
11 | DEPENDS += "sg3-utils" | ||
12 | |||
13 | SRC_URI = "http://sourceforge.net/projects/irstessi/files/${BPN}.${PV}.tgz" | ||
14 | SRC_URI[md5sum] = "02f16d7cbd30d28034093212906591f5" | ||
15 | SRC_URI[sha256sum] = "e10d283b0f211afb8ebd0bde87c097769613d30a052cdf164753e35e803264c7" | ||
16 | |||
17 | S ="${WORKDIR}/${BPN}.${PV}" | ||
18 | |||
19 | inherit autotools-brokensep | ||
20 | |||
21 | do_configure_prepend(){ | ||
22 | ./autogen.sh | ||
23 | } | ||
24 | |||
25 | RDEPENDS_${PN} += "mdadm" | ||