Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b07191d authored by Tom Cherry's avatar Tom Cherry Committed by android-build-merger
Browse files

Merge "init: add TODO for mount operations." am: 94e93055

am: e053c09f

Change-Id: I42ba2a1e5c7795da72c101bb3259388a30f5aea1
parents 83255e33 e053c09f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1032,6 +1032,10 @@ const BuiltinFunctionMap::Map& BuiltinFunctionMap::map() const {
        {"load_system_props",       {0,     0,    {false,  do_load_system_props}}},
        {"loglevel",                {1,     1,    {false,  do_loglevel}}},
        {"mkdir",                   {1,     4,    {true,   do_mkdir}}},
        // TODO: Do mount operations in vendor_init.
        // mount_all is currently too complex to run in vendor_init as it queues action triggers,
        // imports rc scripts, etc.  It should be simplified and run in vendor_init context.
        // mount and umount are run in the same context as mount_all for symmetry.
        {"mount_all",               {1,     kMax, {false,  do_mount_all}}},
        {"mount",                   {3,     kMax, {false,  do_mount}}},
        {"umount",                  {1,     1,    {false,  do_umount}}},