seems the kernel that comes with 18-3 does not run on wsp2. I have no time on the moment to recompile the kernel.
You can use the attached 4.6.6 kernel and modules instead.
(unpack the zip file)
To install it load the standalone kernel and give these commands, change 192.168.1.111 by actual ip of your pc running the console.
- Code: Select all
tftp -r UIMAGE-466-KIRKWOOD-45 -l UIMAGE-466-KIRKWOOD-45 -g 192.168.1.111
tftp -r modules-466-45.tar -l modules-466-45.tar -g 192.168.1.111
dd if=/UIMAGE-466-KIRKWOOD-45 of=/dev/sda6
mkdir /sda7
mount /dev/sda7 /sda7
mkdir/sda7/lib/modules/4.6.6
cp modules-466-45.tar /sda7/lib/modules/4.6.6/
cd /sda7/lib/modules/4.6.6
tar -xvf modules-466-45.tar
cd /
You also might need to adapt bootcmd using uboot terminal to add an ide reset to let the bootloader detect the disk
- Code: Select all
setenv LaBackdoor yes
setenv bootcmd 'ide reset; disk 0x800000 0:6 ; setenv bootargs console=ttyS0,115200 root=/dev/sda7 ro ; bootm 0x800000;'
saveenv
You do not have the required permissions to view the files attached to this post.