diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-17 16:15:38 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-17 19:45:42 +0200 |
commit | 11549e58097f9dda730bb142da768c897fbbc5ae (patch) | |
tree | 2d6c5aa32e5b32b84cc2d4202de45203abf04795 /meta-oe/recipes-connectivity | |
parent | e7463a7b8606fd0f514f9b477bd33ed40f4f9157 (diff) | |
download | meta-openembedded-11549e58097f9dda730bb142da768c897fbbc5ae.tar.gz |
uhd: fix build, update SRCREV
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-connectivity')
3 files changed, 31 insertions, 3 deletions
diff --git a/meta-oe/recipes-connectivity/uhd/uhd.inc b/meta-oe/recipes-connectivity/uhd/uhd.inc index d2ffb848f..e6a71bc26 100644 --- a/meta-oe/recipes-connectivity/uhd/uhd.inc +++ b/meta-oe/recipes-connectivity/uhd/uhd.inc | |||
@@ -1,6 +1,7 @@ | |||
1 | DESCRIPTION = "Universal Hardware Driver for Ettus Research products." | 1 | DESCRIPTION = "Universal Hardware Driver for Ettus Research products." |
2 | HOMEPAGE = "http://www.ettus.com" | 2 | HOMEPAGE = "http://www.ettus.com" |
3 | LICENSE = "GPLV3+" | 3 | LICENSE = "GPLV3+" |
4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=51b35d652c070d136bf20244494be2d3" | ||
4 | 5 | ||
5 | DEPENDS = "git-native python-cheetah-native boost libusb1 uhd-firmware" | 6 | DEPENDS = "git-native python-cheetah-native boost libusb1 uhd-firmware" |
6 | RDEPENDS_${PN} += "uhd-firmware" | 7 | RDEPENDS_${PN} += "uhd-firmware" |
diff --git a/meta-oe/recipes-connectivity/uhd/uhd/0001-HACK-work-around-Wl-as-needed-problems.patch b/meta-oe/recipes-connectivity/uhd/uhd/0001-HACK-work-around-Wl-as-needed-problems.patch new file mode 100644 index 000000000..2bce7c388 --- /dev/null +++ b/meta-oe/recipes-connectivity/uhd/uhd/0001-HACK-work-around-Wl-as-needed-problems.patch | |||
@@ -0,0 +1,26 @@ | |||
1 | From e5d7ae406cb7770c4fe4886bd162c18bf6ca2904 Mon Sep 17 00:00:00 2001 | ||
2 | From: Koen Kooi <koen@dominion.thruhere.net> | ||
3 | Date: Fri, 17 Jun 2011 19:44:04 +0200 | ||
4 | Subject: [PATCH] HACK: work around -Wl,as-needed problems | ||
5 | |||
6 | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> | ||
7 | --- | ||
8 | host/lib/types/CMakeLists.txt | 2 +- | ||
9 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
10 | |||
11 | diff --git a/host/lib/types/CMakeLists.txt b/host/lib/types/CMakeLists.txt | ||
12 | index 957dfd3..3147747 100644 | ||
13 | --- a/host/lib/types/CMakeLists.txt | ||
14 | +++ b/host/lib/types/CMakeLists.txt | ||
15 | @@ -59,7 +59,7 @@ CHECK_CXX_SOURCE_COMPILES(" | ||
16 | IF(HAVE_CLOCK_GETTIME) | ||
17 | MESSAGE(STATUS " High resolution timing supported through clock_gettime.") | ||
18 | SET(TIME_SPEC_DEFS HAVE_CLOCK_GETTIME) | ||
19 | - LIBUHD_APPEND_LIBS("-lrt") | ||
20 | + LIBUHD_APPEND_LIBS("-lrt -lpthread -lncurses") | ||
21 | ELSEIF(HAVE_MACH_ABSOLUTE_TIME) | ||
22 | MESSAGE(STATUS " High resolution timing supported through mach_absolute_time.") | ||
23 | SET(TIME_SPEC_DEFS HAVE_MACH_ABSOLUTE_TIME) | ||
24 | -- | ||
25 | 1.6.6.1 | ||
26 | |||
diff --git a/meta-oe/recipes-connectivity/uhd/uhd_git.bb b/meta-oe/recipes-connectivity/uhd/uhd_git.bb index d1c936d00..68a485e7e 100644 --- a/meta-oe/recipes-connectivity/uhd/uhd_git.bb +++ b/meta-oe/recipes-connectivity/uhd/uhd_git.bb | |||
@@ -1,8 +1,9 @@ | |||
1 | require uhd.inc | 1 | require uhd.inc |
2 | 2 | ||
3 | PR = "${INC_PR}.2" | 3 | PR = "${INC_PR}.4" |
4 | 4 | ||
5 | SRC_URI = "git://ettus.sourcerepo.com/ettus/uhd.git;protocol=git" | 5 | SRC_URI = "git://ettus.sourcerepo.com/ettus/uhd.git;protocol=git \ |
6 | file://0001-HACK-work-around-Wl-as-needed-problems.patch" | ||
6 | S = "${WORKDIR}/git/host" | 7 | S = "${WORKDIR}/git/host" |
7 | 8 | ||
8 | SRCREV = "cc639e876f326e958dace8438ae41b8cd9563780" | 9 | SRCREV = "0aff497dacc9cc4eba5d800cc46343da083cfdf1" |