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
#!/system/bin/sh | |
echo -n "user_setup_complete " | |
settings get secure user_setup_complete | |
su -c "settings put secure user_setup_complete 1" | |
echo -n "user_setup_complete " | |
settings get secure user_setup_complete | |
echo -n "device_provsioned " | |
settings get global device_provsioned | |
su -c "settings put global device_provsioned 1" | |
echo -n "device_provsioned " |
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
// Check this image, with all the buttons etc. | |
// https://d2r1vs3d9006ap.cloudfront.net/s3_images/1143703/apc_mini_midi.jpg | |
// these are the available colors | |
var OFF = 0; | |
var GREEN = 1; | |
var GREEN_BLINK = 2; | |
var RED = 3; | |
var RED_BLINK = 4; | |
var YELLOW = 5; |
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
130|hero2lte:/ # find / -iname "*mtp*" 2>/dev/null | |
/system/bin/mtpd | |
/system/etc/init/mtpd.rc | |
/system/lib/libmtp.so | |
/system/lib/libmtp_samsung.so | |
/system/lib/libmtp_samsung_jni.so | |
/system/lib64/libmtp.so | |
/system/lib64/libmtp_samsung.so | |
/system/lib64/libmtp_samsung_jni.so | |
/system/priv-app/MtpApplication |
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
function keyevent () | |
{ | |
KEYSRC=/build/master/frameworks/base/core/java/android/view/KeyEvent.java | |
echo "count $# " | |
if [[ $# -eq 0 ]]; then | |
echo "No keycode specified - Printing List" | |
grep "int KEYCODE.*" $KEYSRC | cut -d' ' -f9 | sort | |
return 1; | |
fi |
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
f0VMRgEBAQAAAAAAAAAAAAIAKAABAAAAYIIAADQAAAAQ/AEAAAIABTQAIAAEACgAGgAZAAEAAAAA | |
AAAAAIAAAACAAACMcAEAjHABAAUAAAAAEAAAAQAAAIxwAQCMAAIAjAACAFgDAADwJwAABgAAAAAQ | |
AABR5XRkAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAEAAHDsZgEA7OYBAOzmAQCgCQAAoAkA | |
AAQAAAAEAAAAAAAAAAAAAAAAAAAABEYItQAgDPDT+SBGC/AY6TxILenwS4SwO0wCr3hEAPBD/zpL | |
fEQ6SAAlVPgDgHhEQUYA8CH/N0lCRjgdeUQA8En8eGgA8MT7KUZARgDwlPsxSjJLVPgCsMv4AADm | |
WDFGAPCg6S5I1ukMI3hEAPAE/zZrkCHzHTJGI/AHA63rAw0N8QgJSEYA8Cv7JktIRiZK41ihWBpo | |
ATIA8Mr62/gAMDFGASIBlShGAJMCIwDwQvseS+NYGGAeSHhEAPD1/h1IQ0YdSilGIFiiWAnwIuwb | |
SEtGG0opRiBYolgJ8BrsGUgpRhlKK0YmWKJYMEYJ8BDsMGgpRgnwcu0oRgfxCAe9Rr3o8IsoWwEA | |
8IIBAGT///86WwEASFsBAHD///90////KlsBAFz///9g////bP////BaAQB4////fP///4D///+E | |
////iP///4z///8PSAAhOLV4RADwEPtDHARGCtAMSQQieUQL8NboBUYgRgvw7ugELQnQB0sAIgog |
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
diff -ruN a/drivers/media/Kconfig b/drivers/media/Kconfig | |
--- a/drivers/media/Kconfig 2017-04-01 10:08:13.676731878 +0100 | |
+++ b/drivers/media/Kconfig 2017-04-01 07:44:10.155085393 +0100 | |
@@ -219,5 +219,6 @@ | |
source "drivers/media/spi/Kconfig" | |
source "drivers/media/tuners/Kconfig" | |
source "drivers/media/dvb-frontends/Kconfig" | |
+source "drivers/media/vtuner/Kconfig" | |
endif # MEDIA_SUPPORT |
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
https://cert.cx/appleios10/expl.html |
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="aosp" | |
fetch=".." | |
review="https://android-review.googlesource.com/" /> | |
<default revision="lollipop-release" | |
remote="aosp" | |
sync-j="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
#!/bin/sh | |
mkdir ~/kernel_update && cd ~/kernel_update | |
REMOTE_URL_BASE="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.17.1-utopic" | |
wget $REMOTE_URL_BASE/linux-headers-3.17.1-031701-generic_3.17.1-031701.201410150735_amd64.deb | |
wget $REMOTE_URL_BASE/linux-headers-3.17.1-031701_3.17.1-031701.201410150735_all.deb | |
wget $REMOTE_URL_BASE/linux-image-3.17.1-031701-generic_3.17.1-031701.201410150735_amd64.deb |
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
Total:2 - [0:sh]=shell [1:fv]=start | |
android@android:/android/build/android-cm-armv6/kernel/broadcom/rpi$ a lca | |
Total:10 - [0:fv]=logcat [1:fv]=-C [2:fv]=-b [3:fv]=system [4:fv]=-b [5:fv]=radio [6:fv]=-b [7:fv]=events [8:fv]=-b [9:fv]=main | |
--------- beginning of /dev/log/main | |
I/cm ( 65): ____ _ _ ____ _ _ ____ ____ ____ _ _ _ _ ____ ___ | |
I/cm ( 66): | \_/ |__| |\ | | | | __ |___ |\ | |\/| | | | \ | |
I/cm ( 67): |___ | | | | \| |__| |__] |___ | \| | | |__| |__/ | |
I/cm ( 70): Welcome to Android 4.4.4 / CyanogenMod-11-20140912-UNOFFICIAL-rpi | |
--------- beginning of /dev/log/system | |
I/auditd ( 75): Starting up |
NewerOlder