diff options
author | Graeme Gregory <dp@xora.org.uk> | 2007-12-17 19:49:22 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2007-12-17 19:49:22 +0000 |
commit | 72d17d604abe14437971dbfb6926dcc90d4ad873 (patch) | |
tree | 5f08da8ff6ef469f90407202db83ef3f746c1b37 /packages | |
parent | fc3bc03296b0a27f8aa0df65ba4d5ccd848447e3 (diff) |
u-boot-mkimage-openmoko-native_oe.bb : solve the mkimage not found problem
in linux-openmoko by making this a native package that stages rather than
deploys its results.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/uboot/u-boot-mkimage-openmoko-native_oe.bb | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/packages/uboot/u-boot-mkimage-openmoko-native_oe.bb b/packages/uboot/u-boot-mkimage-openmoko-native_oe.bb index d0d47d84d8..e7812a5ed0 100644 --- a/packages/uboot/u-boot-mkimage-openmoko-native_oe.bb +++ b/packages/uboot/u-boot-mkimage-openmoko-native_oe.bb @@ -1,6 +1,9 @@ require uboot-openmoko_svn.bb +inherit native + PV = "1.2.0+git9912121f7ed804ea58fd62f3f230b5dcfc357d88svn2238" +PR = "r1" SRC_URI = "git://www.denx.de/git/u-boot.git/;protocol=git;tag=9912121f7ed804ea58fd62f3f230b5dcfc357d88 \ file://uboot-machtypes.patch;patch=1 \ @@ -72,12 +75,12 @@ do_compile () { oe_runmake tools } -do_deploy () { - install -m 0755 tools/mkimage ${STAGING_BINDIR_NATIVE}/uboot-mkimage - ln -sf ${STAGING_BINDIR_NATIVE}/uboot-mkimage ${STAGING_BINDIR_NATIVE}/mkimage +do_stage () { + install -m 0755 tools/mkimage ${STAGING_BINDIR}/uboot-mkimage + ln -sf ${STAGING_BINDIR}/uboot-mkimage ${STAGING_BINDIR}/mkimage } -do_deploy[dirs] = "${S}" -addtask deploy before do_package after do_install - +do_deploy () { +: +} |