Other Parts Discussed in Thread: 66AK2H06, 66AK2H14
How to build U-Boot from "Processor-SDK-Linux" for K2H Family devices (EVMK2H, 66AK2H12, 66AK2H06, 66AK2H14)?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
To build U-Boot for K2H EVM, the following pre-requisites should be met,
Steps:
sudo apt-get install diffstat texi2html texinfo subversion chrpath build-essential subversion ccache sed wget cvs coreutils unzip texinfo docbook-utils gawk help2man file g++ bison flex htmldoc chrpath libxext-dev xserver-xorg-dev doxygen socat u-boot-tools gitAlso refer to this link for environment setup: https://software-dl.ti.com/processor-sdk-linux/esd/docs/06_03_00_106/linux/Overview_Building_the_SDK.html#prerequisites-one-time-setup
wget https://developer.arm.com/-/media/Files/downloads/gnu-a/8.3-2019.03/binrel/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf.tar.xz tar -Jxvf gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf.tar.xz -C $HOME wget https://developer.arm.com/-/media/Files/downloads/gnu-a/8.3-2019.03/binrel/gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu.tar.xz tar -Jxvf gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu.tar.xz -C $HOME
export PATH=$HOME/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/bin:$PATH export PATH=$HOME/gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu/bin:$PATH
make CROSS_COMPILE=arm-linux-gnueabihf- distclean rm -rf ./k2hk_evm
make CROSS_COMPILE=arm-linux-gnueabihf- O=k2hk_evm k2hk_evm_defconfig make CROSS_COMPILE=arm-linux-gnueabihf- O=k2hk_evm
The following video demonstrates the steps:
Thanks & Regards,
Rajarajan U