I created a Docker image from out preinstalled RISC-V 26.04 image:

wget 
https://cdimage.ubuntu.com/ubuntu-server/daily-preinstalled/current/resolute-preinstalled-server-riscv64.img.xz
xz -d resolute-preinstalled-server-riscv64.img.xz
sudo kpartx -a -v resolute-preinstalled-server-riscv64.img
sudo mount /dev/mapper/loop*p1 /mnt
tar --transform "s/^\/mnt//" -czf img_resolute.tgz /mnt
cat > Dockerfile_img_resolute << eof
FROM scratch
ADD img_resolute.tgz /
CMD ["bash"]
eof
sudo docker build -t img_resolute -f Dockerfile_img_resolute .
sudo umount /mnt
sudo kpartx -d -v resolute-preinstalled-server-riscv64.img
sudo docker run -ti img_resolute /bin/bash

Again no command line prompt in the container.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2133188

Title:
  Illegal instruction in memset under qemu-user for riscv64

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/2133188/+subscriptions


-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to