summaryrefslogtreecommitdiffstats
path: root/factory-images
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2011-12-09 15:31:18 -0800
committerJean-Baptiste Queru <jbq@google.com>2011-12-09 15:31:29 -0800
commite5b844555874012499308967d7efa2643af31a25 (patch)
tree5fbcc5e2762d55d3a23be2da175860654b93cac3 /factory-images
parent2bec9b91ddb1f16a8d015e3e0be72a6f9b9632f8 (diff)
downloaddevice_samsung_maguro-e5b844555874012499308967d7efa2643af31a25.zip
device_samsung_maguro-e5b844555874012499308967d7efa2643af31a25.tar.gz
device_samsung_maguro-e5b844555874012499308967d7efa2643af31a25.tar.bz2
Generate downloads for icl53f
Also clean up the script for more automation Change-Id: Ie5b1947a6324cc4e9a95ffbc95801dafc1ce3c2c
Diffstat (limited to 'factory-images')
-rwxr-xr-xfactory-images/flash-all.sh23
-rwxr-xr-xfactory-images/generate-factory-images-package.sh39
2 files changed, 34 insertions, 28 deletions
diff --git a/factory-images/flash-all.sh b/factory-images/flash-all.sh
deleted file mode 100755
index 3065aa6..0000000
--- a/factory-images/flash-all.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-# Copyright (C) 2011 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-fastboot flash bootloader bootloader-maguro-primekj10.img
-fastboot reboot-bootloader
-sleep 5
-fastboot flash radio radio-maguro-i9250xxkk1.img
-fastboot reboot-bootloader
-sleep 5
-fastboot -w update image-yakju-itl41f.zip
diff --git a/factory-images/generate-factory-images-package.sh b/factory-images/generate-factory-images-package.sh
index 2863d40..68a67d7 100755
--- a/factory-images/generate-factory-images-package.sh
+++ b/factory-images/generate-factory-images-package.sh
@@ -16,17 +16,46 @@
# 223971 = ITL41D
# 228551 = ITL41F
+# 235179 = ICL53F
-BUILD=228551
-VERSION=itl41f
+BUILD=235179
+VERSION=icl53f
+BOOTLOADER=primekk15
+RADIO=i9250xxkk6
rm -rf tmp
mkdir -p tmp/yakju-$VERSION
unzip -d tmp signed-yakju-target_files-$BUILD.zip RADIO/radio.img RADIO/bootloader.img
cp signed-yakju-img-$BUILD.zip tmp/yakju-$VERSION/image-yakju-$VERSION.zip
-cp tmp/RADIO/bootloader.img tmp/yakju-$VERSION/bootloader-maguro-primekj10.img
-cp tmp/RADIO/radio.img tmp/yakju-$VERSION/radio-maguro-i9250xxkk1.img
-cp flash-all.sh tmp/yakju-$VERSION
+cp tmp/RADIO/bootloader.img tmp/yakju-$VERSION/bootloader-maguro-$BOOTLOADER.img
+cp tmp/RADIO/radio.img tmp/yakju-$VERSION/radio-maguro-$RADIO.img
+#cp flash-all.sh tmp/yakju-$VERSION
+cat > tmp/yakju-$VERSION/flash-all.sh << EOF
+#!/bin/sh
+
+# Copyright (C) 2011 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+fastboot flash bootloader bootloader-maguro-$BOOTLOADER.img
+fastboot reboot-bootloader
+sleep 5
+fastboot flash radio radio-maguro-$RADIO.img
+fastboot reboot-bootloader
+sleep 5
+fastboot -w update image-yakju-$VERSION.zip
+EOF
+chmod a+x tmp/yakju-$VERSION/flash-all.sh
(cd tmp ; tar zcvf ../yakju-$VERSION-factory.tgz yakju-$VERSION)
mv yakju-$VERSION-factory.tgz yakju-$VERSION-factory-$(sha1sum < yakju-$VERSION-factory.tgz | cut -b -8).tgz
rm -rf tmp