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.
No experience with EZSDK. In build systems where the Linux kernel is NOT downloaded anew on every build, you can overwrite the default config in the kernel source with your customize .config. The next time you do a clean build, your customized default config is copied back into the .config. Assuming a ti8168_evm, here's a possible sequence of commands:
make menuconfig
cp .config arch/arm/configs/ti8168_evm_defconfig
cd ${EZSDK}
make linux_clean
make linux
make linux_install
Best to back up the file before overwriting it. Or as Anil suggested, you could manually execute the same make commands lines in the Linux kernel directory that the EZSDK make automatically executes.
Hi Rob,
make menuconfig
cp .config arch/arm/configs/ti8168_evm_defconfig
Don't do this way, this will overwrite the defconfig with your config file, later you won't get the file back unless you reinstall the SDK. Copy the defconfig file before doing the above step.
Better way is build the kernel from kernel source directory (${EZSDK}/board-support/linux-2.6.37-xxx$)
http://e2e.ti.com/support/dsp/davinci_digital_media_processors/f/717/p/192129/687907.aspx#687907
Regards
AnilKumar
Please mark this Forum post as answered via the Verify Answer button below if it helps answer your question. Thanks!
Hi Rob,
Follow the steps specified (link) in my previous post. ARCH=arm is required for menu configuration
section have more details
Regards
AnilKumar
Please mark this Forum post as answered via the Verify Answer button below if it helps answer your question. Thanks!
.