Here are my steps.
At first, I took a look to RK30xxLoader(L)_V1.18.bin. This file appears in update.img for my device. So, I unpacked update.img using rk29Kitchen.
strings on that file returns nothing interesting, so I assumed the file is crypted
| /** | |
| * Author: Michael Weibel <[email protected]> | |
| * License: MIT | |
| */ | |
| var passport = require('passport') | |
| , StrategyMock = require('./strategy-mock'); | |
| module.exports = function(app, options) { | |
| // create your verify function on your own -- should do similar things as |
| #!/bin/bash | |
| # Setup | |
| # | |
| # - Create a new Jenkins Job | |
| # - Mark "None" for Source Control Management | |
| # - Select the "Build Periodically" build trigger | |
| # - configure to run as frequently as you like | |
| # - Add a new "Execute Shell" build step | |
| # - Paste the contents of this file as the command |
This is a little trick I use to spin up the packages instalation on Debian/Ubuntu boxes in Vagrant.
I add a simple function that checks if a directory named something similar to ~/.vagrant.d/cache/apt/opscode-ubuntu-12.04/partial (it may have another path in Windows or MacOS) and create the directory if it doesn't already exist.
def local_cache(basebox_name)
cache_dir = Vagrant::Environment.new.home_path.join('cache', 'apt', basebox_name)
partial_dir = cache_dir.join('partial')
partial_dir.mkdir unless partial_dir.exist?
cache_dir| // Require.js allows us to configure shortcut alias | |
| require.config({ | |
| // The shim config allows us to configure dependencies for | |
| // scripts that do not call define() to register a module | |
| shim: { | |
| 'socketio': { | |
| exports: 'io' | |
| }, | |
| 'underscore': { | |
| exports: '_' |
| This playbook has been removed as it is now very outdated. |
| Pyrit 0.4.0 (C) 2008-2011 Lukas Lueg http://pyrit.googlecode.com | |
| This code is distributed under the GNU General Public License v3+ | |
| Running benchmark (2747.2 PMKs/s)... \ | |
| Computed 2747.16 PMKs/s total. | |
| #1: 'OpenCL-Device 'GeForce GT 330M'': 1630.3 PMKs/s (RTT 2.6) | |
| #2: 'CPU-Core (SSE2)': 458.1 PMKs/s (RTT 3.1) | |
| #3: 'CPU-Core (SSE2)': 477.6 PMKs/s (RTT 3.1) | |
| #4: 'CPU-Core (SSE2)': 471.0 PMKs/s (RTT 3.1) |
| // includes bindings for fetching/fetched | |
| var PaginatedCollection = Backbone.Collection.extend({ | |
| initialize: function() { | |
| _.bindAll(this, 'parse', 'url', 'pageInfo', 'nextPage', 'previousPage'); | |
| typeof(options) != 'undefined' || (options = {}); | |
| this.page = 1; | |
| typeof(this.perPage) != 'undefined' || (this.perPage = 10); | |
| }, | |
| fetch: function(options) { |