I have some good news :smileyhappy:
After trying some kernels I found one, which works fine for rev1.2 of element14 SabreLite.
https://github.com/boundarydevices/linux-imx6
branch boundary-imx_3.12.0
Terminal:
mkdir boundary3_12_0
cd boundary3_12_0/
mkdir deploy
git clone https://github.com/boundarydevices/linux-imx6.git
cd linux-imx6
git checkout origin/boundary-imx_3.12.0
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabihf-
make imx_v6_v7_defconfig
make -j4
make zImage modules firmware
make modules_install INSTALL_MOD_PATH=~/boundary3_12_0/deploy
make firmware_install INSTALL_FW_PATH=~/boundary3_12_0/deploy/lib/firmware
cp -R arch/arm/boot/dts ../deploy/dts
cp arch/arm/boot/zImage ../deploy/
That works fine for me, also with ath9k_htc-Modul for one WLAN-USB-Stick.
But it works not for rev1.0 element14 SabreLite. After connecting something to USB port it comes that:
USB disconnect, device number 2
hub 1-0:1.0: cannot reset port 1 (err = -32)
hub 1-0:1.0: cannot reset port 1 (err = -32)
hub 1-0:1.0: cannot reset port 1 (err = -32)
hub 1-0:1.0: cannot reset port 1 (err = -32)
hub 1-0:1.0: cannot reset port 1 (err = -32)
hub 1-0:1.0: Cannot enable port 1. Maybe the USB cable is bad?
So I tried some other kernels and found one in the freescale-git
Terminal:
mkdir freescale
cd freescale/
mkdir deploy
git clone https://github.com/Freescale/linux-mainline.git
cd linux-mainline/
git checkout origin/patches-3.10
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabihf-
make imx_v6_v7_defconfig
make
make zImage modules firmware
make modules_install INSTALL_MOD_PATH=~/freescale/deploy
make firmware_install INSTALL_FW_PATH=~/freescale/deploy/lib/firmware
cp -R arch/arm/boot/dts ../deploy/dts
cp arch/arm/boot/zImage ../deploy/
That works one both boards, also with my wlan-stick.
Is it possible, that anyone makes a Tag to that branch? It is the only branch without tags...