Is Anyone Looking Into Building Their Own Filesystem Image?


Could you not easily bundle this stuff up into a quick GOWifi.gpu script, and let everyone have the same ability? I'd love to be hacking on my Wiz over ethernet ..
 
No, because the runtime environment of the original wiz rootfs is rather old.
So the binaries are not compatible.

What works if I want execute old binaries:
for i in dev proc sys; do mount -o bind "/${i}" "/mnt/original-rootfs/${i}"; done
chroot /mnt/original-rootfs
 
Back
Top