Merge pi-dr1-dev to aosp-master
Change-Id: Ida0bc98526f4fc7a1c20f5bbd3210b2f6156d459
This commit is contained in:
commit
5989a2f631
3 changed files with 7 additions and 5 deletions
|
@ -2,7 +2,8 @@ service vendor.audio-hal-2-0 /vendor/bin/hw/android.hardware.audio@2.0-service
|
|||
class hal
|
||||
user audioserver
|
||||
# media gid needed for /dev/fm (radio) and for /data/misc/media (tee)
|
||||
group audio camera drmrpc inet media mediadrm net_bt net_bt_admin net_bw_acct
|
||||
group audio camera drmrpc inet media mediadrm net_bt net_bt_admin net_bw_acct wakelock
|
||||
capabilities BLOCK_SUSPEND
|
||||
ioprio rt 4
|
||||
writepid /dev/cpuset/foreground/tasks /dev/stune/foreground/tasks
|
||||
# audioflinger restarts itself when it loses connection with the hal
|
||||
|
|
|
@ -4,3 +4,4 @@ service vendor.hwcomposer-2-2 /vendor/bin/hw/android.hardware.graphics.composer@
|
|||
group graphics drmrpc
|
||||
capabilities SYS_NICE
|
||||
onrestart restart surfaceflinger
|
||||
writepid /dev/cpuset/system-background/tasks
|
||||
|
|
|
@ -164,10 +164,10 @@ static void computeHmac(const Keymaster::KeymasterSet& keymasters,
|
|||
sharingCheck = curSharingCheck;
|
||||
firstKeymaster = false;
|
||||
}
|
||||
CHECK(curSharingCheck == sharingCheck)
|
||||
<< "HMAC computation failed for " << *keymaster //
|
||||
<< " Expected: " << sharingCheck //
|
||||
<< " got: " << curSharingCheck;
|
||||
if (curSharingCheck != sharingCheck)
|
||||
LOG(WARNING) << "HMAC computation failed for " << *keymaster //
|
||||
<< " Expected: " << sharingCheck //
|
||||
<< " got: " << curSharingCheck;
|
||||
});
|
||||
CHECK(rc.isOk()) << "Failed to communicate with " << *keymaster
|
||||
<< " error: " << rc.description();
|
||||
|
|
Loading…
Reference in a new issue