Cell Load

68 views
Skip to first unread message

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Oct 5, 2017, 9:14:06 AM10/5/17
to Ralf Ramsauer, jailho...@googlegroups.com
Hello Ralf
Thank you for your reply. I just created a cell like this:
$ jailhouse cell create ~/jailhouse/configs/bannapi-uart-demo.cell
That worked but now I want to load the uart-demo.bin file in a cell.

$ jailhouse cell load ~/jailhouse/inmates/demos/arm/uart-demo.bin doesn t seem to be working
And neither something like
$ jailhouse cell load Demo ~/jailhouse/inmates/demos/arm/uart-demo.bin

What's the correct command?
Regards,
Jorge

-----Original Message-----
From: Ralf Ramsauer [mailto:ralf.r...@oth-regensburg.de]
Sent: Donnerstag, 5. Oktober 2017 11:05
To: Martinez Garcia Jorge Luis (DGS-EC/ESB2) <JorgeLuis.Ma...@de.bosch.com>; jailho...@googlegroups.com
Subject: Re: Unhandled Trap

Hi Jorge,

[please plain text mails only]

you also need this [1] patch when using a more recent kernel. It will
reexport ioremap_page_range. Easiest thing is to just use Jan's tree for
compiling your kernel.

Ralf

http://git.kiszka.org/?p=linux.git;a=commitdiff;h=734b03f5c7c3d9d5486f5ae26c2efb2853b3584c

On 10/05/2017 11:01 AM, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
> Hi Ralf,
>
> Thank you very much for your reply. While compiling Jailhose, I am
> facing a new error, even though I didn’t modify the memory region yet as
> you suggested. Do you know, what might be the reason?
>
>  
>
>  
>
>  
>
>  
>
> Mit freundlichen Grüßen / Best regards
>
>  
>
> Jorge Luis Martinez Garcia
>
> DGS-EC/ESB2 
>
>  
>
> Tel. +49 711 811-42216
>
>  
>
> Hello Ralf,
>
> Thank you for your reply. How should I load a cell
>
>  
>
> -----Original Message-----
>
> From: Ralf Ramsauer [mailto:ralf.r...@oth-regensburg.de]
>
> Sent: Mittwoch, 4. Oktober 2017 13:11
>
> To: Martinez Garcia Jorge Luis (DGS-EC/ESB2)
> <JorgeLuis.Ma...@de.bosch.com>; jailho...@googlegroups.com
>
> Subject: Re: Unhandled Trap
>
>  
>
> Hi Jorge,
>
>  
>
> your root cell tries to access the GPIO that is connected to the LED of
>
> the banana pi.
>
>  
>
> Either make sure that the root cell won't access the device any longer
>
> or try to remove GPIO Port H from the inmate config. This can be done by
>
> commenting out the corresponding mem_region and changing
>
>  
>
> struct jailhouse_memory mem_regions[4];
>
> to
>
> struct jailhouse_memory mem_regions[3];
>
>  
>
> The gic-demo binary won't access the LED unless it's explicitly specified.
>
>  
>
>   Ralf
>
>  
>
> On 10/04/2017 12:59 PM, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
>
>> Hello,
>
>> I am trying to run Jailhouse on the BananaPi (Kernel version 4.3.3). I
>
>> installed Jailhouse on the BP and can see it by typing $lsmod. However,
>
>> I get the following error when creating the cell by typing
>
>>  
>
>> jailhouse cell create ~/jailhouse/configs/bananapi-gic-demo.cell
>
>>  
>
>>  
>
>>  
>
>>  
>
>> What can be the root of the problem and how can I fix it?
>
>>  
>
>> Regards,
>
>> Jorge
>
>>  
>
>>  
>
>>  
>
>>
>
>> --
>
>> You received this message because you are subscribed to the Google
>
>> Groups "Jailhouse" group.
>
>> To unsubscribe from this group and stop receiving emails from it, send
>
>> an email to jailhouse-de...@googlegroups.com
>
>> <mailto:jailhouse-de...@googlegroups.com>.
>
>> For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google
> Groups "Jailhouse" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to jailhouse-de...@googlegroups.com
> <mailto:jailhouse-de...@googlegroups.com>.
> For more options, visit https://groups.google.com/d/optout.

