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.

RE: When I run loadmodules.sh, I get kernel tainted message

I am facing issues installing cmemk.ko and dsplinkk.ko kernel modules. The logs details are given below:
CMEMK module: built on Apr 20 2009 at 16:28:10
Reference Linux version 2.6.18
File /db/atree/library/trees/ce/ce-m06x/imports/ti/sdo/linuxutils/cmem/src/module/cmemk.c
ioremap_nocache(0x87800000, 8388608)=0xc9000000
allocated heap buffer 0xc9000000 of size 0x162000
cmem initialized 9 pools between 0x87800000 and 0x88000000
dsplinkk: Unknown parameter `ddr_start'
insmod: cannot insert `dsplinkk.ko': Unknown symbol in module (-1): No such file or directory
awk: /proc/devices: No such file or directory
BusyBox v1.00-rc3 (2005.07.23-08:39+0000) multi-call binary

Usage: mknod [OPTIONS] NAME TYPE MAJOR MINOR

Create a special file (block, character, or pipe).

Options:
-m create the special file using the specified mode (default a=rw)

TYPEs include:
b: Make a block (buffered) device.
c or u: Make a character (un-buffered) device.
p: Make a named pipe. MAJOR and MINOR are ignored for named pipes.

loadmodules.sh contains the following:
# insert cmemk, tell it to occupy physical 120MB-128MB and create enough
# contiguous buffers for the worst case requirements of the demos.
insmod cmemk.ko phys_start=0x87800000 phys_end=0x88000000 pools=1x3145728,3x829440,1x61440,1x10240

# insert dsplinkk, tell it that DSP's DDR is at physical 250MB-254MB
insmod dsplinkk.ko ddr_start=0x8fa00000 ddr_size=0x400000

# make /dev/dsplink
rm -f /dev/dsplink
mknod /dev/dsplink c `awk "\\$2==\"dsplink\" {print \\$1}" /proc/devices` 0


Basically, I dont have any entry inside /proc. I am currently using dvevm_1_20. Any leads are appreciated!