hikey960: flash-all.sh: Remove unintentionally committed skipping of userdata
I often test flash-all.sh with the line flashing userdata commented out
so I don't loose the environment on my device. But unfortunately it
seems I embarassingly committed this debug trick to the tree.
So remove the comment so that flash-all.sh properly flashes userdata.
Apologies to all!
Reported-by: Leo Yan <leo.yan@linaro.org>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Change-Id: I1180292b0893b805fec5f200cc155605319894c7
diff --git a/installer/hikey960/flash-all.sh b/installer/hikey960/flash-all.sh
index 72112ff..70bb432 100755
--- a/installer/hikey960/flash-all.sh
+++ b/installer/hikey960/flash-all.sh
@@ -45,7 +45,7 @@
fastboot flash boot "${ANDROID_PRODUCT_OUT}"/boot.img
fastboot flash super "${ANDROID_PRODUCT_OUT}"/super.img
-# fastboot flash userdata "${ANDROID_PRODUCT_OUT}"/userdata.img
+ fastboot flash userdata "${ANDROID_PRODUCT_OUT}"/userdata.img
fastboot format cache
}