summaryrefslogtreecommitdiffstats
path: root/reflash-bootloader/build-image.sh
diff options
context:
space:
mode:
Diffstat (limited to 'reflash-bootloader/build-image.sh')
-rwxr-xr-xreflash-bootloader/build-image.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/reflash-bootloader/build-image.sh b/reflash-bootloader/build-image.sh
deleted file mode 100755
index 7b0edf5..0000000
--- a/reflash-bootloader/build-image.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-DIR=/tmp/reflash_bootloader.$$
-RAMDISK=/tmp/ramdisk.$$.img
-
-mkdir ${DIR}
-cp ${OUT}/system/bin/tuna-reflash-bootloader ${DIR}/init
-cp ${ANDROID_BUILD_TOP}/vendor/samsung/tuna/bootloader.img ${DIR}/bootloader.img
-mkbootfs ${DIR} | minigzip > ${RAMDISK}
-mkbootimg --kernel ${OUT}/kernel --ramdisk ${RAMDISK} -o tuna-reflash-bootloader.img
-rm ${DIR}/init
-rm ${DIR}/bootloader.img
-rmdir ${DIR}
-rm ${RAMDISK}