Closed chairwa closed 1 year ago
On 2/20/23 18:12, chairwa wrote:
Does EVE image run on Rockchip RK3568 / RK3588 etc. development board?
Doesn't look like its A55 processor has the Hardware virtualization support (which is needed for reasonable performance when running the EVE hypervisor.)
BR, Erik
— Reply to this email directly, view it on GitHub https://github.com/lf-edge/eve/issues/3053, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGNLQWHLU4FLBKAODDPALALWYQQBPANCNFSM6AAAAAAVCO742E. You are receiving this because you are subscribed to this thread.Message ID: @.***>
At present, first bring up it without caring the performance.
make ZARCH=arm64 HV=kvm live-raw Burn the built live.raw to an SD card and insert it into the rk3568 board:
I wonder how to make the RK board boot from the SD card?
@chairwa, we support to load the device tree for EVK R3399 board only, which is not the same as yours:
https://github.com/lf-edge/eve/blob/master/pkg/grub/rootfs.cfg#L256
I didn't work with this SoC before, but what I can tell is that you will need to build the u-boot for your board and patch it to provide the SMBIOS information, like is done here:
If it helps, you can generate an ARM image with the following command:
make ZARCH=arm64 HV=kvm PLATFORM=imx8mp_pollux live-raw
This will generate an image with almost 8MB offset between the the GPT and EFI partition (first partition). This will give to you room to write your bootloader in this space...
@rene How to make image for EVB_RK3399 if I would like to use evb_rk3399 as a try? It seem the following is not OK.
make ZARCH=arm64 HV=kvm PLATFORM=evb_rk3399 live-raw
@rene How to make image for EVB_RK3399 if I would like to use evb_rk3399 as a try? It seem the following is not OK.
make ZARCH=arm64 HV=kvm PLATFORM=evb_rk3399 live-raw
@chairwa , u-boot image generation for evb_rk3399 is currently not supported on EVE, so there is no evb_rk3399 platform option. What I suggested is that you can build an image for another platform and re-write your own u-boot for your board. However, EVE's kernel do support RK3399 (we have some patches and the respective device tree is there).
Does EVE image run on Rockchip RK3568 / RK3588 etc. development board?