diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-17 17:04:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-17 17:05:45 +0000 |
commit | d9d5b8b499af3ae01a1e33d0d3969c54c2d4ab1b (patch) | |
tree | 0e48082674e55915e9c4e382b819ac932b32d4ff | |
parent | 1dfb9033e06fb88b33e2aa034e8d73792a6a03a8 (diff) | |
download | poky-d9d5b8b499af3ae01a1e33d0d3969c54c2d4ab1b.tar.gz |
depmodwrapper-cross: Update to use STAGING_KERNEL_BUILDDIR
(From OE-Core rev: eaea05c88661a88a89fa6b139f7e6b243155d492)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb b/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb index ec20bf8d30..7533809f27 100644 --- a/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb +++ b/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb | |||
@@ -19,21 +19,21 @@ if [ "\$1" != "-a" -o "\$2" != "-b" ]; then | |||
19 | echo "Usage: depmodwrapper -a -b rootfs KERNEL_VERSION" >&2 | 19 | echo "Usage: depmodwrapper -a -b rootfs KERNEL_VERSION" >&2 |
20 | exit 1 | 20 | exit 1 |
21 | fi | 21 | fi |
22 | if [ ! -r ${STAGING_KERNEL_DIR}/kernel-abiversion ]; then | 22 | if [ ! -r ${STAGING_KERNEL_BUILDDIR}/kernel-abiversion ]; then |
23 | echo "Unable to read: ${STAGING_KERNEL_DIR}/kernel-abiversion" >&2 | 23 | echo "Unable to read: ${STAGING_KERNEL_BUILDDIR}/kernel-abiversion" >&2 |
24 | else | 24 | else |
25 | kernelabi=\$(cat ${STAGING_KERNEL_DIR}/kernel-abiversion) | 25 | kernelabi=\$(cat ${STAGING_KERNEL_BUILDDIR}/kernel-abiversion) |
26 | if [ "\$kernelabi" != "\$4" ]; then | 26 | if [ "\$kernelabi" != "\$4" ]; then |
27 | echo "Error: Kernel version \$4 does not match kernel-abiversion (\$kernelabi)" >&2 | 27 | echo "Error: Kernel version \$4 does not match kernel-abiversion (\$kernelabi)" >&2 |
28 | exit 1 | 28 | exit 1 |
29 | fi | 29 | fi |
30 | fi | 30 | fi |
31 | 31 | ||
32 | if [ ! -r ${STAGING_KERNEL_DIR}/System.map-\$4 ]; then | 32 | if [ ! -r ${STAGING_KERNEL_BUILDDIR}/System.map-\$4 ]; then |
33 | echo "Unable to read: ${STAGING_KERNEL_DIR}/System.map-\$4" >&2 | 33 | echo "Unable to read: ${STAGING_KERNEL_BUILDDIR}/System.map-\$4" >&2 |
34 | exec env depmod "\$1" "\$2" "\$3" "\$4" | 34 | exec env depmod "\$1" "\$2" "\$3" "\$4" |
35 | else | 35 | else |
36 | exec env depmod "\$1" "\$2" "\$3" -F "${STAGING_KERNEL_DIR}/System.map-\$4" "\$4" | 36 | exec env depmod "\$1" "\$2" "\$3" -F "${STAGING_KERNEL_BUILDDIR}/System.map-\$4" "\$4" |
37 | fi | 37 | fi |
38 | EOF | 38 | EOF |
39 | chmod +x ${D}${bindir_crossscripts}/depmodwrapper | 39 | chmod +x ${D}${bindir_crossscripts}/depmodwrapper |