Entries by Kevin Godden

Building / Cross Compiling OpenCV for Linux ARM

This article outlines the steps necessary for building OpenCV for a Linux ARM target. OpenCV is an open-source, cross-platform computer vision and machine vision library.   I cross compiled OpenCV for a Xilinx Zinq ARM system yesterday by more-or-less following the steps outlined in the above document – I had to change a few things […]

Cross compiling libjpeg for Linux on ARM

I am taking this opportunity to document a cross compilation procedure for libjpeg targeting ARM Linux mostly so that I won’t have to go searching for it again in the future! First create a directory and cd to it:  mkdir libjpeg_build cd libjpeg_build Now get the source and un-tar it: wget http://www.ijg.org/files/jpegsrc.v9.tar.gz tar -xzvf jpegsrc.v9.tar.gz […]

Drupal 6 – Easy Social buttons not displaying in node

If you are using the easy social module in drupal 6 with a quirky (read rubbish) theme (or sometimes ubercart) then you may notice that the social media buttons don’t get displayed on some node types.   To get around this problem you may have to alter the node’s template to manually insert the Easy […]

Light Weight Logger in C++

I came across this interesting article in Dr. Dobbs that details the implementation of a light weight logging framework in C++ that uses policy classes: http://www.drdobbs.com/cpp/a-lightweight-logger-for-c/240147505?pgno=1 I reckon that it could be of special of interest for use with embedded systems.

Visual Studio 2010, TFS – The associated source control plug-in is not installed or could not be initialized.

I recently started getting the following error when opening a solution in Visual Studio 2010: “The associated source control plug-in is not installed or could not be initialized. Common causes for this error include server unavailability and/or incorrect workspace mappings” I had just installed Visual Studio 2012 and was worried this had caused the problem […]

Xilinx Zynq Linux – Mount NFS Volume, Connection Refused, failed to register lockdv1 RPC service (errno 111)

You may have been having problems mounting an NFS volume on a Xilinx Zynq kernel build, perhaps mount fails with a ‘Connection Refused’ error message. If you check the /var/log/messages cat /var/log/messages Then you may see some entries like this: Jan 10 21:22:34 zynq-zx3-starter user.warn kernel: svc: failed to register lockdv1 RPC service (errno 111). […]