Merge "Add /mnt/product rw mount point for product partitions." am: 35f2704226

am: 7c4bb66d83

Change-Id: Icab47e0d7e5236ec7d75a38c54b92fb567eb26d8
This commit is contained in:
Bowgo Tsai 2018-07-02 19:07:25 -07:00 committed by android-build-merger
commit 72f539f061

View file

@ -647,6 +647,9 @@ int main(int argc, char** argv) {
// /mnt/vendor is used to mount vendor-specific partitions that can not be
// part of the vendor partition, e.g. because they are mounted read-write.
CHECKCALL(mkdir("/mnt/vendor", 0755));
// /mnt/product is used to mount product-specific partitions that can not be
// part of the product partition, e.g. because they are mounted read-write.
CHECKCALL(mkdir("/mnt/product", 0755));
#undef CHECKCALL