Le 26/03/2013 19:50, Bastian Bittorf a écrit : > * Etienne Champetier <[email protected]> [26.03.2013 19:42]: >> I can enter in failsafe mode, so does anyone have an idea how to simulate >> the normal boot process >> step by step from the failsafe, so i can determine precisely what break. > first try to load the modules, and look where it 'hangs': > > for FILE in /etc/modules.d/* ; do echo $FILE; while read LINE; do echo > $LINE; echo $LINE; done <$FILE; done > > bye, bastian > > PS: this remembers me to send a patch for base-files for a better > debugable kmodules-loader... I've tested to load all modules (on wr1043nd, from failsafe) via for MOD in `cat /etc/modules.d/*`; do echo $MOD; insmod $MOD; done they all load fine (except some that are already loaded) Thanks for the idea bastian
i'm starting to play with malta target (big endian) which is close to ar71xx/wr1043ndand run in qemu (sudo qemu-system-mips -kernel bin/malta-eglibc/openwrt-malta-be-vmlinux.elf -nographic -m 256 -net nic,macaddr=00:16:3e:00:00:01 -net tap) here is a paste from logread http://pastebin.com/gBU3FJhC eglibc 2.17 was added by florian 7 weeks ago (just after the release :) ) with no patch It at least need something like this one https://dev.openwrt.org/browser/trunk/toolchain/eglibc/patches/2.16/200-add-dl-search-paths.patch or some LD_LIBRARY_PATH definition (ld isn't finding some libs in /usr/lib/*) I keep digging _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
