Skip to content

Instantly share code, notes, and snippets.

@janimo
janimo / check_ubuntu_touch_kernel_config
Last active August 29, 2015 14:01
Checks whether a given kernel config file has the options required to run Ubuntu Touch
#!/bin/bash
FILE=$1
[ -f "$FILE" ] || {
echo "Provide a config file as argument"
exit
}
CONFIGS_ON="
@janimo
janimo / gist:5412727
Created April 18, 2013 13:35
Script to unpack Huawei UPDATE.APP Android firmware blobs
#!/usr/bin/perl
######################################################################
#
# File : split_updata.pl
# Author(s) : McSpoon
# Description : Unpack a Huawei U8220 'UPDATA.APP' file.
# http://pulse.modaco.com
#
# Last Modified : Thu 24 December 2009
# By : McSpoon
@janimo
janimo / huawei_u9200.xml
Created April 18, 2013 13:21
Place this in .repo/local_manifests/huawei_u9200.xml then repo sync
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project name="janimo/android_kernel_huawei_u9200" path="kernel/huawei/u9200" remote="github" revision="master" />
<project name="janimo/android_device_huawei_u9200" path="device/huawei/u9200" remote="github" revision="master" />
</manifest>