recovery: Switch to clang
And a few trival fixes to suppress warnings. Change-Id: I38734b5f4434643e85feab25f4807b46a45d8d65
This commit is contained in:
@@ -14,11 +14,10 @@
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_SRC_FILES := fuse_sideload.c
|
||||
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter
|
||||
LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
|
||||
|
||||
@@ -54,6 +53,7 @@ RECOVERY_API_VERSION := 3
|
||||
RECOVERY_FSTAB_VERSION := 2
|
||||
LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
|
||||
LOCAL_CFLAGS += -Wno-unused-parameter
|
||||
LOCAL_CLANG := true
|
||||
|
||||
LOCAL_C_INCLUDES += \
|
||||
system/vold \
|
||||
@@ -97,6 +97,7 @@ include $(BUILD_EXECUTABLE)
|
||||
|
||||
# All the APIs for testing
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_MODULE := libverifier
|
||||
LOCAL_MODULE_TAGS := tests
|
||||
LOCAL_SRC_FILES := \
|
||||
@@ -104,6 +105,7 @@ LOCAL_SRC_FILES := \
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_MODULE := verifier_test
|
||||
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
||||
LOCAL_MODULE_TAGS := tests
|
||||
|
||||
@@ -91,7 +91,7 @@ apply_from_adb(RecoveryUI* ui_, bool* wipe_cache, const char* install_file) {
|
||||
// FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the host
|
||||
// connects and starts serving a package. Poll for its
|
||||
// appearance. (Note that inotify doesn't work with FUSE.)
|
||||
int result;
|
||||
int result = INSTALL_ERROR;
|
||||
int status;
|
||||
bool waited = false;
|
||||
struct stat st;
|
||||
|
||||
@@ -13,8 +13,10 @@
|
||||
# limitations under the License.
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_SRC_FILES := applypatch.c bspatch.c freecache.c imgpatch.c utils.c
|
||||
LOCAL_MODULE := libapplypatch
|
||||
LOCAL_MODULE_TAGS := eng
|
||||
@@ -25,6 +27,7 @@ include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_SRC_FILES := main.c
|
||||
LOCAL_MODULE := applypatch
|
||||
LOCAL_C_INCLUDES += bootable/recovery
|
||||
@@ -35,6 +38,7 @@ include $(BUILD_EXECUTABLE)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_SRC_FILES := main.c
|
||||
LOCAL_MODULE := applypatch_static
|
||||
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
||||
@@ -47,6 +51,7 @@ include $(BUILD_EXECUTABLE)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_SRC_FILES := imgdiff.c utils.c bsdiff.c
|
||||
LOCAL_MODULE := imgdiff
|
||||
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
||||
|
||||
@@ -25,6 +25,7 @@ LOCAL_CFLAGS := $(edify_cflags) -g -O0
|
||||
LOCAL_MODULE := edify
|
||||
LOCAL_YACCFLAGS := -v
|
||||
LOCAL_CFLAGS += -Wno-unused-parameter
|
||||
LOCAL_CLANG := true
|
||||
|
||||
include $(BUILD_HOST_EXECUTABLE)
|
||||
|
||||
@@ -38,5 +39,6 @@ LOCAL_SRC_FILES := $(edify_src_files)
|
||||
LOCAL_CFLAGS := $(edify_cflags)
|
||||
LOCAL_CFLAGS += -Wno-unused-parameter
|
||||
LOCAL_MODULE := libedify
|
||||
LOCAL_CLANG := true
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
@@ -15,6 +15,7 @@ LOCAL_SRC_FILES := \
|
||||
fuse_adb_provider.cpp \
|
||||
services.cpp \
|
||||
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_MODULE := libminadbd
|
||||
LOCAL_CFLAGS := $(minadbd_cflags)
|
||||
LOCAL_CONLY_FLAGS := -Wimplicit-function-declaration
|
||||
|
||||
@@ -39,6 +39,7 @@ include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
# Used by OEMs for factory test images.
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_MODULE := libminui
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += libminui
|
||||
LOCAL_SHARED_LIBRARIES := libpng
|
||||
|
||||
@@ -16,6 +16,8 @@ LOCAL_STATIC_LIBRARIES := libselinux
|
||||
|
||||
LOCAL_MODULE := libminzip
|
||||
|
||||
LOCAL_CLANG := true
|
||||
|
||||
LOCAL_CFLAGS += -Wall
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
@@ -506,7 +506,6 @@ static bool processDeflatedEntry(const ZipArchive *pArchive,
|
||||
void *cookie)
|
||||
{
|
||||
long result = -1;
|
||||
unsigned char readBuf[32 * 1024];
|
||||
unsigned char procBuf[32 * 1024];
|
||||
z_stream zstream;
|
||||
int zerr;
|
||||
@@ -603,7 +602,6 @@ bool mzProcessZipEntryContents(const ZipArchive *pArchive,
|
||||
void *cookie)
|
||||
{
|
||||
bool ret = false;
|
||||
off_t oldOff;
|
||||
|
||||
switch (pEntry->compression) {
|
||||
case STORED:
|
||||
|
||||
@@ -6,10 +6,12 @@ LOCAL_SRC_FILES := \
|
||||
mounts.c
|
||||
|
||||
LOCAL_MODULE := libmtdutils
|
||||
LOCAL_CLANG := true
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_SRC_FILES := flash_image.c
|
||||
LOCAL_MODULE := flash_image
|
||||
LOCAL_MODULE_TAGS := eng
|
||||
|
||||
21
recovery.cpp
21
recovery.cpp
@@ -326,14 +326,18 @@ static void rotate_logs(int max) {
|
||||
ensure_path_mounted(LAST_KMSG_FILE);
|
||||
|
||||
for (int i = max-1; i >= 0; --i) {
|
||||
std::string old_log = android::base::StringPrintf((i == 0) ? "%s" : "%s.%d",
|
||||
LAST_LOG_FILE, i);
|
||||
std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
|
||||
if (i > 0) {
|
||||
old_log += "." + std::to_string(i);
|
||||
}
|
||||
std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
|
||||
// Ignore errors if old_log doesn't exist.
|
||||
rename(old_log.c_str(), new_log.c_str());
|
||||
|
||||
std::string old_kmsg = android::base::StringPrintf((i == 0) ? "%s" : "%s.%d",
|
||||
LAST_KMSG_FILE, i);
|
||||
std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
|
||||
if (i > 0) {
|
||||
old_kmsg += "." + std::to_string(i);
|
||||
}
|
||||
std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
|
||||
rename(old_kmsg.c_str(), new_kmsg.c_str());
|
||||
}
|
||||
@@ -711,7 +715,10 @@ static void choose_recovery_file(Device* device) {
|
||||
// Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
|
||||
for (int i = 0; i < KEEP_LOG_COUNT; i++) {
|
||||
char* log_file;
|
||||
if (asprintf(&log_file, (i == 0) ? "%s" : "%s.%d", LAST_LOG_FILE, i) == -1) {
|
||||
int ret;
|
||||
ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
|
||||
asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
|
||||
if (ret == -1) {
|
||||
// memory allocation failure - return early. Should never happen.
|
||||
return;
|
||||
}
|
||||
@@ -722,7 +729,9 @@ static void choose_recovery_file(Device* device) {
|
||||
}
|
||||
|
||||
char* kmsg_file;
|
||||
if (asprintf(&kmsg_file, (i == 0) ? "%s" : "%s.%d", LAST_KMSG_FILE, i) == -1) {
|
||||
ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
|
||||
asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
|
||||
if (ret == -1) {
|
||||
// memory allocation failure - return early. Should never happen.
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_CLANG := true
|
||||
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
||||
LOCAL_STATIC_LIBRARIES := libverifier
|
||||
LOCAL_SRC_FILES := asn1_decoder_test.cpp
|
||||
|
||||
@@ -16,6 +16,8 @@ LOCAL_PATH := $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_CLANG := true
|
||||
|
||||
LOCAL_SRC_FILES := uncrypt.cpp
|
||||
|
||||
LOCAL_MODULE := uncrypt
|
||||
|
||||
@@ -17,6 +17,8 @@ include $(CLEAR_VARS)
|
||||
# needed only for OTA packages.)
|
||||
LOCAL_MODULE_TAGS := eng
|
||||
|
||||
LOCAL_CLANG := true
|
||||
|
||||
LOCAL_SRC_FILES := $(updater_src_files)
|
||||
|
||||
ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
|
||||
|
||||
Reference in New Issue
Block a user