Skip to content

Instantly share code, notes, and snippets.

/dts-v1/;
/plugin/;
&uart4 {
status = "disabled";
};
@kevans91
kevans91 / boot.log
Created October 27, 2017 23:26
Failed boot (a83t)
// Stack trace (full boot log a little further down)
start_init: trying /sbin/init
init died (signal 0, exit 1)
panic: Going nowhere without my init!
cpuid = 2
time = 1509141363
KDB: stack backtrace:
db_trace_self() at db_trace_self
pc = 0xc055d9b0 lr = 0xc005eda8 (db_trace_self_wrapper+0x30)
sp = 0xdfff4c00 fp = 0xdfff4d18
2016-05-04 09:35:16,574 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch)
2016-05-04 09:35:16,585 - octoprint.plugin.core - INFO - Loading plugins from /home/octoprint/.octoprint/plugins, /usr/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages...
2016-05-04 09:35:16,646 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2016-05-04 09:35:16,646 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 5 mixin implementations, 2 hook handlers
2016-05-04 09:35:16,692 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /usr/home/octoprint/.octoprint/uploads...
2016-05-04 09:35:16,693 - octoprint.filemanager.storage - INFO - ... file metadata for /usr/home/octoprint/.octoprint/uploads initialized successfully.
2016-05-04 09:35:17,612 - octoprint.util.pip - INFO - Found pip at /usr/local/bin/pip, version is 8.0.2
2016-05-04 09:35:17,614 - octoprint.plugin.cor

Keybase proof

I hereby claim:

  • I am kevans91 on github.
  • I am kevans91 (https://keybase.io/kevans91) on keybase.
  • I have a public key whose fingerprint is 863C E634 0C46 3E21 AD52 2D33 C6E1 BE83 A541 6C02

To claim this, I am signing this object:

// Add some colours to the nick (Method based on IRSSIs nickcolor.pl)
nick_colour_hex = (function (nick) {
var nick_int = 0, rgb;
_.map(nick.split(''), function (i) { nick_int += i.charCodeAt(0); });
rgb = hsl2rgb(nick_int % 255, 70, 35);
rgb = rgb[2] | (rgb[1] << 8) | (rgb[0] << 16);
return '#' + rgb.toString(16);
})(msg.nick);