From e5b844555874012499308967d7efa2643af31a25 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Queru Date: Fri, 9 Dec 2011 15:31:18 -0800 Subject: Generate downloads for icl53f Also clean up the script for more automation Change-Id: Ie5b1947a6324cc4e9a95ffbc95801dafc1ce3c2c --- factory-images/flash-all.sh | 23 ------------- factory-images/generate-factory-images-package.sh | 39 ++++++++++++++++++++--- 2 files changed, 34 insertions(+), 28 deletions(-) delete mode 100755 factory-images/flash-all.sh (limited to 'factory-images') 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 -- cgit v1.1