summaryrefslogtreecommitdiff
path: root/openembedded/packages/zaurus-updater/zaurus-updater.bb
diff options
context:
space:
mode:
Diffstat (limited to 'openembedded/packages/zaurus-updater/zaurus-updater.bb')
-rw-r--r--openembedded/packages/zaurus-updater/zaurus-updater.bb31
1 files changed, 0 insertions, 31 deletions
diff --git a/openembedded/packages/zaurus-updater/zaurus-updater.bb b/openembedded/packages/zaurus-updater/zaurus-updater.bb
deleted file mode 100644
index 26cf1e545..000000000
--- a/openembedded/packages/zaurus-updater/zaurus-updater.bb
+++ /dev/null
@@ -1,31 +0,0 @@
-DESCRIPTION = "Encrypted shellscript for the Zaurus ROM update"
-DEPENDS = "encdec-updater-native"
-LICENSE = "zaurus-updater"
-PR = "r5"
-
-PACKAGES = ""
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-COMPATIBLE_MACHINE = '(poodle|c7x0|spitz|akita|tosa)'
-
-SRC_URI = "file://updater.sh \
- file://gnu-tar.gz"
-S = "${WORKDIR}"
-
-do_compile() {
- encdec-updater -e updater.sh
-}
-
-do_deploy() {
- install -d ${DEPLOY_DIR_IMAGE}
- install -m 0755 updater.sh ${DEPLOY_DIR_IMAGE}/updater.sh.${MACHINE}
-
- case ${MACHINE} in
- spitz )
- install -m 0755 gnu-tar ${DEPLOY_DIR_IMAGE}/gnu-tar
- ;;
- *)
- ;;
- esac
-}
-
-addtask deploy before do_build after do_compile