diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2011-12-12 15:30:34 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-12-12 15:30:34 -0800 |
commit | dd7e404366a39e000e52fd5df659ac3aa66a13b5 (patch) | |
tree | 5fbcc5e2762d55d3a23be2da175860654b93cac3 | |
parent | b2347771972a2dcc154d5ebdc8dd0dc00973e18e (diff) | |
parent | e5b844555874012499308967d7efa2643af31a25 (diff) | |
download | device_samsung_maguro-dd7e404366a39e000e52fd5df659ac3aa66a13b5.zip device_samsung_maguro-dd7e404366a39e000e52fd5df659ac3aa66a13b5.tar.gz device_samsung_maguro-dd7e404366a39e000e52fd5df659ac3aa66a13b5.tar.bz2 |
am e5b84455: Generate downloads for icl53f
* commit 'e5b844555874012499308967d7efa2643af31a25':
Generate downloads for icl53f
-rwxr-xr-x | factory-images/flash-all.sh | 23 | ||||
-rwxr-xr-x | factory-images/generate-factory-images-package.sh | 39 |
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 |