summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/scripts/mkuboot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ANDROID_3.4.5/scripts/mkuboot.sh')
-rwxr-xr-xANDROID_3.4.5/scripts/mkuboot.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/ANDROID_3.4.5/scripts/mkuboot.sh b/ANDROID_3.4.5/scripts/mkuboot.sh
deleted file mode 100755
index 446739c7..00000000
--- a/ANDROID_3.4.5/scripts/mkuboot.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-#
-# Build U-Boot image when `mkimage' tool is available.
-#
-
-MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage")
-
-if [ -z "${MKIMAGE}" ]; then
- MKIMAGE=$(type -path mkimage)
- if [ -z "${MKIMAGE}" ]; then
- # Doesn't exist
- echo '"mkimage" command not found - U-Boot images will not be built' >&2
- exit 1;
- fi
-fi
-
-# Call "mkimage" to create U-Boot image
-${MKIMAGE} "$@"