Ralf Ramsauer

unread,
Oct 5, 2017, 9:42:16 AM10/5/17
to Martinez Garcia Jorge Luis (DGS-EC/ESB2), jailho...@googlegroups.com
Hi,

look at the usage of the userspace tool:
cell load { ID | [--name] NAME } { IMAGE | { -s | --string } "STRING" }
[-a | --address ADDRESS] ...

You have to specify the cell, either by its ID or by its name. Use
jailhouse cell list to get names/IDs of cells.

The you probably want sth like
jh cell load 1 inmate.bin

Ralf

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Oct 5, 2017, 10:32:39 AM10/5/17
to Ralf Ramsauer, jailho...@googlegroups.com
Hello Ralf,
Thank you. That worked. When I type jailhouse cell list, I can see that "Banana-Pi" and "bananapi-uart-demo" are both running. However, I do not see any output in the from the uart demo in the serial terminal. Is there a way to see/debug if my inmate is working properly?

Jan Kiszka

unread,
Oct 7, 2017, 2:33:19 AM10/7/17
to Martinez Garcia Jorge Luis (DGS-EC/ESB2), Ralf Ramsauer, jailho...@googlegroups.com
On 2017-10-05 16:32, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
> Hello Ralf,
> Thank you. That worked. When I type jailhouse cell list, I can see that "Banana-Pi" and "bananapi-uart-demo" are both running. However, I do not see any output in the from the uart demo in the serial terminal. Is there a way to see/debug if my inmate is working properly?

Are you looking at the right uart? The demo inmates on the BananaPi are
configured to default to uart7 while the hypervisor uses uart0.

Jan

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Oct 9, 2017, 12:29:59 PM10/9/17
to Jan Kiszka, Ralf Ramsauer, jailho...@googlegroups.com
Hello Jan,
Thank you for your reply. I was indeed monitoring UART7. I am able to run both demos: bananapi-gic-demo and bananapi-uart-demo on the BP but I cannot see a thing in UART7.
I am basically following https://github.com/siemens/jailhouse/blob/master/Documentation/setup-on-banana-pi-arm-board.md. and have the same set-up described there.
Please see below the terminal output (the same applies for the bananapi-uart-demo ):

root@bananapi ~ # modprobe jailhouse
root@bananapi ~ # jailhouse enable ~/jailhouse/configs/bananapi.cell

Initializing Jailhouse hypervisor v0.7 (112-g94028b9-dirty) on CPU 1
Code location: 0xf0000040
Page pool usage after early setup: mem 54/16362, remap 32/131072
Initializing processors:
CPU 1... OK
CPU 0... OK
Adding virtual PCI device 00:00.0 to cell "Banana-Pi"
Page pool usage after late setup: mem 59/16362, remap 37/131072
Activating hypervisor
[ 626.808688] The Jailhouse is opening.

root@bananapi ~ # jailhouse cell create ~/jailhouse/configs/bananapi-uart-demo.cell
[ 1157.023879] CPU1: shutdown
Created cell "bananapi-gic-demo"
Page pool usage after cell creation: mem 68/16362, remap 37/131072
[ 1157.036559] Created Jailhouse cell "bananapi-gic-demo"

root@bananapi ~ # jailhouse cell load 1 ~/jailhouse/inmates/demos/arm/uart-demo.bin
Cell "bananapi-gic-demo" can be loaded

root@bananapi ~# jailhouse cell start 1
Started cell "bananapi-gic-demo"

root@bananapi ~ # jailhouse cell list
ID Name State Assigned CPUs Failed CPUs
0 Banana-Pi running 0
1 bananapi-gic-demo running 1

I am guessing that I am doing something wrong. When I cross-compiled Jailhouse, everything seemed to be okay. However there is one message that worries me and it is the following:

make[1]: warning: Clock skew detected. Your build may be incomplete.

Can that be root of my problem?

There is another thing. In the Readme the following is stated : "Note that, since v2015.10, you need to disable CONFIG_VIDEO in the U-Boot config, or U-Boot will configure the framebuffer at the end of the physical RAM where Jailhouse is located."
I haven't done that. Can that be the problem?
Thank you for your support.

