I like to create a root file system image with modules properly installed (demoded). Seaching through arago build tree, I found:
./arago-tmp/cross/armv5te/bin/arm-none-linux-gnueabi-depmod-2.6
and, also I found multiple copies of symbol map, i.e.:
./arago-tmp/staging/da850-omapl138-evm-none-linux-gnueabi/kernel/System.map-2.6.32-rc6
Using those two, I can do cross depmod over root file system tree and the resulting image boots without spewing out modprobe errors from the first boot.
My questions are:
1) is there recipe or task to have arm-none-linux-gnueabi-depmod-2.6 become installable package to be part of SDK? It seems to be built with module-init-tools-cross recipie but that doesn't seems to move it out of work area nor create package I can install.
2) is there option to have System.map-2.6.32-rc6 moved to somewhere, arago-deploy after the build?
Hiroto