Merge changes I6c35d2e4,If16c3e19
* changes: Move mounts.cpp from libotautil into libupdater. otautil: roots.cpp no longer needs 'mounts.h'.
This commit is contained in:
commit
c3f32b95e5
8 changed files with 4 additions and 6 deletions
|
@ -44,7 +44,6 @@ cc_library_static {
|
|||
android: {
|
||||
srcs: [
|
||||
"logging.cpp",
|
||||
"mounts.cpp",
|
||||
"parse_install_logs.cpp",
|
||||
"roots.cpp",
|
||||
"thermalutil.cpp",
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
#include <fs_mgr/roots.h>
|
||||
#include <fs_mgr_dm_linear.h>
|
||||
|
||||
#include "otautil/mounts.h"
|
||||
#include "otautil/sysutil.h"
|
||||
|
||||
using android::fs_mgr::Fstab;
|
||||
|
|
|
@ -81,6 +81,7 @@ cc_library_static {
|
|||
"blockimg.cpp",
|
||||
"commands.cpp",
|
||||
"install.cpp",
|
||||
"mounts.cpp",
|
||||
"updater.cpp",
|
||||
],
|
||||
|
||||
|
|
|
@ -60,7 +60,6 @@
|
|||
#include "edify/updater_runtime_interface.h"
|
||||
#include "otautil/dirutil.h"
|
||||
#include "otautil/error_code.h"
|
||||
#include "otautil/mounts.h"
|
||||
#include "otautil/print_sha1.h"
|
||||
#include "otautil/sysutil.h"
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "otautil/mounts.h"
|
||||
#include "mounts.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
|
@ -32,7 +32,7 @@
|
|||
#include <ext4_utils/wipe.h>
|
||||
#include <selinux/label.h>
|
||||
|
||||
#include "otautil/mounts.h"
|
||||
#include "mounts.h"
|
||||
#include "otautil/sysutil.h"
|
||||
|
||||
std::string SimulatorRuntime::GetProperty(const std::string_view key,
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <selinux/label.h>
|
||||
#include <tune2fs.h>
|
||||
|
||||
#include "otautil/mounts.h"
|
||||
#include "mounts.h"
|
||||
#include "otautil/sysutil.h"
|
||||
|
||||
std::string UpdaterRuntime::GetProperty(const std::string_view key,
|
||||
|
|
Loading…
Reference in a new issue