Jan Kiszka

unread,
Oct 9, 2017, 12:42:50 PM10/9/17
to Martinez Garcia Jorge Luis (DGS-EC/ESB2), Ralf Ramsauer, jailho...@googlegroups.com
Hi Jorge,

On 2017-10-09 18:29, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
> Hello Jan,
> Thank you for your reply. I was indeed monitoring UART7. I am able to run both demos: bananapi-gic-demo and bananapi-uart-demo on the BP but I cannot see a thing in UART7.
> I am basically following https://github.com/siemens/jailhouse/blob/master/Documentation/setup-on-banana-pi-arm-board.md. and have the same set-up described there.
> Please see below the terminal output (the same applies for the bananapi-uart-demo ):

I didn't try the uart-demo in a while but I did try gic-demo with
all-latest git repos this morning on the BananaPi, and it worked for me.

>
> root@bananapi ~ # modprobe jailhouse
> root@bananapi ~ # jailhouse enable ~/jailhouse/configs/bananapi.cell
>
> Initializing Jailhouse hypervisor v0.7 (112-g94028b9-dirty) on CPU 1
> Code location: 0xf0000040
> Page pool usage after early setup: mem 54/16362, remap 32/131072
> Initializing processors:
> CPU 1... OK
> CPU 0... OK
> Adding virtual PCI device 00:00.0 to cell "Banana-Pi"
> Page pool usage after late setup: mem 59/16362, remap 37/131072
> Activating hypervisor
> [ 626.808688] The Jailhouse is opening.
>
> root@bananapi ~ # jailhouse cell create ~/jailhouse/configs/bananapi-uart-demo.cell
> [ 1157.023879] CPU1: shutdown
> Created cell "bananapi-gic-demo"

This looks strange. My configs/bananapi-uart-demo.c says it's
"bananapi-uart-demo".

> Page pool usage after cell creation: mem 68/16362, remap 37/131072
> [ 1157.036559] Created Jailhouse cell "bananapi-gic-demo"
>
> root@bananapi ~ # jailhouse cell load 1 ~/jailhouse/inmates/demos/arm/uart-demo.bin
> Cell "bananapi-gic-demo" can be loaded
>
> root@bananapi ~# jailhouse cell start 1
> Started cell "bananapi-gic-demo"
>
> root@bananapi ~ # jailhouse cell list
> ID Name State Assigned CPUs Failed CPUs
> 0 Banana-Pi running 0
> 1 bananapi-gic-demo running 1
>
> I am guessing that I am doing something wrong. When I cross-compiled Jailhouse, everything seemed to be okay. However there is one message that worries me and it is the following:
>
> make[1]: warning: Clock skew detected. Your build may be incomplete.
>
> Can that be root of my problem?

make clean; make ... should resolve that.

More important: hypervisor/include/jailhouse/config.h. It must contain
at least

#define CONFIG_MACH_BANANAPI 1

Are you trying next or master as branch?

>
> There is another thing. In the Readme the following is stated : "Note that, since v2015.10, you need to disable CONFIG_VIDEO in the U-Boot config, or U-Boot will configure the framebuffer at the end of the physical RAM where Jailhouse is located."
> I haven't done that. Can that be the problem?

You better disable this. I don't recall the exact failure mode, maybe it
was very fatal and directly visible but maybe also rather subtle.

Jan

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Oct 10, 2017, 5:55:09 AM10/10/17
to Jan Kiszka, Ralf Ramsauer, jailho...@googlegroups.com
Hello Jan,
Thank you again for your support.
I am trying master as branch. My hypervisor/include/jailhouse/config.h file contains:
#define CONFIG_MACH_BANANAPI 1
#define CONFIG_ARM_GIC_V2 1

Since your set up worked, I want to try that one out instead.
Could you please tell me which Kernel version you used yesterday?
In order to patch the above-mentioned kernel, are the following patches enough : ?

http://git.kiszka.org/?p=linux.git;a=patch;h=e47a712fda9b265429e69b2f5689f885437088cb
http://git.kiszka.org/?p=linux.git;a=patch;h=e47a712fda9b265429e69b2f5689f885437088cb
http://git.kiszka.org/?p=linux.git;a=commitdiff;h=734b03f5c7c3d9d5486f5ae26c2efb2853b3584c

