Can Openwrt or istoreos install on Mixtile edge 2?

only dedian can install on edge 2
openwrt or istoreos are also verygood
how can i do ?

Please refer to this instruction for compiling and installing OpenWrt:

You can also download the OpenWrt image here:
https://downloads.mixtile.com/edge2/openwrt-image/openwrt-rockchip-armv8-mixtile_edge2-squashfs-sysupgrade.img.gz

Thanks,
I find
disk space**:至少 25 GB 的可用空间
memory: 4 GB RAM(推荐 8 GB)
my mixtile edge 2 only have 2gb ram and 16gb emmc。how to solve this?

The requirements below refer to the Host Computer, which is used to compile your customized OpenWrt image, not to Edge 2.

  • Operating System: Ubuntu 20.04 LTS or later
  • Disk Space: At least 25 GB of free space
  • Memory: Minimum of 4 GB RAM (8 GB recommended)

If you don’t want to compile the image yourself, you can download the ready OpenWrt image and then flash it to the Edge 2.
https://downloads.mixtile.com/edge2/openwrt-image/openwrt-rockchip-armv8-mixtile_edge2-squashfs-sysupgrade.img.gz

Flashing the Firmware
Step 1: Prepare the Image

If the image is compressed (i.e., with a .gz extension), decompress it first:

gzip -d openwrt-rockchip-armv8-mixtile_edge2-squashfs-sysupgrade.img.gz

Step 2: Write Image to SD Card or eMMC

Use the dd command to flash the image to your SD card or eMMC device. Be very careful with the device path (/dev/sdX) to avoid overwriting your main system disk:

sudo dd if=openwrt-rockchip-armv8-mixtile_edge2-squashfs-sysupgrade.img of=/dev/sdX bs=4M status=progress && sync

Replace /dev/sdX with your actual device (e.g., /dev/sdb).