2016-03-09 15:23:25 -08:00
|
|
|
/*
|
2016-03-11 12:58:39 -08:00
|
|
|
* Copyright 2016 Google Inc. All Rights Reserved.
|
|
|
|
|
* Author: gkalsi@google.com (Gurjant Kalsi)
|
2016-03-09 15:23:25 -08:00
|
|
|
*
|
2019-07-05 17:22:23 -07:00
|
|
|
* Use of this source code is governed by a MIT-style
|
|
|
|
|
* license that can be found in the LICENSE file or at
|
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-03-09 15:23:25 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <app/moot/stubs.h>
|
2019-06-17 18:28:51 -07:00
|
|
|
#include <lk/compiler.h>
|
|
|
|
|
#include <lk/err.h>
|
2016-03-09 15:23:25 -08:00
|
|
|
|
|
|
|
|
// Fail by default. System must override this.
|
2019-06-19 20:54:28 -07:00
|
|
|
__WEAK status_t moot_mount_default_fs(char **mount_path, char **device_name) {
|
2016-03-09 15:23:25 -08:00
|
|
|
*device_name = NULL;
|
|
|
|
|
*mount_path = NULL;
|
|
|
|
|
return ERR_NOT_IMPLEMENTED;
|
|
|
|
|
}
|