Hi Baptiste,
You are correct, the SIMULATION flags currently don't have effect in the CAmkES VM project (will look into fixing).
In order to simulate the CAmkES VM I would recommend using KVM. This is due to the VM project relying on hardware virtualization features (e.g VT-x). The following command should boot the optiplex example in QEMU:
sudo qemu-system-x86_64 -machine q35,accel=kvm,kernel-irqchip=split -cpu Haswell,+vme,+pdpe1gb,enforce,+vmx -nographic -serial mon:stdio -m size=2G -enable-kvm -device intel-iommu,intremap=off -kernel images/kernel-x86_64-pc99 -initrd images/capdl-loader-image-x86_64-pc99
In addition, you may need to make sure your KVM driver has nested virtualization enabled (https://wiki.archlinux.org/index.php/KVM#Nested_virtualization).
Regards,
Adam
Hi Baptiste,
Aside from running a Linux guest, we do not currently have a native shell. The x86 VM should work though.
Cheers
Anna.
From: Devel <devel-bounces@sel4.systems> on behalf of Baptiste Lepers <baptiste.lepers@gmail.com>
Sent: Thursday, 27 September 2018 2:28 PM
To: devel@sel4.systems
Subject: [seL4] Does seL4 provide an initrd with a shell?I have been following the instructions "Fetching, Configuring and Building seL4test" on this page https://docs.sel4.systems/GettingStarted.html. Everything seems to work, but the initrd provided only runs a bunch of tests and then exits. Is there another project that provides a shell or a way for me to launch my own programs?
I have tried to follow the instructions on these pages https://docs.sel4.systems/Hardware/Qemu/ and https://docs.sel4.systems/CAmkESVM but the repo init command fails (404).
Thanks,Baptiste.