This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--------- beginning of main | |
09-13 16:29:42.957 3111 3111 W auditd : type=2000 audit(0.0:1): initialized | |
09-13 16:29:45.664 3111 3111 I auditd : type=1403 audit(0.0:2): policy loaded auid=4294967295 ses=4294967295 | |
09-13 16:29:46.540 2523 2523 I init : type=1400 audit(0.0:3): avc: denied { write } for name="watermark_scale_factor" dev="proc" ino=2684 scontext=u:r:vendor_init:s0 tcontext=u:object_r:proc:s0 tclass=file permissive=1 | |
09-13 16:29:46.548 3112 3112 I lowmemorykiller: Using psi monitors for memory pressure detection | |
09-13 16:29:46.550 3112 3112 I lowmemorykiller: Process polling is supported | |
--------- beginning of kernel | |
09-13 16:29:46.580 0 0 I : [ 0.000000@0]d Booting Linux on physical CPU 0x0 | |
09-13 16:29:46.580 0 0 I : [ 0.000000@0]d Linux version 4.9.180-gc1350506bd03 (nobody@android-build) (Android (6877366 based on r383902b1) clang version 11.0.2 (https://android.googlesource.com/toolchain/llvm-project b397f81060ce6d701042b782172ed13bee898b79)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
## Build servers use python2, and python3 actually changes the results | |
### LineageOS Build Day Calculator | |
## Imports | |
import calendar | |
import random | |
## Variables | |
# We use 7 for W, 28 for M, but we currently use W | |
buckets=7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
## Build servers use python2, and python3 actually changes the results | |
### LineageOS Build Day Calculator | |
## Imports | |
import calendar | |
import random | |
## Variables | |
# We use 7 for W, 28 for M, but we currently use W | |
buckets=7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
URL=${1} | |
ZIP=$(basename "${URL}") | |
BUILD_ID=$(echo "${ZIP}" | awk -F- '{print $3}') | |
DEVICE=$(echo "${ZIP}" | awk -F- '{print $1}') | |
# Make the tmp directory | |
mkdir -p "${HOME}/tmp/${DEVICE}-images" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
URL=${1} | |
ZIP=$(basename "${URL}") | |
BUILD_ID=$(echo "${ZIP}" | awk -F- '{print $3}') | |
DEVICE=$(echo "${ZIP}" | awk -F- '{print $1}') | |
# Make the tmp directory | |
mkdir -p "${HOME}/tmp/${DEVICE}-images" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
## Build servers use python2, and python3 actually changes the results | |
### LineageOS Build Day Calculator | |
## Imports | |
import calendar | |
import random | |
## Variables | |
# We use 7 for W, 28 for M, but we currently use W | |
buckets=7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Download: | |
- https://kremowka.xyz/files/recovery_ramdisk_BKL-L04_nocheck.img | |
- http://update.hicloud.com:8180/TDS/data/files/p3/s15/G3536/g1699/v216624/f1/full/update.zip | |
- http://update.hicloud.com:8180/TDS/data/files/p3/s15/G3536/g1699/v216624/f1/full/BKL-L04_hw_usa/update_full_BKL-L04_hw_usa.zip | |
Run the following (this can either be from your current ROM, Stock, or TWRP) on your PC: | |
adb root | |
adb push recovery_ramdisk_BKL-L04_nocheck.img /sdcard/ | |
adb push update.zip /data/update/HWOTA/update.zip | |
adb push update_full_BKL-L04_hw_usa.zip /data/update/HWOTA/update_all_hw.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** Begin libtango_device[|2].java - split to BuildConfig.java, DummyFile.java, C0000R.java ***/ | |
/** --- Begin BuildConfig.java --- **/ | |
package com.google.atap.tango; | |
public final class BuildConfig { | |
public static final boolean DEBUG = true; | |
} | |
/** --- End BuildConfig.java --- **/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nvidia.graphics; | |
import android.graphics.RectF; | |
import android.graphics.SurfaceTexture; | |
public class NvBlit { | |
public static final int AbsColorSpace_AdobeRGB = 3; | |
public static final int AbsColorSpace_DeviceRGB = 1; | |
public static final int AbsColorSpace_Rec709 = 5; | |
public static final int AbsColorSpace_WideGamutRGB = 4; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nvidia.graphics; | |
import android.graphics.RectF; | |
import android.graphics.SurfaceTexture; | |
public class NvBlit { | |
public static final int AbsColorSpace_AdobeRGB = 3; | |
public static final int AbsColorSpace_DeviceRGB = 1; | |
public static final int AbsColorSpace_Rec709 = 5; | |
public static final int AbsColorSpace_WideGamutRGB = 4; |
NewerOlder