I'm having problems manually loading the module Piglet_noemif using modprobe.
During boot I drop into ash
Mount all virtual filesystems
Load the piglet as in usbroot
And get an error stating modprobe can't load the module. Using insmod works.
I haven't look into the problem in detail yet, but it may have something to do with depmod while building the image...
During boot I drop into ash
Code:
echo 'kernel_args init=/bin/ash' >/sys/kernel/urlader/environment
Mount all virtual filesystems
Code:
/lib/mdev/misc/virtual_fs mount
Load the piglet as in usbroot
Code:
piglet_bitfile=/lib/modules/microvoip_isdn_top.bit${HWRevision_BitFileCount}
dect_firstlevelfile=/lib/modules/dectfw_firstlevel.hex
dect_secondlevelfile=/lib/modules/dectfw_secondlevel.hex
piglet_load_params=""
modprobe Piglet_noemif \
piglet_bitfile=$piglet_bitfile \
piglet_enable_button=2 \
dect_firstlevelfile=$dect_firstlevelfile \
dect_secondlevelfile=$dect_secondlevelfile \
$piglet_load_params
I haven't look into the problem in detail yet, but it may have something to do with depmod while building the image...