summaryrefslogtreecommitdiffstats
path: root/openembedded/packages/zaurus-updater/zaurus-updater.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2005-09-20 07:04:35 +0000
committerRichard Purdie <richard@openedhand.com>2005-09-20 07:04:35 +0000
commitb4a7122cacef647dbec3db5c9ebe1e504a7670df (patch)
tree006885a1f4e8032062632ee1a091e72c32dd2810 /openembedded/packages/zaurus-updater/zaurus-updater.bb
parentf9e1d16bfa73a2df5254c63ae1abb6a4bbe0a062 (diff)
downloadpoky-b4a7122cacef647dbec3db5c9ebe1e504a7670df.tar.gz
Updates against mainline OE
git-svn-id: https://svn.o-hand.com/repos/poky@26 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/zaurus-updater/zaurus-updater.bb')
-rw-r--r--openembedded/packages/zaurus-updater/zaurus-updater.bb11
1 files changed, 10 insertions, 1 deletions
diff --git a/openembedded/packages/zaurus-updater/zaurus-updater.bb b/openembedded/packages/zaurus-updater/zaurus-updater.bb
index c4db1055d5..7707e48eeb 100644
--- a/openembedded/packages/zaurus-updater/zaurus-updater.bb
+++ b/openembedded/packages/zaurus-updater/zaurus-updater.bb
@@ -3,7 +3,8 @@ DEPENDS = "encdec-updater-native"
3LICENSE = "zaurus-updater" 3LICENSE = "zaurus-updater"
4PR = "r2" 4PR = "r2"
5 5
6SRC_URI = "file://updater.sh" 6SRC_URI = "file://updater.sh \
7 file://gnu-tar.gz"
7S = "${WORKDIR}" 8S = "${WORKDIR}"
8 9
9do_compile() { 10do_compile() {
@@ -13,6 +14,14 @@ do_compile() {
13do_deploy() { 14do_deploy() {
14 install -d ${DEPLOY_DIR}/images/ 15 install -d ${DEPLOY_DIR}/images/
15 install -m 0755 updater.sh ${DEPLOY_DIR}/images/updater.sh.${MACHINE} 16 install -m 0755 updater.sh ${DEPLOY_DIR}/images/updater.sh.${MACHINE}
17
18 case ${MACHINE} in
19 spitz | borzoi )
20 install -m 0755 gnu-tar ${DEPLOY_DIR}/images/gnu-tar
21 ;;
22 *)
23 ;;
24 esac
16} 25}
17 26
18addtask deploy before do_build after do_compile 27addtask deploy before do_build after do_compile