I am trying to use C6Run on Overo-fire, is it possible?
I reuse Beagleboard's configure files (Rules.mak and platform.mak). And I set the kernel source in platform like following:
LINUXKERNEL_INSTALL_DIR = /home/longyi/overo-oe/tmp/work/overo-angstrom-linux-gnueabi/linux-omap3-2.6.34-r90
actually make dsp_libs gpp_libs are done,
the problem now is on the step of "make modules".
I have tried to build modules in the C6RUN_DIR, but it doesn't work. I read the Makefile, it actually call the "make modules_clean" and "make modules" separately in ./build, and "make modules_clean" fail because it trying to clean some files that "make module" haven't ever created yet. So that is the reason why I directly go to ./build and do "make modules".
longyi@longyi-laptop:~/C6Run_0_94_04_04/build$ sudo make modules
make[1]: Entering directory `/home/longyi/C6Run_0_94_04_04/build'
Building DSPLink kernel
module.../home/longyi/overo-oe/tmp/sysroots/i686-linux/usr/armv7a/bin/arm-angstrom-linux-gnueabi-ar:
creating
/home/longyi/C6Run_0_94_04_04/dsplink_linux_1_65_00_02/dsplink/gpp/BUILD/API/BIN/DEBUG/dsplink.a
gmake[3]: *** No rule to make target `modules'. Stop.
gmake[2]: *** [debug] Error 2
make[1]: *** [kernel_mod] Error 2
make[1]: Leaving directory `/home/longyi/C6Run_0_94_04_04/build'
make: *** [modules] Error 2
**********
result of run modules_clean:
Cleaning up LPM kernel module...cat: /home/longyi/C6Run_0_94_04_04/dsplink_linux_1_65_00_02/dsplink/gpp/export/BIN/Linux/OMAP3530/RELEASE/PMGR_defines.txt: No such file or directory
cat: /home/longyi/C6Run_0_94_04_04/dsplink_linux_1_65_00_02/dsplink/gpp/export/BIN/Linux/OMAP3530/RELEASE/PMGR_includes.txt: No such file or directory
make[4]: *** No rule to make target `clean'. Stop.
***********
Any suggestion is welcomed, thanks