diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2015-11-12 15:45:20 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-11-16 21:50:08 +0100 |
commit | f6a3cd4dcd1654a953c505ff779090717314871a (patch) | |
tree | 44047d7836a5ac310ec625ee596a6328cca80c9d /meta-networking | |
parent | 72c82837f614fa5d1d3677db71243fe74bf5a496 (diff) | |
download | meta-openembedded-f6a3cd4dcd1654a953c505ff779090717314871a.tar.gz |
netmap: set MACHINE_ARCH, because it depends on MACHINE_ARCH netmap-modules
* it's also using MACHINE specific variables like:
STAGING_KERNEL_DIR. STAGING_KERNEL_BUILDDIR
* drop suspicious:
do_fetch[depends] += "netmap-modules:do_fetch"
fetcher should use .lock files to prevent updating the same repository
in parallel
* see:
http://lists.openembedded.org/pipermail/openembedded-devel/2015-September/103271.html
* fixes:
ERROR: netmap different signature for task do_configure.sigdata between qemux86copy and qemux86
basehash changed from 748eae270193023d79f7d6a69aa1b8d2 to 9267873ef5fa4474d5f60fc79044ab64
Variable MACHINE value changed from 'qemux86copy' to 'qemux86'
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-kernel/netmap/netmap_git.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta-networking/recipes-kernel/netmap/netmap_git.bb b/meta-networking/recipes-kernel/netmap/netmap_git.bb index f15a626cb..a0285851a 100644 --- a/meta-networking/recipes-kernel/netmap/netmap_git.bb +++ b/meta-networking/recipes-kernel/netmap/netmap_git.bb | |||
@@ -1,6 +1,7 @@ | |||
1 | require netmap.inc | 1 | require netmap.inc |
2 | 2 | ||
3 | DEPENDS = "netmap-modules" | 3 | DEPENDS = "netmap-modules" |
4 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
4 | 5 | ||
5 | EXTRA_OECONF = "--kernel-dir=${STAGING_KERNEL_BUILDDIR} \ | 6 | EXTRA_OECONF = "--kernel-dir=${STAGING_KERNEL_BUILDDIR} \ |
6 | --kernel-sources=${STAGING_KERNEL_DIR} \ | 7 | --kernel-sources=${STAGING_KERNEL_DIR} \ |
@@ -13,8 +14,6 @@ EXTRA_OECONF = "--kernel-dir=${STAGING_KERNEL_BUILDDIR} \ | |||
13 | " | 14 | " |
14 | SRC_URI += "file://0001-testmmap-fix-compile-issue-with-gcc-5.x.patch" | 15 | SRC_URI += "file://0001-testmmap-fix-compile-issue-with-gcc-5.x.patch" |
15 | 16 | ||
16 | do_fetch[depends] += "netmap-modules:do_fetch" | ||
17 | |||
18 | do_configure () { | 17 | do_configure () { |
19 | cd ${S}/LINUX | 18 | cd ${S}/LINUX |
20 | ./configure ${EXTRA_OECONF} | 19 | ./configure ${EXTRA_OECONF} |