If not, please tell me what else I need.
Regards,
Jorge



-----Original Message-----
From: Jan Kiszka [mailto:jan.k...@web.de]
Sent: Montag, 9. Oktober 2017 18:43
To: Martinez Garcia Jorge Luis (DGS-EC/ESB2) <JorgeLuis.Ma...@de.bosch.com>; Ralf Ramsauer <ralf.r...@oth-regensburg.de>; jailho...@googlegroups.com
Subject: Re: Cell Load

Jan Kiszka

unread,
Oct 10, 2017, 6:44:53 AM10/10/17
to Martinez Garcia Jorge Luis (DGS-EC/ESB2), Ralf Ramsauer, jailho...@googlegroups.com
On 2017-10-10 11:55, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
> Hello Jan,
> Thank you again for your support.
> I am trying master as branch. My hypervisor/include/jailhouse/config.h file contains:
> #define CONFIG_MACH_BANANAPI 1
> #define CONFIG_ARM_GIC_V2 1
>
> Since your set up worked, I want to try that one out instead.
> Could you please tell me which Kernel version you used yesterday?
> In order to patch the above-mentioned kernel, are the following patches enough : ?
>
> http://git.kiszka.org/?p=linux.git;a=patch;h=e47a712fda9b265429e69b2f5689f885437088cb
> http://git.kiszka.org/?p=linux.git;a=patch;h=e47a712fda9b265429e69b2f5689f885437088cb
> http://git.kiszka.org/?p=linux.git;a=commitdiff;h=734b03f5c7c3d9d5486f5ae26c2efb2853b3584c
>

Just use the latest queues/jailhouse as-is. That's what I did as well.

Jan

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Oct 11, 2017, 3:49:00 AM10/11/17
to Jan Kiszka, Ralf Ramsauer, jailho...@googlegroups.com
Hello Jan,
Thank you for your reply. I took the kernel version 4.13.5 and patched it by using the following three patches:

http://git.kiszka.org/?p=linux.git;a=patch;h=cfe39555245744bed258594e794420c5d4ccdb72
I didn't modify Jailhouse except for the hypervisor/include/jailhouse/config.h file which now contains:

#define CONFIG_MACH_BANANAPI 1
#define CONFIG_ARM_GIC_V2 1

Everything compiled and went smoothly without any sort of warnings. In the cell list I see the two cells (Banana-Pi and bananapi-gic-demo) running. However I still cannot see the output of gic-demo.bin.
Did you also take jailhouse/ci/kernel-config-banana-pi as config?

Jan Kiszka

unread,
Oct 12, 2017, 4:11:23 AM10/12/17
to Martinez Garcia Jorge Luis (DGS-EC/ESB2), Ralf Ramsauer, jailho...@googlegroups.com
On 2017-10-11 09:48, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
> Hello Jan,
> Thank you for your reply. I took the kernel version 4.13.5 and patched it by using the following three patches:
>
> http://git.kiszka.org/?p=linux.git;a=patch;h=cfe39555245744bed258594e794420c5d4ccdb72
>
> http://git.kiszka.org/?p=linux.git;a=patch;h=e47a712fda9b265429e69b2f5689f885437088cb
>
> http://git.kiszka.org/?p=linux.git;a=commitdiff;h=734b03f5c7c3d9d5486f5ae26c2efb2853b3584c
>
> I didn't modify Jailhouse except for the hypervisor/include/jailhouse/config.h file which now contains:
>
> #define CONFIG_MACH_BANANAPI 1
> #define CONFIG_ARM_GIC_V2 1
>
> Everything compiled and went smoothly without any sort of warnings. In the cell list I see the two cells (Banana-Pi and bananapi-gic-demo) running. However I still cannot see the output of gic-demo.bin.
> Did you also take jailhouse/ci/kernel-config-banana-pi as config?

Does that UART interface work under Linux (prior to enabling Jailhouse)?

Jan

