//!
SETUP: PC running linux terminal
------ CodeSourcery installed
VM application source installed
File system installed
"EV3os.tar.bz2" in personal folder "~"
UNPACK: Unpack "EV3os" folder
-------
cd ~
tar -jxf EV3os.tar.bz2
SOURCE: Install u-boot source
-------
cd ~
cd am1808/DaVinci-PSP-SDK-03.20.00.13
mkdir src
cd src
mkdir u-boot
cd u-boot
cp ~/uboot-03.20.00.13_*.tar.bz2 ./
tar -jxf uboot-03.20.00.13_*.tar.bz2
rm uboot-03.20.00.13_*.tar.bz2
BUILD: u-boot
------
cd ~
cd projects/lms2012/open_first
./uboot_build.sh
SOURCE: Install kernel source
-------
cd ~
cd am1808/DaVinci-PSP-SDK-03.20.00.13/src
mkdir kernel
cd kernel
cp ~/linux-03.20.00.13_*.tgz ./
tar zxvf linux-03.20.00.13_*.tgz
rm linux-03.20.00.13_*.tgz
cd ~
cd am1808/DaVinci-PSP-SDK-03.20.00.13
cp ~/linux-devkit.tar.gz ./
tar zxvf linux-devkit.tar.gz
rm linux-devkit.tar.gz
BUILD: Kernel
------
cd ~
cd projects/lms2012/open_first
./build_kernel.sh
//!