olderzeus / Iomega-HMNHDCE

Iomega® Home Media Network Hard Drive, Cloud Edition
26 stars 26 forks source link

Any possibility of porting this to Debian stretch? #3

Open kgsrirama opened 5 years ago

kgsrirama commented 5 years ago

Any possibility of porting this to Debian Stretch? Tried upgrading, it seems kernel is getting loaded from outside the root fs. Or can you explain how you built the u-boot, uImage, initrd etc., images

olderzeus commented 5 years ago

https://forum.doozan.com/read.php?2,16044 Here is. But you must use HMNHDCE's u-boot, uImage must attached HMNHDCE's dtb like: cd /media/sdb1/boot cp -a uImage uImage.orig cp -a zImage-4.4.54-oxnas-tld-1 zImage.fdt cat dts/ox820-pogoplug-pro.dtb >> zImage.fdt mkimage -A arm -O linux -C none -T kernel -a 0x60008000 -e 0x60008000 -n 'Linux-4.4.54-oxnas-tld-1' -d zImage.fdt uImage

Miclaud commented 3 years ago

Hi olderzeus.

thank you for your work, I was able to install debian on this device thanks to you. Now I'd like to update the kernel and followed your instruction installing bodhi's kernel from the doozan forum. I both tried a 3.17 and 3.18.5 kernel (stock's u-boot compatible kernels) and newer kenel with an update u-boot version compiled and working from here: https://github.com/kref/u-boot-oxnas/tree/oxnas I also tried to compile myself a kernel from kref repository: https://github.com/kref/linux-oxnas The problem is that all these kernel get stuck on "Uncompressing Linux... done, booting the kernel" phase.

My question is: did you compile the 2.6 kernel that you're using in this project or had you taken it from doozan forum? Do you have a .config file? Maybe I could start from it to compile by myself a working kernel for this device.

Thank you!