We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50ac1c2 commit 2f42df8Copy full SHA for 2f42df8
extend_and_mount_images.sh
@@ -39,15 +39,15 @@ echo "Creating mount point for vendor"
39
mkdir -p $MountPointVendor
40
41
echo "Mounting product"
42
-mount -o rw $ImagesRoot/product.img $MountPointProduct
+mount $ImagesRoot/product.img $MountPointProduct
43
44
echo "Mounting system_ext"
45
-mount -o rw $ImagesRoot/system_ext.img $MountPointSystemExt
+mount $ImagesRoot/system_ext.img $MountPointSystemExt
46
47
echo "Mounting system"
48
-mount -o rw $ImagesRoot/system.img $MountPointSystem
+mount $ImagesRoot/system.img $MountPointSystem
49
50
echo "Mounting vendor"
51
-mount -o rw $ImagesRoot/vendor.img $MountPointVendor
+mount $ImagesRoot/vendor.img $MountPointVendor
52
53
-echo "!! Images mounted !!"
+echo "!! Images mounted !!"
0 commit comments