Solved Escaping from 13.0-RELEASE hell and back to 12.2-RELEASE

In your src.conf

WITHOUT_LLVM_TARGET_ALL=yes

already includes:

WITHOUT_LLVM_TARGET_AARCH64=yes
WITHOUT_LLVM_TARGET_ARM=yes
WITHOUT_LLVM_TARGET_MIPS=yes
WITHOUT_LLVM_TARGET_POWERPC=yes

Also this is removed from 13.0:

WITHOUT_LLVM_TARGET_SPARC=yes
 
My solution was (because i had to execute "sync" in every few hours and i didn't want to patch) downgrade with
(from 13-RELEASE)
freebsd-update --currently-running 11.4-RELEASE -r 12.2-RELEASE upgrade
The result was horrible.
After some try, the final solution was to enter "/rescue/sh" at the boot promt, and extract the previously uploaded base.txz.
/rescue/fsck -fy
/rescue/mount -o rw /
/rescue/tar xf /root/base.txz -C /
/rescue/reboot
after this,the system boots correctly, only some configuration had gone (passwords, rc.conf, etc...)
 
… (because i had to execute "sync" in every few hours and i didn't want to patch) …

Sorry, I don't understand.

I'm curious, what was your problem with 13.0-RELEASE? Do you mean that you didn't want to update (patch) to 13.0-RELEASE-p4?
 
Back
Top