summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKalimochoAz <calimochoazucarado@gmail.com>2012-04-04 17:26:46 +0400
committerGerrit Code Review <gerrit@review.cyanogenmod.com>2012-04-04 17:26:46 +0400
commit4ccce40e421327713e5b02b05dcaf848a2ff36eb (patch)
tree065018e1a6065ce4c422989225a25b0c029e744e
parenteab4ea22387bac69322fba57d806cc372ccb2069 (diff)
parent4a1708a33897fbb22dabd4de54837fab68ec59a7 (diff)
downloaddevice_samsung_maguro-4ccce40e421327713e5b02b05dcaf848a2ff36eb.zip
device_samsung_maguro-4ccce40e421327713e5b02b05dcaf848a2ff36eb.tar.gz
device_samsung_maguro-4ccce40e421327713e5b02b05dcaf848a2ff36eb.tar.bz2
Merge "Generate downloads for icl53f" into ics
-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