diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-11-29 20:06:43 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-11-29 20:06:43 +0000 |
commit | b5412bb66cce8ba7780cfe7233056474c4bd4ccc (patch) | |
tree | 4f9582ed98b50296d4a11fbb32d46d0f5e53185c /packages | |
parent | 3835885122d22b876e291eff5ccdf3671cbb6660 (diff) |
ixp4xx-csr: force rebuild, correct error handling in 2.1
- two different revisions were 'r1', this commit makes a single revision
'r2' because one 'r1' revision was broken.
- modpost error handling should be fixed now - the package should error
out if modpost reports unresolved symbols.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/ixp4xx/ixp4xx-csr_2.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/ixp4xx/ixp4xx-csr_2.1.bb b/packages/ixp4xx/ixp4xx-csr_2.1.bb index a00fbae3df..e5e081058b 100644 --- a/packages/ixp4xx/ixp4xx-csr_2.1.bb +++ b/packages/ixp4xx/ixp4xx-csr_2.1.bb @@ -34,7 +34,7 @@ SRC_URI += "file://le.patch;patch=1" DEPENDS = "ixp-osal" S = "${WORKDIR}/ixp400_xscale_sw" -PR = "r2" +PR = "r3" COMPATIBLE_HOST = "^arm.*-linux.*" @@ -96,7 +96,7 @@ do_stage () { ${CONFIG_MODULE_SRCVERSION_ALL:+-a} \ -i '${STAGING_KERNEL_DIR}/Module.symvers' \ -o '${STAGING_KERNEL_DIR}/ixp400-csr.symvers' \ - ${MAKE_TARGETS} >&2 | egrep . + ${MAKE_TARGETS} 2>&1 | egrep . then echo "MODPOST errors - see above" return 1 |