diff options
author | Phil Blundell <philb@gnu.org> | 2004-09-05 13:31:32 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-09-05 13:31:32 +0000 |
commit | 983e0a879c8538f294fc027cbeb4deb39135daa9 (patch) | |
tree | 14a9848fdea1dab4e333e10b4fdaf5588b5a5257 /linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe | |
parent | 6e0baf72bf1e9b1d561c5e560d9f531dc67fa484 (diff) |
deploy kernel into images directory
BKrev: 413b1534b4RVi4l2tomJq_JwZF_DNw
Diffstat (limited to 'linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe')
-rw-r--r-- | linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe b/linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe index 8b41e3576e..1834894576 100644 --- a/linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe +++ b/linux/openzaurus-sa_2.4.18-rmk7-pxa3-embedix20030509.oe @@ -74,3 +74,13 @@ do_configure_prepend() { fi echo "CONFIG_CMDLINE=\"$CMDLINE mem=${mem}M\"" >> ${S}/.config } + +do_deploy() { + install -d ${DEPLOY_DIR}/images + install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR}/images/${KERNEL_IMAGETYPE}-${DATETIME} +} + +do_deploy[dirs] = "${S}" + +addtask deploy before do_build after do_compile + |