Enter the machine using adb shell
Run cat /proc/partitions
# Path Purpose Size
0 /dev/block/mmcblk0 7761920
1 /dev/block/mmcblk0p1 data 6085631
#!/usr/bin/env bash | |
if [ -f build-settings.sh ]; then | |
source build-settings.sh | |
else | |
echo "ERROR! Could not source build-settings.sh." | |
exit 1 | |
fi | |
SEED_DIR="/var/lib/snapd/seed" |
diff --git a/configure b/configure | |
index e85d6baf8f..0abad3f459 100755 | |
--- a/configure | |
+++ b/configure | |
@@ -5362,9 +5362,9 @@ if test "$mingw32" = "yes" ; then | |
fi | |
# We can only support ivshmem if we have eventfd | |
-if [ "$eventfd" = "yes" ]; then | |
+#if [ "$eventfd" = "yes" ]; then |
#!/bin/bash | |
ABS_PATH=`pwd` | |
cd $ABS_PATH/kernel-upstream | |
#make O=../kernel-out/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- defconfig | |
#make -j4 O=../kernel-out/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- | |
#mkdir ../kernel-out/out-modules/ | |
#make O=../kernel-out/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- INSTALL_MOD_PATH=../kernel-out/out-modules/ modules_install |
#!/bin/bash | |
while [ true ]; do | |
echo "Starting loop" | |
ubuntu-app-launch morph-browser | |
sleep 15 | |
echo "Killing morph" | |
kill -9 `pidof morph-browser` | |
echo "Killed morph" | |
sleep 2 |
#!/bin/bash -ex | |
# Build a new Centos8 install on EBS volume in a chroot | |
# Run from RHEL8 or CentOS8 instance - eg: ami-0c322300a1dd5dc79 in us-east-1 (RHEL 8 official image) | |
# Script expects a second EBS volume, I add them as /dev/sdf in the console | |
# When the script completes, turn the second EBS volume into your new AMI through the console. | |
# Adjust the section below to match the device names you're using. Defaults are for an m5.large | |
# m5 series requires the updated device names |
sudo ubports-qa install xenial_-_android9_-_iradio12 | |
sudo mount -o remount,rw / | |
sudo tee /etc/apt/preferences.d/ubports-xenial_-_android9_-_iradio12.pref <<EOF | |
Package: * | |
Pin: release o=UBports,a=xenial_-_android9_-_iradio12 | |
Pin-Priority: 2020 | |
EOF |
# This is a sample configuration file for Jolla ril driver | |
# | |
# This file is expected to be installed in /etc/ofono | |
# | |
# Configuration for each modem is defined in its own [ril_x] section, | |
# common settings are in the [Settings] section, all other sections | |
# are ignored. | |
# | |
# If any value from [ril_x] section (except "socket") is defined | |
# in the [Settings] section, it becomes the default for all modems. |
#!/vendor/bin/sh | |
# Decrypt the keys and write them to the kernel | |
LD_LIBRARY_PATH=/vendor/lib64:/system/lib64:/android/system/lib64/vndk-28 /vendor/bin/ramoops -D | |
# Pivot (and decrypt) | |
echo 1 > /sys/devices/virtual/ramoops/pstore/use_alt | |
# Trigger remount of pstore regardless of decryption state | |
# setprop vendor.ramoops.decrypted true |
//----------------------------------------------------------------------------- | |
// Filename: Program.cs | |
// | |
// Description: An abbreviated example program of how to use the SIPSorcery | |
// core library to place a SIP call. The example program depends on one audio | |
// input and one audio output being available. | |
// | |
// Author(s): | |
// Aaron Clauson ([email protected]) | |
// |