Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2368)

Unified Diff: build_gpt.sh

Issue 6546045: Remove /mnt/partner_partition (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git@master
Patch Set: rebase Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build_image » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build_gpt.sh
diff --git a/build_gpt.sh b/build_gpt.sh
index 2dedbded828b932c91d582d1e4fdea7e39f9847c..4be100c0f126d14e06dee9d1015783d1912f0c07 100755
--- a/build_gpt.sh
+++ b/build_gpt.sh
@@ -117,12 +117,6 @@ if [ ! -s ${STATEFUL_IMG} ]; then
exit 1
fi
-OEM_IMG="${IMAGEDIR}/partner_partition.image"
-if [[ ! -s ${OEM_IMG} ]]; then
- error "Can't find ${OEM_IMG}"
- exit 1
-fi
-
ESP_IMG="${IMAGEDIR}/esp.image"
if [ ! -s ${ESP_IMG} ]; then
error "Can't find ${ESP_IMG}"
@@ -155,9 +149,6 @@ echo "Copying stateful partition..."
$sudo dd if=${STATEFUL_IMG} of=${OUTDEV} conv=notrunc bs=512 \
seek=${START_STATEFUL}
-echo "Copying OEM partition..."
-$sudo dd if=${OEM_IMG} of=${OUTDEV} conv=notrunc bs=512 seek=${START_OEM}
-
echo "Copying kernel..."
$sudo dd if=${KERNEL_IMG} of=${OUTDEV} conv=notrunc bs=512 seek=${START_KERN_A}
« no previous file with comments | « no previous file | build_image » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698