I am trying to bring up FreeBSD OS(FreeBSD-15.0-CURRENT-arm64-aarch64-20240523-1e84b85aad10-270337-memstick.img or any other FreeBSD version) on Intel IPU E2100 (https://www.intel.com/content/www/us/en/products/details/network-io/ipu.html) from UEFI environment.
Installation however fails on Arm Neoverse N1 CPU Cores at up to 3.0GHz with below errors:
Since the IPU E2100 does not support device tree, i have tried to disable it with below cmds and also made sure to enable ACPI(which was enabled by default with FreeBSD-above screenshot). As, enabling ACPI should not require device tree
From the BSD Boot Loader Prompt, i did set following options but still ran into install issue(below screenshot):
Other OS's like Ubuntu, Rocky Linux installs just fine. So, any pointers to solve this FreeBSD issue is much appreciated..
Thanks
Installation however fails on Arm Neoverse N1 CPU Cores at up to 3.0GHz with below errors:
Since the IPU E2100 does not support device tree, i have tried to disable it with below cmds and also made sure to enable ACPI(which was enabled by default with FreeBSD-above screenshot). As, enabling ACPI should not require device tree
From the BSD Boot Loader Prompt, i did set following options but still ran into install issue(below screenshot):
Code:
set boot_serial="YES"
echo boot_serial is set to ${boot_serial}
set comconsole_speed="115200"
echo comconsole_speed is set to ${comconsole_speed}
set hint.acpi.0.disabled=0
set hint.fdt.0.disabled=1
OK set acpi_load="YES"
OK echo acpi_load is set to ${acpi_load}
acpi_load is set to YES
OK set fdt_enable="NO"
OK echo fdt_enable is set to ${fdt_enable}
fdt_enable is set to NO
OK boot
Other OS's like Ubuntu, Rocky Linux installs just fine. So, any pointers to solve this FreeBSD issue is much appreciated..
Thanks