- download kernel source: https://github.com/PixelExperience-Devices/kernel_xiaomi_sdm660/tree/thirteen
- download cross compile toolchain: https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads
- AArch32 GNU/Linux target with hard float (arm-none-linux-gnueabihf)
- arm-gnu-toolchain-12.2.rel1-x86_64-arm-none-linux-gnueabihf.tar.xz
- AArch64 GNU/Linux target (aarch64-none-linux-gnu)
- arm-gnu-toolchain-12.2.rel1-x86_64-aarch64-none-linux-gnu.tar.xz
- AArch32 GNU/Linux target with hard float (arm-none-linux-gnueabihf)
This file contains hidden or 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
| SiteSecurityServiceState.bin |
This file contains hidden or 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
| # update photos from Camera | |
| for file in $(find . -type f -name 'IMG*' -o -name 'Screenshot*' -o -name 'VID*'); do timestamp=$(echo "$file" | sed -E 's,.*/?(IMG|Screenshot|VID)_([0-9]{8})[-_]([0-9]{4})([0-9]{2}).*.(jpg|png|mp4),\2\3.\4,') ; echo touch -t "$timestamp" "$file" ; touch -t "$timestamp" "$file" ; done | |
| # update pictures from Weixin | |
| for file in $(find . -type f -name 'mmexport*'); do timestamp=$(date +'%Y%m%d%H%M.%S' -d @$(echo "$file" | sed -E 's,.*/?mmexport(1[0-9]{9})([0-9]{3})\.jpg,\1,')) ; echo touch -t $timestamp "$file" ; touch -t "$timestamp" "$file" ; done |
This file contains hidden or 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.github.silverzhaojr.xposed.sharevpnformultiusers; | |
| import android.util.Range; | |
| import androidx.annotation.Keep; | |
| import java.util.List; | |
| import java.util.Set; | |
| import de.robv.android.xposed.IXposedHookLoadPackage; |
This file contains hidden or 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
| # pm list users | |
| # Users: | |
| # UserInfo{0:机主:c13} running | |
| # UserInfo{11:工作资料:1030} running | |
| # ls /data/system/packages.list | |
| # com.android.vending 10082 | |
| # com.google.android.gms 10080 | |
| # com.google.android.gms.location.history 10096 | |
| # com.google.android.gms.policy_sidecar_aps 10078 |
This file contains hidden or 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
| # /containers/services/docker/rootfs/usr/bin/kubeadm config images list | |
| images=( | |
| kube-apiserver:v1.14.7 | |
| kube-controller-manager:v1.14.7 | |
| kube-scheduler:v1.14.7 | |
| kube-proxy:v1.14.7 | |
| pause:3.1 | |
| etcd:3.3.10 | |
| coredns:1.3.1 |