summaryrefslogtreecommitdiffstats
path: root/otautil
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-05-04 07:41:23 +0200
committerTao Bao <tbao@google.com>2018-05-04 08:17:29 +0200
commit17054c051a846743ecbfacec5986fe8b35152c9d (patch)
tree093bdd474d8f333ed4458662ce20e79ce48d57c6 /otautil
parentotautil: Only build the needed files for host build. (diff)
downloadandroid_bootable_recovery-17054c051a846743ecbfacec5986fe8b35152c9d.tar
android_bootable_recovery-17054c051a846743ecbfacec5986fe8b35152c9d.tar.gz
android_bootable_recovery-17054c051a846743ecbfacec5986fe8b35152c9d.tar.bz2
android_bootable_recovery-17054c051a846743ecbfacec5986fe8b35152c9d.tar.lz
android_bootable_recovery-17054c051a846743ecbfacec5986fe8b35152c9d.tar.xz
android_bootable_recovery-17054c051a846743ecbfacec5986fe8b35152c9d.tar.zst
android_bootable_recovery-17054c051a846743ecbfacec5986fe8b35152c9d.zip
Diffstat (limited to 'otautil')
-rw-r--r--otautil/Android.bp6
-rw-r--r--otautil/dirutil.cpp (renamed from otautil/DirUtil.cpp)2
-rw-r--r--otautil/include/otautil/dirutil.h (renamed from otautil/include/otautil/DirUtil.h)0
-rw-r--r--otautil/include/otautil/sysutil.h (renamed from otautil/include/otautil/SysUtil.h)0
-rw-r--r--otautil/include/otautil/thermalutil.h (renamed from otautil/include/otautil/ThermalUtil.h)0
-rw-r--r--otautil/sysutil.cpp (renamed from otautil/SysUtil.cpp)2
-rw-r--r--otautil/thermalutil.cpp (renamed from otautil/ThermalUtil.cpp)2
7 files changed, 6 insertions, 6 deletions
diff --git a/otautil/Android.bp b/otautil/Android.bp
index 572d8df86..0be019c06 100644
--- a/otautil/Android.bp
+++ b/otautil/Android.bp
@@ -40,10 +40,10 @@ cc_library_static {
target: {
android: {
srcs: [
- "DirUtil.cpp",
- "SysUtil.cpp",
- "ThermalUtil.cpp",
+ "dirutil.cpp",
"mounts.cpp",
+ "sysutil.cpp",
+ "thermalutil.cpp",
],
static_libs: [
diff --git a/otautil/DirUtil.cpp b/otautil/dirutil.cpp
index 61c832813..ae1cd5c28 100644
--- a/otautil/DirUtil.cpp
+++ b/otautil/dirutil.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#include "otautil/DirUtil.h"
+#include "otautil/dirutil.h"
#include <dirent.h>
#include <errno.h>
diff --git a/otautil/include/otautil/DirUtil.h b/otautil/include/otautil/dirutil.h
index 85d6c16d1..85d6c16d1 100644
--- a/otautil/include/otautil/DirUtil.h
+++ b/otautil/include/otautil/dirutil.h
diff --git a/otautil/include/otautil/SysUtil.h b/otautil/include/otautil/sysutil.h
index 52f6d20a7..52f6d20a7 100644
--- a/otautil/include/otautil/SysUtil.h
+++ b/otautil/include/otautil/sysutil.h
diff --git a/otautil/include/otautil/ThermalUtil.h b/otautil/include/otautil/thermalutil.h
index 43ab55940..43ab55940 100644
--- a/otautil/include/otautil/ThermalUtil.h
+++ b/otautil/include/otautil/thermalutil.h
diff --git a/otautil/SysUtil.cpp b/otautil/sysutil.cpp
index 48336ad07..e6385c4e9 100644
--- a/otautil/SysUtil.cpp
+++ b/otautil/sysutil.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#include "otautil/SysUtil.h"
+#include "otautil/sysutil.h"
#include <errno.h> // TEMP_FAILURE_RETRY
#include <fcntl.h>
diff --git a/otautil/ThermalUtil.cpp b/otautil/thermalutil.cpp
index 5d9bd45c0..4660e057e 100644
--- a/otautil/ThermalUtil.cpp
+++ b/otautil/thermalutil.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#include "otautil/ThermalUtil.h"
+#include "otautil/thermalutil.h"
#include <dirent.h>
#include <stdio.h>