summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/uboot/u-boot.inc
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2011-03-01 12:32:55 -0500
committerSaul Wold <sgw@linux.intel.com>2011-03-01 09:59:55 -0800
commit0f44acfd04ecc9709d5d47e7484f2481b3c64cd8 (patch)
tree1f67b3e6aca05e6b12a2443ff4062fd688de3fa4 /meta/recipes-bsp/uboot/u-boot.inc
parentcad40f4fa980672fa7cae9e8db1274bcee367acf (diff)
downloadpoky-0f44acfd04ecc9709d5d47e7484f2481b3c64cd8.tar.gz
u-boot: remove do_install from u-boot.inc
Fixes [BUGID #777] The do_install rule in u-boot.inc was installing a host tool into the target ${bindir}, which is subsequently stripped with target strip during packaging, and the obvious error ensues. The native u-boot recipe has its own install rule, and the machine specific u-boot doesn't require mkimage or anything else in the do_install function. So we remove it completely until it is needed again. [sgw: PR bump] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-bsp/uboot/u-boot.inc')
-rw-r--r--meta/recipes-bsp/uboot/u-boot.inc5
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/recipes-bsp/uboot/u-boot.inc b/meta/recipes-bsp/uboot/u-boot.inc
index 1457c042e8..d1cebeedfb 100644
--- a/meta/recipes-bsp/uboot/u-boot.inc
+++ b/meta/recipes-bsp/uboot/u-boot.inc
@@ -31,8 +31,3 @@ do_deploy () {
31 ln -sf ${UBOOT_IMAGE} ${UBOOT_SYMLINK} 31 ln -sf ${UBOOT_IMAGE} ${UBOOT_SYMLINK}
32} 32}
33addtask deploy before do_build after do_compile 33addtask deploy before do_build after do_compile
34
35do_install() {
36 install -d ${D}${bindir}
37 install -m 755 tools/mkimage ${D}${bindir}/
38}