Solved FreeBSD 13 Images on MIPS

dd_ff_bb In wiki It says it does not provide release image, but it seems that they do not provide snapshots. And can I ask why there is no mips release image?
 
Tier 2 platforms are functional, but less mature FreeBSD platforms. They are not supported by the security officer, release engineering, and port management teams.
 
I tried it and it doesn't work, it fails to spawn init. I did debug it around a bit, I noticed that failure occurs in do_execve(). The address it tries to copy into, 0x7FFFF000 is not mapped. I have no idea why, kernel-userspace split is on the boundary of 0x80000000. Maybe a guard page ? But I'd expect vm to be able to work with that.

Anyway when you try to build anything for mips you get this message:
Code:
--- buildworld_prologue ---
--------------------------------------------------------------
>>> World build started on Thu Jun  1 21:06:33 UTC 2023
--------------------------------------------------------------
WARNING: MIPS architecture is gone in FreeBSD 14.0
--------------------------------------------------------------
--- _worldtmp ---
which gives you a clue about the future.
 
Back
Top