Kernel Preparation
Install dependencies
sudo apt-get install u-boot-tools g++-arm-linux-gnueabi
Download the kernel
cd duovero mkdir kernel-dev cd kernel-dev git clone git://github.com/gumstix/linux.git linux -b omap-3.5
Download the defconfig file for overo from here: https://github.com/gumstix/meta-gumstix/blob/dylan/recipes-kernel/linux/linux-gumstix-3.5/overo/defconfig
wget https://github.com/gumstix/meta-gumstix/blob/dylan/recipes-kernel/linux/linux-gumstix-3.5/overo/defconfig cp defconfig linux/.config make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- menuconfig
Build the kernel and modules
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- uImage -j2 OR make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- LOADADDR=0x82000000 uImage make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- modules -j2
The resulting uImage should be built in arch/arm/boot. Modules will be installed by the script that makes the SD card.
MLO and u-boot can be found here:
https://www.gumstix.com/software/software-downloads/
uboot
cd ~/overo mkdir uboot-dev cd uboot-dev git clone git://github.com/gumstix/u-boot.git git checkout omap-v2012.10 make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- omap3_overo_config make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- all
kernel
disable touchscreen input in driver->input device support
disable all of driver->graphics support
added device drivers -> network device support -> wireless lan -> marvel liberta 8686 SPI
isc-dhcp-client
firmware-libertas from wheezy backports