Experimenting the vm-tz example on the Freescale i.mx6 SDB

Adam Lackorzynski adam at os.inf.tu-dresden.de
Sat Apr 11 08:56:45 CEST 2015


Hi,

On Fri Apr 10, 2015 at 17:26:45 +0200, Mahdi Aichouch wrote:
> I reduced the RAM_SIZE_MB to 256MB and it worked great! Thank you very much!
> 
> However, the execution went well until the call
> to L4Re::chksys(me->vcpu_control_ext((l4_addr_t)vcpu));
> which generates the following error:
> 
> terminate called after throwing an instance of 'N2L413Runtime_errorE'
> 
> Do you have any idea of what might be wrong.
> I attached the whole debug messages to this mail.

Please revert the change in sigma0 again, it's not required anymore.

We just know that the call returns with an error. To get the return
code, change as follows:
  int r = l4_error(me->vcpu_control_ext((l4_addr_t)vcpu));
  if (r)
    {
      printf("error: %d\n", r);
      exit(1);
    }



Adam
-- 
Adam                 adam at os.inf.tu-dresden.de
  Lackorzynski         http://os.inf.tu-dresden.de/~adam/




More information about the l4-hackers mailing list