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
sudo apt install policycoreutils | |
. build/envsetup.sh | |
lunch $romtag_$codename-$buildflavor | |
adb shell dmesg | audit2allow -p out/target/product/$codename/root/sepolicy |
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
@ECHO OFF | |
:: Copyright 2012 The Android Open Source Project | |
:: | |
:: Licensed under the Apache License, Version 2.0 (the "License"); | |
:: you may not use this file except in compliance with the License. | |
:: You may obtain a copy of the License at | |
:: | |
:: http://www.apache.org/licenses/LICENSE-2.0 | |
:: | |
:: Unless required by applicable law or agreed to in writing, software |
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/sh | |
# Copyright 2012 The Android Open Source Project | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
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
From c89c0e55f900284842ed52fb7ab51b71869d2dbc Mon Sep 17 00:00:00 2001 | |
From: Nolen Johnson <[email protected]> | |
Date: Fri, 2 Feb 2018 19:35:49 -0500 | |
Subject: [PATCH] nash: Add Moto Mod hotplug support | |
* This is hackier than I'd like, but should do the job. | |
Change-Id: I7db290013782cfd280ab0fc2fae8dd17a29de186 | |
--- | |
rootdir/Android.mk | 8 ++++++++ |
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
$ adb shell getprop | |
[agpsd.dev_path]: [/dev/ttyACM4] | |
[agpsd.socket_path]: [/dev/socket/at_pal] | |
[ap.interface]: [wlan0] | |
[cci.persist.backup]: [T2] | |
[dalvik.vm.dexopt-flags]: [m=y] | |
[dalvik.vm.heapgrowthlimit]: [128m] | |
[dalvik.vm.heapsize]: [448m] | |
[dalvik.vm.heapstartsize]: [12m] | |
[dalvik.vm.stack-trace-file]: [/data/anr/traces.txt] |
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; |
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
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
#!/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 |
OlderNewer