Skip to content

Install on IFC6410

sensiasoft edited this page Feb 4, 2015 · 5 revisions

The IFC6410 is a powerful development board carrying a Qualcomm Snapdragon chipset (600) and that can run Linux.

We have successfully run SensorHub on it to stream video feed from Axis camera. This page describes the procedure to get the board up and running with Linaro Ubuntu Linux and then install SensorHub on it.

You'll first have to flash your board with the latest Ubuntu Linux version for Snapdragon provided by Linaro. For this, go to: http://releases.linaro.org/latest/ubuntu/snapdragon

sudo fastboot flash boot boot-qcom-apq8064-ifc6410-qcom-snapdragon-20150127-71.img
sudo fastboot flash cache firmware-qcom-snapdragon-20150127-71.img
sudo fastboot flash -S 768M userdata linaro-utopic-gnome-qcom-snapdragon-20150127-71.img

Below are a few more steps to set up networking properly: If the wireless interface wlan0 doesn't show up (i.e. it is not listed when you run ifconfig), first try to start it with:

ifconfig wlan0 up

If it still doesn't show up in ifconfig, you may need to configure your system to load the appropriate kernel module on startup:

depmod
modprobe ath6kl_sdio

To get it to load automatically on startup, you may want to add ath6kl_sdio to your /etc/modules config file as well.

Clone this wiki locally