diff options
Diffstat (limited to 'linux')
-rw-r--r-- | linux/montavista-sa_2.4.17-mvl21.oe | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/montavista-sa_2.4.17-mvl21.oe b/linux/montavista-sa_2.4.17-mvl21.oe index 24eb347d4e..21f344fc90 100644 --- a/linux/montavista-sa_2.4.17-mvl21.oe +++ b/linux/montavista-sa_2.4.17-mvl21.oe @@ -4,6 +4,7 @@ LICENSE = "GPL" KV = "${@oe.data.getVar('PV',d,True).split('-')[0]}" MVLV = "${@oe.data.getVar('PV',d,True).split('-')[1]}" PR = "r4" +DEPENDS = "cetools-native" FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/montavista-sa-${PV}" @@ -34,3 +35,11 @@ do_configure_prepend() { echo "CONFIG_CMDLINE=\"${CMDLINE}\"" >> ${S}/.config } +do_deploy() { + install -d ${DEPLOY_DIR}/images + bin2rom arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR}/images/${KERNEL_IMAGETYPE}-${DATETIME}.bin c0008000 c0008000 +} + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile |