klte: init: Update extension for O-mr1

Change-Id: I2fcd62b1dd6cbe292d89cf97085c9549bf69ba14
This commit is contained in:
Bruno Martins 2017-12-10 23:23:40 +00:00 committed by Kevin F. Haggerty
parent 87058b088c
commit 966c91e33d
1 changed files with 4 additions and 3 deletions

View File

@ -31,15 +31,16 @@
#include <stdlib.h>
#include <stdio.h>
#include <android-base/logging.h>
#include <android-base/properties.h>
#include "property_service.h"
#include "vendor_init.h"
#include "log.h"
#include "init_msm8974.h"
using android::base::GetProperty;
using android::init::property_set;
void set_rild_libpath(char const *variant)
{
@ -153,6 +154,6 @@ void init_target_properties()
}
std::string device = GetProperty("ro.product.device", "");
LOG(INFO) << "Found bootloader id " << bootloader << " setting build properties for "
<< device << " device" << std::endl;
LOG(ERROR) << "Found bootloader id " << bootloader << " setting build properties for "
<< device << " device" << std::endl;
}