diff options
author | Roy Li <rongqing.li@windriver.com> | 2014-07-22 14:44:52 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-24 15:31:49 +0200 |
commit | f06154f640cd6d8432aa2e6f3de97488ce4561da (patch) | |
tree | 2e5f42813ae03d6c90e22699046e76a6d0f7db5d /meta-oe/recipes-support/sdparm | |
parent | 4131e6dc552ca6aad043d27671ecaef9ad7292c4 (diff) | |
download | meta-openembedded-f06154f640cd6d8432aa2e6f3de97488ce4561da.tar.gz |
sdparm: add recipe file
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/sdparm')
-rw-r--r-- | meta-oe/recipes-support/sdparm/files/make-sysroot-work.patch | 27 | ||||
-rw-r--r-- | meta-oe/recipes-support/sdparm/sdparm_1.08.bb | 17 |
2 files changed, 44 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/sdparm/files/make-sysroot-work.patch b/meta-oe/recipes-support/sdparm/files/make-sysroot-work.patch new file mode 100644 index 000000000..5405ed802 --- /dev/null +++ b/meta-oe/recipes-support/sdparm/files/make-sysroot-work.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | [PATCH] make sysroot work | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Add = before the included dir to make sysroot work | ||
6 | |||
7 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
8 | --- | ||
9 | src/Makefile.am | 2 +- | ||
10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/src/Makefile.am b/src/Makefile.am | ||
13 | index c83788c..9f62115 100644 | ||
14 | --- a/src/Makefile.am | ||
15 | +++ b/src/Makefile.am | ||
16 | @@ -32,7 +32,7 @@ sglib_SOURCES = ../lib/sg_lib.c \ | ||
17 | ../lib/sg_pt_common.c | ||
18 | |||
19 | if HAVE_SGUTILS | ||
20 | -INCLUDES = -I/usr/include/scsi | ||
21 | +INCLUDES = -I=@includedir@/scsi | ||
22 | sdparm_LDADD = @GETOPT_O_FILES@ @os_libs@ @SGUTILS_LIBS@ | ||
23 | sdparm_DEPENDENCIES = @GETOPT_O_FILES@ | ||
24 | else | ||
25 | -- | ||
26 | 1.9.1 | ||
27 | |||
diff --git a/meta-oe/recipes-support/sdparm/sdparm_1.08.bb b/meta-oe/recipes-support/sdparm/sdparm_1.08.bb new file mode 100644 index 000000000..713e451fa --- /dev/null +++ b/meta-oe/recipes-support/sdparm/sdparm_1.08.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | SUMMARY = "fetch and change SCSI mode pages" | ||
2 | DESCRIPTION = "The sdparm utility accesses and optionally modifies \ | ||
3 | SCSI devices' mode page and inquiry data." | ||
4 | HOMEPAGE = "http://sg.danny.cz/sg/sdparm.html" | ||
5 | SECTION = "console/utils" | ||
6 | LICENSE = "BSD" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=ecab6c36b7ba82c675581dd0afde36f7 \ | ||
8 | file://lib/BSD_LICENSE;md5=1d52f4a66f1e0ed96776bf354ab7a2ed" | ||
9 | DEPENDS="sg3-utils" | ||
10 | SRC_URI = "http://sg.danny.cz/sg/p/${BPN}-${PV}.tgz \ | ||
11 | file://make-sysroot-work.patch \ | ||
12 | " | ||
13 | |||
14 | SRC_URI[md5sum] = "be5786f37499018ef44f409597c92d42" | ||
15 | SRC_URI[sha256sum] = "376b78a414b1a9c47f3f13dbeb963e7a3ec7be126f83927d6856b5f7ac425e57" | ||
16 | |||
17 | inherit autotools | ||