I thought it would be a good idea to share my notes on building the kernel from a debian host.
The menuconfig option does not run unless you install the ncurses library. I tried compiling this from source and the make failed with a directory not found error. I then found that if you download the ncurses library using apt-get then all is OK
sudo apt-get install libncurses5-dev libncursesw5-dev
A good reference page for this can be found here:
http://www.cyberciti.biz/faq/linux-error-cursesh-no-such-file-directory/
I have a question about the kernel config and the McASP. Is access to the McASP mutually exclusive to GPP or DSP? or can they be used by both GPP and DSP provided one does not open the device on both GPP and DSP at the same time?
Now, I am able to run the make menuconfig for the kernel, and I would like to know if there are any templates or include files for accessing the McASP from the GPP side.
Thanks