--
Siemens AG, Corporate Technology, CT RDA ITP SES-DE
Corporate Competence Center Embedded Linux

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Oct 12, 2017, 11:05:02 AM10/12/17
to Jan Kiszka, Ralf Ramsauer, jailho...@googlegroups.com
Hello Jan,
The output of $ dmesg | egrep "serial|uart" is the following

[ 1.425880] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 45, base_baud = 1500000) is a U6_16550A
[ 2.826821] 1c28c00.serial: ttyS1 at MMIO 0x1c28c00 (irq = 46, base_baud = 1500000) is a U6_16550A
[ 2.860825] 1c29c00.serial: ttyS2 at MMIO 0x1c29c00 (irq = 47, base_baud = 1500000) is a U6_16550A <-- UART 7

Before enabling Jailhouse, when I type $echo "hello" > /dev/ttyS0 I get a respond. However the same is not true fro ttyS1 and ttyS2. Did you have the same issue?

I also checked my script.bin file by converting it to .fex :

[uart_para7]
uart_used = 1
uart_port = 7
uart_type = 2
uart_tx = port:PI20<3><1><default><default>
uart_rx = port:PI21<3><1><default><default>

When I see the bananapi-gic-demo.c file

/* UART 4-7 */ {
.phys_start = 0x01c29000,
.virt_start = 0x01c29000,
.size = 0x1000,
.flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |

I noticed that the starting address is 0x01c29000 and the size 0x1000, and since the address of UART7 (ttyS2) is 0x1c29c00, there shouldn t be a problem.


Regards,
Jorge

-----Original Message-----
From: Jan Kiszka [mailto:jan.k...@siemens.com]
Sent: Donnerstag, 12. Oktober 2017 10:11
To: Martinez Garcia Jorge Luis (DGS-EC/ESB2) <JorgeLuis.Ma...@de.bosch.com>; Ralf Ramsauer <ralf.r...@oth-regensburg.de>; jailho...@googlegroups.com
Subject: Re: Cell Load

Jan Kiszka

unread,
Oct 12, 2017, 11:15:39 AM10/12/17
to Martinez Garcia Jorge Luis (DGS-EC/ESB2), Ralf Ramsauer, jailho...@googlegroups.com
On 2017-10-12 17:04, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
> Hello Jan,
> The output of $ dmesg | egrep "serial|uart" is the following
>
> [ 1.425880] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 45, base_baud = 1500000) is a U6_16550A
> [ 2.826821] 1c28c00.serial: ttyS1 at MMIO 0x1c28c00 (irq = 46, base_baud = 1500000) is a U6_16550A
> [ 2.860825] 1c29c00.serial: ttyS2 at MMIO 0x1c29c00 (irq = 47, base_baud = 1500000) is a U6_16550A <-- UART 7
>
> Before enabling Jailhouse, when I type $echo "hello" > /dev/ttyS0 I get a respond. However the same is not true fro ttyS1 and ttyS2. Did you have the same issue?
>

Nope, but you might be missing the required baudrate setting (stty -F
/dev/ttyS1/2 115200). But as long that this is not working, Jailhouse is
out of the picture. Maybe you have a different board variant than I and
the wiring is different.

