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 | |
for file in `ls -w 1 *.img` | |
do | |
stem=`basename $file .img` | |
echo $stem | |
fastboot flash $stem $file | |
done | |
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 | |
# Clone ROM trees for Android T | |
clone_android_t() { | |
rm -rf device/lge/${device} | |
rm -rf device/lge/sdm845-common | |
rm -rf kernel/lge/sdm845 | |
rm -rf vendor/lge | |
rm -rf hardware/lg | |
rm -rf device/lge |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<remote name="EmanuelCN" fetch="ssh://[email protected]/EmanuelCN/" revision="T" /> | |
<project name="EmanuelCN/android_kernel_lge_sdm845" path="kernel/lge/sdm845" remote="github" revision="T" /> | |
<project name="EmanuelCN/android_device_lge_judyln" path="device/lge/judyln" remote="github" revision="T" /> | |
<project name="EmanuelCN/android_device_lge_sdm845-common" path="device/lge/sdm845-common" remote="github" revision="T" /> | |
<project name="EmanuelCN/proprietary_vendor_lge" path="vendor/lge" remote="github" revision="T" /> | |
<project name="EmanuelCN/hardware_qcom-caf_sdm845_display" path="hardware/qcom-caf/sdm845/display" remote="github" revision="twelve" /> | |
<project name="LineageOS/android_kernel_lge_msm8998" path="kernel/lge/msm8998" remote="github" revision="lineage-20" /> |
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] | |
name = "obj2verts" | |
version = "0.1.0" | |
authors = ["Paul Sajna <[email protected]>"] | |
edition = "2018" | |
[dependencies] | |
wavefront_obj = "8.0.0" | |
byteorder = "1.3.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] | |
name = "png2gu" | |
version = "0.1.0" | |
authors = ["Paul Sajna <[email protected]>"] | |
edition = "2018" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
png = "0.16" |
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
[unstable] | |
build-std = ["std", "panic_abort"] | |
build-std-features = ["panic_immediate_abort"] | |
[build] | |
target= "riscv32gc-unknown-linux-gnu" | |
rustflags = [ | |
"-C", "link-arg=-march=rv32gc", | |
"-C", "link-arg=-mabi=ilp32d", | |
"-C", "linker-flavor=gcc" |
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
#![no_std] | |
#![no_main] | |
extern crate alloc; | |
use psp::sys; | |
use drogue_tls::blocking::*; | |
use drogue_network::addr::HostSocketAddr; | |
use drogue_network::dns::Dns; |
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
#![no_std] | |
#![no_main] | |
extern crate alloc; | |
use psp::sys; | |
use drogue_tls::blocking::*; | |
use drogue_network::addr::HostSocketAddr; | |
use drogue_network::dns::Dns; |
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
bool is_elf(int *param_1) | |
{ | |
if (*param_1 != 0x464c457f) { | |
return false; | |
} | |
return *(short *)(param_1 + 4) == 2; | |
} | |
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
0x00015a2c <sceFpuGetFCR31+0>: cfc1 v0,$31 | |
0x00015a30 <sceFpuGetFCR31+4>: jr ra | |
0x00015a34 <sceFpuGetFCR31+8>: nop | |
0x00015a38 <sceFpuSetFCR31+0>: cfc1 v0,$31 | |
0x00015a3c <sceFpuSetFCR31+4>: ctc1 zero,$31 | |
0x00015a40 <sceFpuSetFCR31+8>: nop | |
0x00015a44 <sceFpuSetFCR31+12>: ctc1 a0,$31 | |
0x00015a48 <sceFpuSetFCR31+16>: jr ra | |
0x00015a4c <sceFpuSetFCR31+20>: nop | |
0x00015a50 <sceFpuAbs+0>: jr ra |
NewerOlder