1 /*
2  * Copyright 2016 Google Inc. All Rights Reserved.
3  * Author: gkalsi@google.com (Gurjant Kalsi)
4  *
5  * Use of this source code is governed by a MIT-style
6  * license that can be found in the LICENSE file or at
7  * https://opensource.org/licenses/MIT
8  */
9 
10 #include <app/moot/stubs.h>
11 #include <lk/compiler.h>
12 #include <lk/err.h>
13 
14 // Fail by default. System must override this.
moot_mount_default_fs(char ** mount_path,char ** device_name)15 __WEAK status_t moot_mount_default_fs(char **mount_path, char **device_name) {
16     *device_name = NULL;
17     *mount_path = NULL;
18     return ERR_NOT_IMPLEMENTED;
19 }
20