> I also checked my script.bin file by converting it to .fex :
>
> [uart_para7]
> uart_used = 1
> uart_port = 7
> uart_type = 2
> uart_tx = port:PI20<3><1><default><default>
> uart_rx = port:PI21<3><1><default><default>
>
> When I see the bananapi-gic-demo.c file
>
> /* UART 4-7 */ {
> .phys_start = 0x01c29000,
> .virt_start = 0x01c29000,
> .size = 0x1000,
> .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
>
> I noticed that the starting address is 0x01c29000 and the size 0x1000, and since the address of UART7 (ttyS2) is 0x1c29c00, there shouldn t be a problem.

Yes, the config is appropriate here, at least as long no one else wants
to use UART4-6 while that the demo is running.

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Oct 12, 2017, 11:43:25 AM10/12/17
to Jan Kiszka, Ralf Ramsauer, jailho...@googlegroups.com
Hello Jan,
Thank you for your reply. I have a Banana Pi M1 sold by lemaker.org. Do you have the same board?
I also read that other people have similar issues:

http://forum.banana-pi.org/t/bpi-m1-uart3-ttys2-not-working/681

http://forum.banana-pi.org/t/how-enable-uart-7-on-banana-pi-m/643/6

By the way I tried everything written here http://mirror.lemaker.org/Banana%20Pro%20&%20Pi%20User%20Manual-V1.0.pdf in order to see if something was not configured but it didn t work.

Regards,
Jorge



-----Original Message-----
From: Jan Kiszka [mailto:jan.k...@siemens.com]
Sent: Donnerstag, 12. Oktober 2017 17:16
To: Martinez Garcia Jorge Luis (DGS-EC/ESB2) <JorgeLuis.Ma...@de.bosch.com>; Ralf Ramsauer <ralf.r...@oth-regensburg.de>; jailho...@googlegroups.com
Subject: Re: Cell Load

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Oct 17, 2017, 4:37:12 PM10/17/17
to Jan Kiszka, Ralf Ramsauer, jailho...@googlegroups.com
Hello Jan,
Can you tell me which U-Boot version you have running on your BP?
Regards, Jorge


-----Original Message-----
From: Martinez Garcia Jorge Luis (DGS-EC/ESB2)
Sent: Donnerstag, 12. Oktober 2017 17:43
To: 'Jan Kiszka' <jan.k...@siemens.com>; Ralf Ramsauer <ralf.r...@oth-regensburg.de>; jailho...@googlegroups.com
Subject: RE: Cell Load

Hello Jan,
Thank you for your reply. I have a Banana Pi M1 sold by lemaker.org. Do you have the same board?
I also read that other people have similar issues:

http://forum.banana-pi.org/t/bpi-m1-uart3-ttys2-not-working/681

http://forum.banana-pi.org/t/how-enable-uart-7-on-banana-pi-m/643/6

By the way I tried everything written here http://mirror.lemaker.org/Banana%20Pro%20&%20Pi%20User%20Manual-V1.0.pdf in order to see if something was not configured but it didn t work.

Regards,
Jorge



-----Original Message-----
From: Jan Kiszka [mailto:jan.k...@siemens.com]
Sent: Donnerstag, 12. Oktober 2017 17:16
To: Martinez Garcia Jorge Luis (DGS-EC/ESB2) <JorgeLuis.Ma...@de.bosch.com>; Ralf Ramsauer <ralf.r...@oth-regensburg.de>; jailho...@googlegroups.com
Subject: Re: Cell Load

Jan Kiszka

unread,
Oct 18, 2017, 2:48:06 AM10/18/17
to Martinez Garcia Jorge Luis (DGS-EC/ESB2), Ralf Ramsauer, jailho...@googlegroups.com
On 2017-10-17 22:37, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
> Hello Jan,
> Can you tell me which U-Boot version you have running on your BP?

Some days ago: f855a7bc12dc (master) with BP defconfig.

Jan

Martinez Garcia Jorge Luis (DGS-EC/ESB2)

unread,
Nov 15, 2017, 4:49:14 AM11/15/17
to Jan Kiszka, Ralf Ramsauer, jailho...@googlegroups.com
Hello Jan, hello Ralf,
I just wanted to let you know that I found out that UART7 on my BP was damaged. That was the last thing I was expecting. I decided to get a new one and now Jailhouse is running on top of it and I can see UART demo printing the following message:
Hello 2699(some number) from cell!
Thank you very much for your support.
Regards,
Jorge

Jan Kiszka

unread,
Nov 15, 2017, 9:21:30 AM11/15/17
to Martinez Garcia Jorge Luis (DGS-EC/ESB2), Ralf Ramsauer, jailho...@googlegroups.com
On 2017-11-15 10:49, Martinez Garcia Jorge Luis (DGS-EC/ESB2) wrote:
> Hello Jan, hello Ralf,
> I just wanted to let you know that I found out that UART7 on my BP was damaged. That was the last thing I was expecting. I decided to get a new one and now Jailhouse is running on top of it and I can see UART demo printing the following message:
> Hello 2699(some number) from cell!

Great to hear, thanks for the update!

> Thank you very much for your support.

You are welcome!
Jan
Reply all
Reply to author
Forward
0 new messages